From 603b80e8ff9aea316b9fbb57cb685e16c88ec3f2 Mon Sep 17 00:00:00 2001 From: Mike Battista <13860912+mikebattista@users.noreply.github.com> Date: Tue, 11 Oct 2022 08:20:24 -0700 Subject: [PATCH 1/5] Fixed #1008. --- sources/MetadataUtils/ConstantWriter.cs | 8 ++++++- sources/MetadataUtils/ConstantsScraper.cs | 9 +++++--- .../NativeEncodingAttribute.cs | 22 +++++++++++++++++++ 3 files changed, 35 insertions(+), 4 deletions(-) create mode 100644 sources/Win32MetadataInterop/NativeEncodingAttribute.cs diff --git a/sources/MetadataUtils/ConstantWriter.cs b/sources/MetadataUtils/ConstantWriter.cs index 8c2d6fe45..d6b5624c4 100644 --- a/sources/MetadataUtils/ConstantWriter.cs +++ b/sources/MetadataUtils/ConstantWriter.cs @@ -73,7 +73,7 @@ public void AddGuid(string name, string args) this.Writer.WriteLine(); } - public void AddValue(string type, string name, string valueText) + public void AddValue(string type, string name, string valueText, string context = "") { this.namesToValues[name] = valueText; @@ -83,6 +83,12 @@ public void AddValue(string type, string name, string valueText) $" [{extraAttributes}]"); } + if (type == "string" && context == "ansi") + { + this.Writer.WriteLine( +$" [NativeEncoding(\"{context}\"]"); + } + this.Writer.WriteLine( $" public const {type} {name} = {valueText};"); diff --git a/sources/MetadataUtils/ConstantsScraper.cs b/sources/MetadataUtils/ConstantsScraper.cs index b174eb563..56567c135 100644 --- a/sources/MetadataUtils/ConstantsScraper.cs +++ b/sources/MetadataUtils/ConstantsScraper.cs @@ -304,7 +304,7 @@ private void AddCtlCodeConstant(string originalNamespace, string name, string de this.writtenConstants.Add(name, "uint"); } - private void AddConstantValue(string originalNamespace, string type, string name, string valueText) + private void AddConstantValue(string originalNamespace, string type, string name, string valueText, string context = "") { if (this.writtenConstants.ContainsKey(name)) { @@ -312,7 +312,7 @@ private void AddConstantValue(string originalNamespace, string type, string name } var writer = this.GetConstantWriter(originalNamespace, name); - writer.AddValue(type, name, valueText); + writer.AddValue(type, name, valueText, context); this.writtenConstants.Add(name, type); } @@ -773,8 +773,10 @@ private void ScrapeConstantsFromTraversedFiles(Dictionary traver valueText = valueText.Substring(2); } + bool isUtf16 = false; if (valueText.StartsWith("TEXT(")) { + isUtf16 = true; valueText = valueText.Substring("TEXT(".Length); if (valueText.EndsWith(')')) { @@ -783,13 +785,14 @@ private void ScrapeConstantsFromTraversedFiles(Dictionary traver } else if (valueText.StartsWith("L\"")) { + isUtf16 = true; valueText = valueText.Substring(1); } // Strings can't be part of enums so go ahead and add the constant directly if (valueText.StartsWith('"')) { - this.AddConstantValue(currentNamespace, "string", name, valueText); + this.AddConstantValue(currentNamespace, "string", name, valueText, isUtf16 ? "utf-16" : "ansi"); continue; } diff --git a/sources/Win32MetadataInterop/NativeEncodingAttribute.cs b/sources/Win32MetadataInterop/NativeEncodingAttribute.cs new file mode 100644 index 000000000..27736142b --- /dev/null +++ b/sources/Win32MetadataInterop/NativeEncodingAttribute.cs @@ -0,0 +1,22 @@ +using System; +using System.Diagnostics; + +namespace Windows.Win32.Interop +{ + /// Defines the encoding of a string as it was defined in the native signature. + //[Conditional("DEBUG")] + [AttributeUsage(AttributeTargets.Property, AllowMultiple = false, Inherited = false)] + [System.Runtime.InteropServices.ComVisible(true)] + public sealed class NativeEncodingAttribute : Attribute + { + /// Initializes a new instance of the class. + /// The encoding of a string as it was defined in the native signature. + public NativeEncodingAttribute(String name) + { + this.Name = name; + } + + /// Gets the encoding of a string as it was defined in the native signature. + public string Name { get; } + } +} From 76d8707b0e30330846ead985393d42fa16086576 Mon Sep 17 00:00:00 2001 From: Mike Battista <13860912+mikebattista@users.noreply.github.com> Date: Tue, 11 Oct 2022 08:30:18 -0700 Subject: [PATCH 2/5] Updated the baseline. --- scripts/ChangesSinceLastRelease.txt | 1176 +++++++++++++++++++++++++++ 1 file changed, 1176 insertions(+) diff --git a/scripts/ChangesSinceLastRelease.txt b/scripts/ChangesSinceLastRelease.txt index 9c2ab926d..5b57ccce7 100644 --- a/scripts/ChangesSinceLastRelease.txt +++ b/scripts/ChangesSinceLastRelease.txt @@ -197,3 +197,1179 @@ Windows.Win32.System.RemoteDesktop.IWTSVirtualChannelManager.CreateListener : ps Windows.Win32.Graphics.Dxgi.IDXGIAdapter.EnumOutputs : => [PreserveSig] Windows.Win32.Graphics.Dxgi.IDXGIFactory.EnumAdapters : => [PreserveSig] Windows.Win32.Graphics.Dxgi.IDXGIFactory1.EnumAdapters1 : => [PreserveSig] +# Added NativeEncoding to ansi strings. +ACCCTRL_DEFAULT_PROVIDERA : => [NativeEncoding(ansi)] +ACCESS_DS_OBJECT_TYPE_NAME_A : => [NativeEncoding(ansi)] +ACCESS_DS_SOURCE_A : => [NativeEncoding(ansi)] +ACCESS_LETTERS : => [NativeEncoding(ansi)] +ACMHELPMSGCONTEXTHELPA : => [NativeEncoding(ansi)] +ACMHELPMSGCONTEXTMENUA : => [NativeEncoding(ansi)] +ACMHELPMSGSTRINGA : => [NativeEncoding(ansi)] +ADAM_SCP_FSMO_NAMING_STRING : => [NativeEncoding(ansi)] +ADAM_SCP_FSMO_SCHEMA_STRING : => [NativeEncoding(ansi)] +ADAM_SCP_FSMO_STRING : => [NativeEncoding(ansi)] +ADAM_SCP_INSTANCE_NAME_STRING : => [NativeEncoding(ansi)] +ADAM_SCP_PARTITION_STRING : => [NativeEncoding(ansi)] +ADAM_SCP_SITE_NAME_STRING : => [NativeEncoding(ansi)] +ALL_TRANSPORTS : => [NativeEncoding(ansi)] +ANIMATE_CLASSA : => [NativeEncoding(ansi)] +CAT_MEMBERINFO_OBJID : => [NativeEncoding(ansi)] +CAT_MEMBERINFO2_OBJID : => [NativeEncoding(ansi)] +CAT_NAMEVALUE_OBJID : => [NativeEncoding(ansi)] +CERICHEDIT_CLASSA : => [NativeEncoding(ansi)] +CERT_AUTH_ROOT_CTL_FILENAME_A : => [NativeEncoding(ansi)] +CERT_DISALLOWED_CERT_CTL_FILENAME_A : => [NativeEncoding(ansi)] +CERT_PIN_RULES_CTL_FILENAME_A : => [NativeEncoding(ansi)] +CERT_PROT_ROOT_PEER_USAGES_VALUE_NAME_A : => [NativeEncoding(ansi)] +CERT_RSA_1024_OID : => [NativeEncoding(ansi)] +CERT_RSA_2048_OID : => [NativeEncoding(ansi)] +CERT_RSA_3072_OID : => [NativeEncoding(ansi)] +CERT_RSASSA_PSS_SHA1_OID : => [NativeEncoding(ansi)] +CERT_RSASSA_PSS_SHA256_OID : => [NativeEncoding(ansi)] +CERT_RSASSA_PSS_SHA384_OID : => [NativeEncoding(ansi)] +CERT_RSASSA_PSS_SHA512_OID : => [NativeEncoding(ansi)] +CFSTR_VFW_FILTERLIST : => [NativeEncoding(ansi)] +ClOUDAP_NAME_A : => [NativeEncoding(ansi)] +CMDSTR_NEWFOLDERA : => [NativeEncoding(ansi)] +CMDSTR_VIEWDETAILSA : => [NativeEncoding(ansi)] +CMDSTR_VIEWLISTA : => [NativeEncoding(ansi)] +CMSG_OID_CNG_EXPORT_KEY_AGREE_FUNC : => [NativeEncoding(ansi)] +CMSG_OID_CNG_EXPORT_KEY_TRANS_FUNC : => [NativeEncoding(ansi)] +CMSG_OID_CNG_GEN_CONTENT_ENCRYPT_KEY_FUNC : => [NativeEncoding(ansi)] +CMSG_OID_CNG_IMPORT_CONTENT_ENCRYPT_KEY_FUNC : => [NativeEncoding(ansi)] +CMSG_OID_CNG_IMPORT_KEY_AGREE_FUNC : => [NativeEncoding(ansi)] +CMSG_OID_CNG_IMPORT_KEY_TRANS_FUNC : => [NativeEncoding(ansi)] +CMSG_OID_EXPORT_ENCRYPT_KEY_FUNC : => [NativeEncoding(ansi)] +CMSG_OID_EXPORT_KEY_AGREE_FUNC : => [NativeEncoding(ansi)] +CMSG_OID_EXPORT_KEY_TRANS_FUNC : => [NativeEncoding(ansi)] +CMSG_OID_EXPORT_MAIL_LIST_FUNC : => [NativeEncoding(ansi)] +CMSG_OID_GEN_CONTENT_ENCRYPT_KEY_FUNC : => [NativeEncoding(ansi)] +CMSG_OID_GEN_ENCRYPT_KEY_FUNC : => [NativeEncoding(ansi)] +CMSG_OID_IMPORT_ENCRYPT_KEY_FUNC : => [NativeEncoding(ansi)] +CMSG_OID_IMPORT_KEY_AGREE_FUNC : => [NativeEncoding(ansi)] +CMSG_OID_IMPORT_KEY_TRANS_FUNC : => [NativeEncoding(ansi)] +CMSG_OID_IMPORT_MAIL_LIST_FUNC : => [NativeEncoding(ansi)] +COLOROKSTRINGA : => [NativeEncoding(ansi)] +CONTEXT_OID_CREATE_OBJECT_CONTEXT_FUNC : => [NativeEncoding(ansi)] +CRED_SESSION_WILDCARD_NAME_A : => [NativeEncoding(ansi)] +CRED_TARGETNAME_ATTRIBUTE_BATCH_A : => [NativeEncoding(ansi)] +CRED_TARGETNAME_ATTRIBUTE_CACHEDINTERACTIVE_A : => [NativeEncoding(ansi)] +CRED_TARGETNAME_ATTRIBUTE_INTERACTIVE_A : => [NativeEncoding(ansi)] +CRED_TARGETNAME_ATTRIBUTE_NAME_A : => [NativeEncoding(ansi)] +CRED_TARGETNAME_ATTRIBUTE_NETWORK_A : => [NativeEncoding(ansi)] +CRED_TARGETNAME_ATTRIBUTE_NETWORKCLEARTEXT_A : => [NativeEncoding(ansi)] +CRED_TARGETNAME_ATTRIBUTE_REMOTEINTERACTIVE_A : => [NativeEncoding(ansi)] +CRED_TARGETNAME_ATTRIBUTE_SERVICE_A : => [NativeEncoding(ansi)] +CRED_TARGETNAME_ATTRIBUTE_TARGET_A : => [NativeEncoding(ansi)] +CRED_TARGETNAME_DOMAIN_NAMESPACE_A : => [NativeEncoding(ansi)] +CRED_TARGETNAME_LEGACYGENERIC_NAMESPACE_A : => [NativeEncoding(ansi)] +CRYPT_DEFAULT_OID : => [NativeEncoding(ansi)] +CRYPT_LOCALIZED_NAME_OID : => [NativeEncoding(ansi)] +CRYPT_OID_CREATE_COM_OBJECT_FUNC : => [NativeEncoding(ansi)] +CRYPT_OID_DECODE_OBJECT_EX_FUNC : => [NativeEncoding(ansi)] +CRYPT_OID_DECODE_OBJECT_FUNC : => [NativeEncoding(ansi)] +CRYPT_OID_ENCODE_OBJECT_EX_FUNC : => [NativeEncoding(ansi)] +CRYPT_OID_ENCODE_OBJECT_FUNC : => [NativeEncoding(ansi)] +CRYPT_OID_ENUM_PHYSICAL_STORE_FUNC : => [NativeEncoding(ansi)] +CRYPT_OID_ENUM_SYSTEM_STORE_FUNC : => [NativeEncoding(ansi)] +CRYPT_OID_EXPORT_PRIVATE_KEY_INFO_FUNC : => [NativeEncoding(ansi)] +CRYPT_OID_EXPORT_PUBLIC_KEY_INFO_EX2_FUNC : => [NativeEncoding(ansi)] +CRYPT_OID_EXPORT_PUBLIC_KEY_INFO_FROM_BCRYPT_HANDLE_FUNC : => [NativeEncoding(ansi)] +CRYPT_OID_EXPORT_PUBLIC_KEY_INFO_FUNC : => [NativeEncoding(ansi)] +CRYPT_OID_EXTRACT_ENCODED_SIGNATURE_PARAMETERS_FUNC : => [NativeEncoding(ansi)] +CRYPT_OID_FIND_LOCALIZED_NAME_FUNC : => [NativeEncoding(ansi)] +CRYPT_OID_FIND_OID_INFO_FUNC : => [NativeEncoding(ansi)] +CRYPT_OID_FORMAT_OBJECT_FUNC : => [NativeEncoding(ansi)] +CRYPT_OID_IMPORT_PRIVATE_KEY_INFO_FUNC : => [NativeEncoding(ansi)] +CRYPT_OID_IMPORT_PUBLIC_KEY_INFO_EX2_FUNC : => [NativeEncoding(ansi)] +CRYPT_OID_IMPORT_PUBLIC_KEY_INFO_FUNC : => [NativeEncoding(ansi)] +CRYPT_OID_OPEN_STORE_PROV_FUNC : => [NativeEncoding(ansi)] +CRYPT_OID_OPEN_SYSTEM_STORE_PROV_FUNC : => [NativeEncoding(ansi)] +CRYPT_OID_REG_ENCODING_TYPE_PREFIX : => [NativeEncoding(ansi)] +CRYPT_OID_REG_FUNC_NAME_VALUE_NAME_A : => [NativeEncoding(ansi)] +CRYPT_OID_REGISTER_PHYSICAL_STORE_FUNC : => [NativeEncoding(ansi)] +CRYPT_OID_REGISTER_SYSTEM_STORE_FUNC : => [NativeEncoding(ansi)] +CRYPT_OID_REGPATH : => [NativeEncoding(ansi)] +CRYPT_OID_SIGN_AND_ENCODE_HASH_FUNC : => [NativeEncoding(ansi)] +CRYPT_OID_UNREGISTER_PHYSICAL_STORE_FUNC : => [NativeEncoding(ansi)] +CRYPT_OID_UNREGISTER_SYSTEM_STORE_FUNC : => [NativeEncoding(ansi)] +CRYPT_OID_VERIFY_CERTIFICATE_CHAIN_POLICY_FUNC : => [NativeEncoding(ansi)] +CRYPT_OID_VERIFY_CTL_USAGE_FUNC : => [NativeEncoding(ansi)] +CRYPT_OID_VERIFY_ENCODED_SIGNATURE_FUNC : => [NativeEncoding(ansi)] +CRYPT_OID_VERIFY_REVOCATION_FUNC : => [NativeEncoding(ansi)] +D3DCOMPILER_DLL_A : => [NativeEncoding(ansi)] +D3DCSX_DLL_A : => [NativeEncoding(ansi)] +DATETIMEPICK_CLASSA : => [NativeEncoding(ansi)] +DD_KEYBOARD_DEVICE_NAME : => [NativeEncoding(ansi)] +DD_MOUSE_DEVICE_NAME : => [NativeEncoding(ansi)] +DD_SCSI_DEVICE_NAME : => [NativeEncoding(ansi)] +DDHAL_APP_DLLNAME : => [NativeEncoding(ansi)] +DDHAL_DRIVER_DLLNAME : => [NativeEncoding(ansi)] +DEBUG_OUTPUT_NAME_END : => [NativeEncoding(ansi)] +DEBUG_OUTPUT_OFFSET_END : => [NativeEncoding(ansi)] +DEBUG_OUTPUT_TYPE_END : => [NativeEncoding(ansi)] +DEBUG_OUTPUT_VALUE_END : => [NativeEncoding(ansi)] +DEFAULT_TLS_SSP_NAME_A : => [NativeEncoding(ansi)] +DHCP_CALLOUT_ENTRY_POINT : => [NativeEncoding(ansi)] +DIAG_LOGGER_NAMEA : => [NativeEncoding(ansi)] +DIRECTINPUT_NOTIFICATION_MSGSTRINGA : => [NativeEncoding(ansi)] +DIRECTINPUT_REGSTR_KEY_LASTAPPA : => [NativeEncoding(ansi)] +DIRECTINPUT_REGSTR_KEY_LASTMAPAPPA : => [NativeEncoding(ansi)] +DIRECTINPUT_REGSTR_VAL_APPIDFLAGA : => [NativeEncoding(ansi)] +DIRECTINPUT_REGSTR_VAL_IDA : => [NativeEncoding(ansi)] +DIRECTINPUT_REGSTR_VAL_LASTSTARTA : => [NativeEncoding(ansi)] +DIRECTINPUT_REGSTR_VAL_MAPPERA : => [NativeEncoding(ansi)] +DIRECTINPUT_REGSTR_VAL_NAMEA : => [NativeEncoding(ansi)] +DIRECTINPUT_REGSTR_VAL_VERSIONA : => [NativeEncoding(ansi)] +DS_SYNCED_EVENT_NAME : => [NativeEncoding(ansi)] +EA_CONTAINER_NAME : => [NativeEncoding(ansi)] +EA_CONTAINER_SIZE : => [NativeEncoding(ansi)] +EVENT_LOGGER_NAMEA : => [NativeEncoding(ansi)] +EXPO_OFFLOAD_FUNC_NAME : => [NativeEncoding(ansi)] +EXPO_OFFLOAD_REG_VALUE : => [NativeEncoding(ansi)] +FILEOKSTRINGA : => [NativeEncoding(ansi)] +FINDMSGSTRINGA : => [NativeEncoding(ansi)] +GET_RESOURCE_STRING_FN_NAME : => [NativeEncoding(ansi)] +GET_SYSTEM_WOW64_DIRECTORY_NAME_A_A : => [NativeEncoding(ansi)] +GET_SYSTEM_WOW64_DIRECTORY_NAME_W_A : => [NativeEncoding(ansi)] +GETTNEFSTREAMCODEPAGE : => [NativeEncoding(ansi)] +GLOBAL_LOGGER_NAMEA : => [NativeEncoding(ansi)] +GUID_COMPUTRS_CONTAINER_A : => [NativeEncoding(ansi)] +GUID_DELETED_OBJECTS_CONTAINER_A : => [NativeEncoding(ansi)] +GUID_DOMAIN_CONTROLLERS_CONTAINER_A : => [NativeEncoding(ansi)] +GUID_FOREIGNSECURITYPRINCIPALS_CONTAINER_A : => [NativeEncoding(ansi)] +GUID_INFRASTRUCTURE_CONTAINER_A : => [NativeEncoding(ansi)] +GUID_LOSTANDFOUND_CONTAINER_A : => [NativeEncoding(ansi)] +GUID_MICROSOFT_PROGRAM_DATA_CONTAINER_A : => [NativeEncoding(ansi)] +GUID_NTDS_QUOTAS_CONTAINER_A : => [NativeEncoding(ansi)] +GUID_PRIVILEGED_ACCESS_MANAGEMENT_OPTIONAL_FEATURE_A : => [NativeEncoding(ansi)] +GUID_PROGRAM_DATA_CONTAINER_A : => [NativeEncoding(ansi)] +GUID_RECYCLE_BIN_OPTIONAL_FEATURE_A : => [NativeEncoding(ansi)] +GUID_SYSTEMS_CONTAINER_A : => [NativeEncoding(ansi)] +GUID_USERS_CONTAINER_A : => [NativeEncoding(ansi)] +HELPMSGSTRINGA : => [NativeEncoding(ansi)] +HOTKEY_CLASSA : => [NativeEncoding(ansi)] +HTTP_VERSIONA : => [NativeEncoding(ansi)] +ICW_REGKEYCOMPLETED : => [NativeEncoding(ansi)] +ICW_REGPATHSETTINGS : => [NativeEncoding(ansi)] +ID_FQDN : => [NativeEncoding(ansi)] +ID_IPV4_ADDR : => [NativeEncoding(ansi)] +ID_IPV6_ADDR : => [NativeEncoding(ansi)] +ID_USER_FQDN : => [NativeEncoding(ansi)] +IEGetProcessModule_PROC_NAME : => [NativeEncoding(ansi)] +IEGetTabWindowExports_PROC_NAME : => [NativeEncoding(ansi)] +IHV_INIT_FUNCTION_NAME : => [NativeEncoding(ansi)] +IHV_INIT_VS_FUNCTION_NAME : => [NativeEncoding(ansi)] +IHV_VERSION_FUNCTION_NAME : => [NativeEncoding(ansi)] +IIS_CLASS_CERTMAPPER : => [NativeEncoding(ansi)] +IIS_CLASS_COMPRESS_SCHEME : => [NativeEncoding(ansi)] +IIS_CLASS_COMPRESS_SCHEMES : => [NativeEncoding(ansi)] +IIS_CLASS_COMPUTER : => [NativeEncoding(ansi)] +IIS_CLASS_FILTER : => [NativeEncoding(ansi)] +IIS_CLASS_FILTERS : => [NativeEncoding(ansi)] +IIS_CLASS_FTP_INFO : => [NativeEncoding(ansi)] +IIS_CLASS_FTP_SERVER : => [NativeEncoding(ansi)] +IIS_CLASS_FTP_SERVICE : => [NativeEncoding(ansi)] +IIS_CLASS_FTP_VDIR : => [NativeEncoding(ansi)] +IIS_CLASS_LOG_MODULE : => [NativeEncoding(ansi)] +IIS_CLASS_LOG_MODULES : => [NativeEncoding(ansi)] +IIS_CLASS_MIMEMAP : => [NativeEncoding(ansi)] +IIS_CLASS_WEB_DIR : => [NativeEncoding(ansi)] +IIS_CLASS_WEB_FILE : => [NativeEncoding(ansi)] +IIS_CLASS_WEB_INFO : => [NativeEncoding(ansi)] +IIS_CLASS_WEB_SERVER : => [NativeEncoding(ansi)] +IIS_CLASS_WEB_SERVICE : => [NativeEncoding(ansi)] +IIS_CLASS_WEB_VDIR : => [NativeEncoding(ansi)] +IIS_MD_ADSI_SCHEMA_PATH_A : => [NativeEncoding(ansi)] +IIS_MD_INSTANCE_ROOT : => [NativeEncoding(ansi)] +IIS_MD_ISAPI_FILTERS : => [NativeEncoding(ansi)] +IIS_MD_LOCAL_MACHINE_PATH : => [NativeEncoding(ansi)] +IIS_MD_SVC_INFO_PATH : => [NativeEncoding(ansi)] +IIS_WEBSOCKET_SERVER_VARIABLE : => [NativeEncoding(ansi)] +IISADMIN_EXTENSIONS_CLSID_MD_KEYA : => [NativeEncoding(ansi)] +IISADMIN_EXTENSIONS_REG_KEYA : => [NativeEncoding(ansi)] +IMAGE_ARCHIVE_END : => [NativeEncoding(ansi)] +IMAGE_ARCHIVE_HYBRIDMAP_MEMBER : => [NativeEncoding(ansi)] +IMAGE_ARCHIVE_LINKER_MEMBER : => [NativeEncoding(ansi)] +IMAGE_ARCHIVE_LONGNAMES_MEMBER : => [NativeEncoding(ansi)] +IMAGE_ARCHIVE_PAD : => [NativeEncoding(ansi)] +IMAGE_ARCHIVE_START : => [NativeEncoding(ansi)] +IMAGE_POLICY_SECTION_NAME : => [NativeEncoding(ansi)] +IMAPI2FS_FullVersion_STR : => [NativeEncoding(ansi)] +IOCTL_MINIPORT_SIGNATURE_DSM_GENERAL : => [NativeEncoding(ansi)] +IOCTL_MINIPORT_SIGNATURE_DSM_NOTIFICATION : => [NativeEncoding(ansi)] +IOCTL_MINIPORT_SIGNATURE_ENDURANCE_INFO : => [NativeEncoding(ansi)] +IOCTL_MINIPORT_SIGNATURE_FIRMWARE : => [NativeEncoding(ansi)] +IOCTL_MINIPORT_SIGNATURE_HYBRDISK : => [NativeEncoding(ansi)] +IOCTL_MINIPORT_SIGNATURE_QUERY_PHYSICAL_TOPOLOGY : => [NativeEncoding(ansi)] +IOCTL_MINIPORT_SIGNATURE_QUERY_PROTOCOL : => [NativeEncoding(ansi)] +IOCTL_MINIPORT_SIGNATURE_QUERY_TEMPERATURE : => [NativeEncoding(ansi)] +IOCTL_MINIPORT_SIGNATURE_SCSIDISK : => [NativeEncoding(ansi)] +IOCTL_MINIPORT_SIGNATURE_SET_PROTOCOL : => [NativeEncoding(ansi)] +IOCTL_MINIPORT_SIGNATURE_SET_TEMPERATURE_THRESHOLD : => [NativeEncoding(ansi)] +ISCSI_LOGIN_OPTIONS_AUTH_TYPE : => [NativeEncoding(ansi)] +ISCSI_LOGIN_OPTIONS_DATA_DIGEST : => [NativeEncoding(ansi)] +ISCSI_LOGIN_OPTIONS_DEFAULT_TIME_2_RETAIN : => [NativeEncoding(ansi)] +ISCSI_LOGIN_OPTIONS_DEFAULT_TIME_2_WAIT : => [NativeEncoding(ansi)] +ISCSI_LOGIN_OPTIONS_HEADER_DIGEST : => [NativeEncoding(ansi)] +ISCSI_LOGIN_OPTIONS_MAXIMUM_CONNECTIONS : => [NativeEncoding(ansi)] +ISCSI_LOGIN_OPTIONS_PASSWORD : => [NativeEncoding(ansi)] +ISCSI_LOGIN_OPTIONS_USERNAME : => [NativeEncoding(ansi)] +ISCSI_SECURITY_FLAG_AGGRESSIVE_MODE_ENABLED : => [NativeEncoding(ansi)] +ISCSI_SECURITY_FLAG_IKE_IPSEC_ENABLED : => [NativeEncoding(ansi)] +ISCSI_SECURITY_FLAG_MAIN_MODE_ENABLED : => [NativeEncoding(ansi)] +ISCSI_SECURITY_FLAG_PFS_ENABLED : => [NativeEncoding(ansi)] +ISCSI_SECURITY_FLAG_TRANSPORT_MODE_PREFERRED : => [NativeEncoding(ansi)] +ISCSI_SECURITY_FLAG_TUNNEL_MODE_PREFERRED : => [NativeEncoding(ansi)] +ISCSI_SECURITY_FLAG_VALID : => [NativeEncoding(ansi)] +JOY_CONFIGCHANGED_MSGSTRING : => [NativeEncoding(ansi)] +KERNEL_LOGGER_NAMEA : => [NativeEncoding(ansi)] +LBSELCHSTRINGA : => [NativeEncoding(ansi)] +LDAP_CAP_ACTIVE_DIRECTORY_ADAM_OID : => [NativeEncoding(ansi)] +LDAP_CAP_ACTIVE_DIRECTORY_LDAP_INTEG_OID : => [NativeEncoding(ansi)] +LDAP_CAP_ACTIVE_DIRECTORY_OID : => [NativeEncoding(ansi)] +LDAP_CAP_ACTIVE_DIRECTORY_PARTIAL_SECRETS_OID : => [NativeEncoding(ansi)] +LDAP_CAP_ACTIVE_DIRECTORY_V51_OID : => [NativeEncoding(ansi)] +LDAP_CAP_ACTIVE_DIRECTORY_V60_OID : => [NativeEncoding(ansi)] +LDAP_CAP_ACTIVE_DIRECTORY_V61_R2_OID : => [NativeEncoding(ansi)] +LDAP_CAP_ACTIVE_DIRECTORY_W8_OID : => [NativeEncoding(ansi)] +LDAP_CONTROL_REFERRALS : => [NativeEncoding(ansi)] +LDAP_CONTROL_VLVREQUEST : => [NativeEncoding(ansi)] +LDAP_CONTROL_VLVRESPONSE : => [NativeEncoding(ansi)] +LDAP_MATCHING_RULE_BIT_AND : => [NativeEncoding(ansi)] +LDAP_MATCHING_RULE_BIT_OR : => [NativeEncoding(ansi)] +LDAP_MATCHING_RULE_DN_BINARY_COMPLEX : => [NativeEncoding(ansi)] +LDAP_MATCHING_RULE_TRANSITIVE_EVALUATION : => [NativeEncoding(ansi)] +LDAP_OPATT_ABANDON_REPL : => [NativeEncoding(ansi)] +LDAP_OPATT_BECOME_DOM_MASTER : => [NativeEncoding(ansi)] +LDAP_OPATT_BECOME_PDC : => [NativeEncoding(ansi)] +LDAP_OPATT_BECOME_RID_MASTER : => [NativeEncoding(ansi)] +LDAP_OPATT_BECOME_SCHEMA_MASTER : => [NativeEncoding(ansi)] +LDAP_OPATT_CONFIG_NAMING_CONTEXT : => [NativeEncoding(ansi)] +LDAP_OPATT_CURRENT_TIME : => [NativeEncoding(ansi)] +LDAP_OPATT_DEFAULT_NAMING_CONTEXT : => [NativeEncoding(ansi)] +LDAP_OPATT_DNS_HOST_NAME : => [NativeEncoding(ansi)] +LDAP_OPATT_DO_GARBAGE_COLLECTION : => [NativeEncoding(ansi)] +LDAP_OPATT_DS_SERVICE_NAME : => [NativeEncoding(ansi)] +LDAP_OPATT_FIXUP_INHERITANCE : => [NativeEncoding(ansi)] +LDAP_OPATT_HIGHEST_COMMITTED_USN : => [NativeEncoding(ansi)] +LDAP_OPATT_INVALIDATE_RID_POOL : => [NativeEncoding(ansi)] +LDAP_OPATT_LDAP_SERVICE_NAME : => [NativeEncoding(ansi)] +LDAP_OPATT_NAMING_CONTEXTS : => [NativeEncoding(ansi)] +LDAP_OPATT_RECALC_HIERARCHY : => [NativeEncoding(ansi)] +LDAP_OPATT_ROOT_DOMAIN_NAMING_CONTEXT : => [NativeEncoding(ansi)] +LDAP_OPATT_SCHEMA_NAMING_CONTEXT : => [NativeEncoding(ansi)] +LDAP_OPATT_SCHEMA_UPDATE_NOW : => [NativeEncoding(ansi)] +LDAP_OPATT_SERVER_NAME : => [NativeEncoding(ansi)] +LDAP_OPATT_SUBSCHEMA_SUBENTRY : => [NativeEncoding(ansi)] +LDAP_OPATT_SUPPORTED_CAPABILITIES : => [NativeEncoding(ansi)] +LDAP_OPATT_SUPPORTED_CONTROL : => [NativeEncoding(ansi)] +LDAP_OPATT_SUPPORTED_LDAP_POLICIES : => [NativeEncoding(ansi)] +LDAP_OPATT_SUPPORTED_LDAP_VERSION : => [NativeEncoding(ansi)] +LDAP_OPATT_SUPPORTED_SASL_MECHANISM : => [NativeEncoding(ansi)] +LDAP_PAGED_RESULT_OID_STRING : => [NativeEncoding(ansi)] +LDAP_SEARCH_HINT_INDEX_ONLY_OID : => [NativeEncoding(ansi)] +LDAP_SEARCH_HINT_REQUIRED_INDEX_OID : => [NativeEncoding(ansi)] +LDAP_SEARCH_HINT_SOFT_SIZE_LIMIT_OID : => [NativeEncoding(ansi)] +LDAP_SERVER_ASQ_OID : => [NativeEncoding(ansi)] +LDAP_SERVER_BATCH_REQUEST_OID : => [NativeEncoding(ansi)] +LDAP_SERVER_BYPASS_QUOTA_OID : => [NativeEncoding(ansi)] +LDAP_SERVER_CROSSDOM_MOVE_TARGET_OID : => [NativeEncoding(ansi)] +LDAP_SERVER_DIRSYNC_EX_OID : => [NativeEncoding(ansi)] +LDAP_SERVER_DIRSYNC_OID : => [NativeEncoding(ansi)] +LDAP_SERVER_DN_INPUT_OID : => [NativeEncoding(ansi)] +LDAP_SERVER_DOMAIN_SCOPE_OID : => [NativeEncoding(ansi)] +LDAP_SERVER_EXPECTED_ENTRY_COUNT_OID : => [NativeEncoding(ansi)] +LDAP_SERVER_EXTENDED_DN_OID : => [NativeEncoding(ansi)] +LDAP_SERVER_FAST_BIND_OID : => [NativeEncoding(ansi)] +LDAP_SERVER_FORCE_UPDATE_OID : => [NativeEncoding(ansi)] +LDAP_SERVER_GET_STATS_OID : => [NativeEncoding(ansi)] +LDAP_SERVER_LAZY_COMMIT_OID : => [NativeEncoding(ansi)] +LDAP_SERVER_LINK_TTL_OID : => [NativeEncoding(ansi)] +LDAP_SERVER_NOTIFICATION_OID : => [NativeEncoding(ansi)] +LDAP_SERVER_PERMISSIVE_MODIFY_OID : => [NativeEncoding(ansi)] +LDAP_SERVER_POLICY_HINTS_DEPRECATED_OID : => [NativeEncoding(ansi)] +LDAP_SERVER_POLICY_HINTS_OID : => [NativeEncoding(ansi)] +LDAP_SERVER_QUOTA_CONTROL_OID : => [NativeEncoding(ansi)] +LDAP_SERVER_RANGE_OPTION_OID : => [NativeEncoding(ansi)] +LDAP_SERVER_RANGE_RETRIEVAL_NOERR_OID : => [NativeEncoding(ansi)] +LDAP_SERVER_RESP_SORT_OID : => [NativeEncoding(ansi)] +LDAP_SERVER_SD_FLAGS_OID : => [NativeEncoding(ansi)] +LDAP_SERVER_SEARCH_HINTS_OID : => [NativeEncoding(ansi)] +LDAP_SERVER_SEARCH_OPTIONS_OID : => [NativeEncoding(ansi)] +LDAP_SERVER_SET_OWNER_OID : => [NativeEncoding(ansi)] +LDAP_SERVER_SHOW_DEACTIVATED_LINK_OID : => [NativeEncoding(ansi)] +LDAP_SERVER_SHOW_DELETED_OID : => [NativeEncoding(ansi)] +LDAP_SERVER_SHOW_RECYCLED_OID : => [NativeEncoding(ansi)] +LDAP_SERVER_SHUTDOWN_NOTIFY_OID : => [NativeEncoding(ansi)] +LDAP_SERVER_SORT_OID : => [NativeEncoding(ansi)] +LDAP_SERVER_TREE_DELETE_EX_OID : => [NativeEncoding(ansi)] +LDAP_SERVER_TREE_DELETE_OID : => [NativeEncoding(ansi)] +LDAP_SERVER_UPDATE_STATS_OID : => [NativeEncoding(ansi)] +LDAP_SERVER_VERIFY_NAME_OID : => [NativeEncoding(ansi)] +LDAP_SERVER_WHO_AM_I_OID : => [NativeEncoding(ansi)] +LDAP_START_TLS_OID : => [NativeEncoding(ansi)] +LDAP_TTL_EXTENDED_OP_OID : => [NativeEncoding(ansi)] +LDAP_UPDATE_STATS_INVOCATIONID_OID : => [NativeEncoding(ansi)] +LDAP_UPDATE_STATS_USN_OID : => [NativeEncoding(ansi)] +LDAP_VENDOR_NAME : => [NativeEncoding(ansi)] +LOCAL_NAMESPACE_PREFIX : => [NativeEncoding(ansi)] +LSA_AP_NAME_CALL_PACKAGE : => [NativeEncoding(ansi)] +LSA_AP_NAME_CALL_PACKAGE_PASSTHROUGH : => [NativeEncoding(ansi)] +LSA_AP_NAME_CALL_PACKAGE_UNTRUSTED : => [NativeEncoding(ansi)] +LSA_AP_NAME_INITIALIZE_PACKAGE : => [NativeEncoding(ansi)] +LSA_AP_NAME_LOGON_TERMINATED : => [NativeEncoding(ansi)] +LSA_AP_NAME_LOGON_USER : => [NativeEncoding(ansi)] +LSA_AP_NAME_LOGON_USER_EX : => [NativeEncoding(ansi)] +LSA_AP_NAME_LOGON_USER_EX2 : => [NativeEncoding(ansi)] +MD_INSERT_PATH_STRINGA : => [NativeEncoding(ansi)] +MICROSOFT_KERBEROS_NAME_A : => [NativeEncoding(ansi)] +MONTHCAL_CLASSA : => [NativeEncoding(ansi)] +MS_DEF_DH_SCHANNEL_PROV_A : => [NativeEncoding(ansi)] +MS_DEF_DSS_DH_PROV_A : => [NativeEncoding(ansi)] +MS_DEF_DSS_PROV_A : => [NativeEncoding(ansi)] +MS_DEF_PROV_A : => [NativeEncoding(ansi)] +MS_DEF_RSA_SCHANNEL_PROV_A : => [NativeEncoding(ansi)] +MS_DEF_RSA_SIG_PROV_A : => [NativeEncoding(ansi)] +MS_ENH_DSS_DH_PROV_A : => [NativeEncoding(ansi)] +MS_ENH_RSA_AES_PROV_A : => [NativeEncoding(ansi)] +MS_ENH_RSA_AES_PROV_XP_A : => [NativeEncoding(ansi)] +MS_ENHANCED_PROV_A : => [NativeEncoding(ansi)] +MS_NBF : => [NativeEncoding(ansi)] +MS_PERSIST_PROGID : => [NativeEncoding(ansi)] +MS_SCARD_PROV_A : => [NativeEncoding(ansi)] +MS_STRONG_PROV_A : => [NativeEncoding(ansi)] +MSV1_0_PACKAGE_NAME : => [NativeEncoding(ansi)] +MSV1_0_SUBAUTHENTICATION_KEY : => [NativeEncoding(ansi)] +MSV1_0_SUBAUTHENTICATION_VALUE : => [NativeEncoding(ansi)] +NEGOSSP_NAME_A : => [NativeEncoding(ansi)] +NS_GET_EVENT_IDS_FN_NAME : => [NativeEncoding(ansi)] +NTLMSP_NAME_A : => [NativeEncoding(ansi)] +NULL_USERSETINFO_PASSWD : => [NativeEncoding(ansi)] +OPENSTREAMONFILE : => [NativeEncoding(ansi)] +OPENTNEFSTREAM : => [NativeEncoding(ansi)] +OPENTNEFSTREAMEX : => [NativeEncoding(ansi)] +OUT_OF_PROCESS_FUNCTION_TABLE_CALLBACK_EXPORT_NAME : => [NativeEncoding(ansi)] +PCT1SP_NAME_A : => [NativeEncoding(ansi)] +PKCS12_PBKDF2_ID_HMAC_SHA1 : => [NativeEncoding(ansi)] +PKCS12_PBKDF2_ID_HMAC_SHA256 : => [NativeEncoding(ansi)] +PKCS12_PBKDF2_ID_HMAC_SHA384 : => [NativeEncoding(ansi)] +PKCS12_PBKDF2_ID_HMAC_SHA512 : => [NativeEncoding(ansi)] +PKU2U_PACKAGE_NAME_A : => [NativeEncoding(ansi)] +PROGRESS_CLASSA : => [NativeEncoding(ansi)] +RADIUS_EXTENSION_FREE_ATTRIBUTES : => [NativeEncoding(ansi)] +RADIUS_EXTENSION_INIT : => [NativeEncoding(ansi)] +RADIUS_EXTENSION_PROCESS : => [NativeEncoding(ansi)] +RADIUS_EXTENSION_PROCESS_EX : => [NativeEncoding(ansi)] +RADIUS_EXTENSION_PROCESS2 : => [NativeEncoding(ansi)] +RADIUS_EXTENSION_TERM : => [NativeEncoding(ansi)] +RASDIALEVENT : => [NativeEncoding(ansi)] +REBARCLASSNAMEA : => [NativeEncoding(ansi)] +REGISTER_PROTOCOL_ENTRY_POINT_STRING : => [NativeEncoding(ansi)] +REGSTR_DIAL_AUTOCONNECT : => [NativeEncoding(ansi)] +REGSTR_KEY_DDHW_DESCRIPTION : => [NativeEncoding(ansi)] +REGSTR_KEY_DDHW_DRIVERNAME : => [NativeEncoding(ansi)] +REGSTR_LEASH_LEGACY_COOKIES : => [NativeEncoding(ansi)] +REGSTR_PATH_DDHW : => [NativeEncoding(ansi)] +REGSTR_PATH_SOFTWARESYNTHS : => [NativeEncoding(ansi)] +REGSTR_VAL_BAUDRATE_A : => [NativeEncoding(ansi)] +REGSTRA_VAL_STARTPAGE : => [NativeEncoding(ansi)] +RESTORE_LAST_ERROR_NAME_A : => [NativeEncoding(ansi)] +RICHEDIT_CLASS10A : => [NativeEncoding(ansi)] +RICHEDIT_CLASSA : => [NativeEncoding(ansi)] +SAM_CREDENTIAL_UPDATE_FREE_ROUTINE : => [NativeEncoding(ansi)] +SAM_CREDENTIAL_UPDATE_NOTIFY_ROUTINE : => [NativeEncoding(ansi)] +SAM_CREDENTIAL_UPDATE_REGISTER_MAPPED_ENTRYPOINTS_ROUTINE : => [NativeEncoding(ansi)] +SAM_CREDENTIAL_UPDATE_REGISTER_ROUTINE : => [NativeEncoding(ansi)] +SAM_INIT_NOTIFICATION_ROUTINE : => [NativeEncoding(ansi)] +SAM_PASSWORD_CHANGE_NOTIFY_ROUTINE : => [NativeEncoding(ansi)] +SAM_PASSWORD_FILTER_ROUTINE : => [NativeEncoding(ansi)] +SCHANNEL_NAME_A : => [NativeEncoding(ansi)] +SCHEME_OID_RETRIEVE_ENCODED_OBJECT_FUNC : => [NativeEncoding(ansi)] +SCHEME_OID_RETRIEVE_ENCODED_OBJECTW_FUNC : => [NativeEncoding(ansi)] +SECPKG_LSAMODEINIT_NAME : => [NativeEncoding(ansi)] +SECPKG_USERMODEINIT_NAME : => [NativeEncoding(ansi)] +SECURITY_ENTRYPOINT_ANSIA : => [NativeEncoding(ansi)] +SECURITY_ENTRYPOINT_ANSIW : => [NativeEncoding(ansi)] +SECURITY_ENTRYPOINT16 : => [NativeEncoding(ansi)] +SERVICE_TYPE_VALUE_CONNA : => [NativeEncoding(ansi)] +SERVICE_TYPE_VALUE_IPXPORTA : => [NativeEncoding(ansi)] +SERVICE_TYPE_VALUE_OBJECTIDA : => [NativeEncoding(ansi)] +SERVICE_TYPE_VALUE_SAPIDA : => [NativeEncoding(ansi)] +SERVICE_TYPE_VALUE_TCPPORTA : => [NativeEncoding(ansi)] +SERVICE_TYPE_VALUE_UDPPORTA : => [NativeEncoding(ansi)] +SERVICES_ACTIVE_DATABASEA : => [NativeEncoding(ansi)] +SERVICES_FAILED_DATABASEA : => [NativeEncoding(ansi)] +SETRGBSTRINGA : => [NativeEncoding(ansi)] +SHAREVISTRINGA : => [NativeEncoding(ansi)] +SMB_CCF_APP_INSTANCE_EA_NAME : => [NativeEncoding(ansi)] +SP_ACCEPT_CREDENTIALS_NAME : => [NativeEncoding(ansi)] +SPC_CAB_DATA_OBJID : => [NativeEncoding(ansi)] +SPC_CERT_EXTENSIONS_OBJID : => [NativeEncoding(ansi)] +SPC_COMMERCIAL_SP_KEY_PURPOSE_OBJID : => [NativeEncoding(ansi)] +SPC_ENCRYPTED_DIGEST_RETRY_COUNT_OBJID : => [NativeEncoding(ansi)] +SPC_FINANCIAL_CRITERIA_OBJID : => [NativeEncoding(ansi)] +SPC_GLUE_RDN_OBJID : => [NativeEncoding(ansi)] +SPC_INDIRECT_DATA_OBJID : => [NativeEncoding(ansi)] +SPC_INDIVIDUAL_SP_KEY_PURPOSE_OBJID : => [NativeEncoding(ansi)] +SPC_JAVA_CLASS_DATA_OBJID : => [NativeEncoding(ansi)] +SPC_LINK_OBJID : => [NativeEncoding(ansi)] +SPC_MINIMAL_CRITERIA_OBJID : => [NativeEncoding(ansi)] +SPC_NATURAL_AUTH_PLUGIN_OBJID : => [NativeEncoding(ansi)] +SPC_PE_IMAGE_DATA_OBJID : => [NativeEncoding(ansi)] +SPC_PE_IMAGE_PAGE_HASHES_V1_OBJID : => [NativeEncoding(ansi)] +SPC_PE_IMAGE_PAGE_HASHES_V2_OBJID : => [NativeEncoding(ansi)] +SPC_RAW_FILE_DATA_OBJID : => [NativeEncoding(ansi)] +SPC_RELAXED_PE_MARKER_CHECK_OBJID : => [NativeEncoding(ansi)] +SPC_SIGINFO_OBJID : => [NativeEncoding(ansi)] +SPC_SP_AGENCY_INFO_OBJID : => [NativeEncoding(ansi)] +SPC_SP_OPUS_INFO_OBJID : => [NativeEncoding(ansi)] +SPC_STATEMENT_TYPE_OBJID : => [NativeEncoding(ansi)] +SPC_STRUCTURED_STORAGE_DATA_OBJID : => [NativeEncoding(ansi)] +SPC_TIME_STAMP_REQUEST_OBJID : => [NativeEncoding(ansi)] +SPC_WINDOWS_HELLO_COMPATIBILITY_OBJID : => [NativeEncoding(ansi)] +SQL_ALL_CATALOGS : => [NativeEncoding(ansi)] +SQL_ALL_SCHEMAS : => [NativeEncoding(ansi)] +SQL_ALL_TABLE_TYPES : => [NativeEncoding(ansi)] +SQL_ODBC_KEYWORDS : => [NativeEncoding(ansi)] +SQL_OPT_TRACE_FILE_DEFAULT : => [NativeEncoding(ansi)] +SQL_SPEC_STRING : => [NativeEncoding(ansi)] +SSL_OBJECT_LOCATOR_CERT_VALIDATION_CONFIG_FUNC : => [NativeEncoding(ansi)] +SSL_OBJECT_LOCATOR_ISSUER_LIST_FUNC : => [NativeEncoding(ansi)] +SSL_OBJECT_LOCATOR_PFX_FUNC : => [NativeEncoding(ansi)] +SSL2SP_NAME_A : => [NativeEncoding(ansi)] +SSL3SP_NAME_A : => [NativeEncoding(ansi)] +STARTUP_EX_ROUTINE : => [NativeEncoding(ansi)] +STARTUP_ROUTINE : => [NativeEncoding(ansi)] +STATUSCLASSNAMEA : => [NativeEncoding(ansi)] +STDOLE_TLB : => [NativeEncoding(ansi)] +STDTYPE_TLB : => [NativeEncoding(ansi)] +STI_ADD_DEVICE_BROADCAST_ACTION : => [NativeEncoding(ansi)] +STI_ADD_DEVICE_BROADCAST_STRING : => [NativeEncoding(ansi)] +STI_DEVICE_VALUE_DEFAULT_LAUNCHAPP_A : => [NativeEncoding(ansi)] +STI_DEVICE_VALUE_DISABLE_NOTIFICATIONS_A : => [NativeEncoding(ansi)] +STI_DEVICE_VALUE_ICM_PROFILE_A : => [NativeEncoding(ansi)] +STI_DEVICE_VALUE_ISIS_NAME_A : => [NativeEncoding(ansi)] +STI_DEVICE_VALUE_TIMEOUT_A : => [NativeEncoding(ansi)] +STI_DEVICE_VALUE_TWAIN_NAME_A : => [NativeEncoding(ansi)] +STI_REMOVE_DEVICE_BROADCAST_ACTION : => [NativeEncoding(ansi)] +STI_REMOVE_DEVICE_BROADCAST_STRING : => [NativeEncoding(ansi)] +STR_ADDR_FMTA : => [NativeEncoding(ansi)] +STR_ADDR_SHORT_FMTA : => [NativeEncoding(ansi)] +STR_MYDOCS_CLSID : => [NativeEncoding(ansi)] +STR_USBHCI_CLASS_HARDWAREIDA : => [NativeEncoding(ansi)] +struuidNodetypeSceAnalysisServices : => [NativeEncoding(ansi)] +struuidNodetypeSceEventLog : => [NativeEncoding(ansi)] +struuidNodetypeSceTemplateServices : => [NativeEncoding(ansi)] +sz_CERT_STORE_PROV_COLLECTION : => [NativeEncoding(ansi)] +sz_CERT_STORE_PROV_FILENAME_W : => [NativeEncoding(ansi)] +sz_CERT_STORE_PROV_LDAP_W : => [NativeEncoding(ansi)] +sz_CERT_STORE_PROV_MEMORY : => [NativeEncoding(ansi)] +sz_CERT_STORE_PROV_PHYSICAL_W : => [NativeEncoding(ansi)] +sz_CERT_STORE_PROV_PKCS12 : => [NativeEncoding(ansi)] +sz_CERT_STORE_PROV_PKCS7 : => [NativeEncoding(ansi)] +sz_CERT_STORE_PROV_SERIALIZED : => [NativeEncoding(ansi)] +sz_CERT_STORE_PROV_SMART_CARD_W : => [NativeEncoding(ansi)] +sz_CERT_STORE_PROV_SYSTEM_REGISTRY_W : => [NativeEncoding(ansi)] +sz_CERT_STORE_PROV_SYSTEM_W : => [NativeEncoding(ansi)] +SZ_CONTENTTYPE_CDFA : => [NativeEncoding(ansi)] +SZ_CONTENTTYPE_HTMLA : => [NativeEncoding(ansi)] +SZ_IE_DEFAULT_HTML_EDITOR : => [NativeEncoding(ansi)] +SZ_IE_IBAR : => [NativeEncoding(ansi)] +SZ_IE_IBAR_BANDS : => [NativeEncoding(ansi)] +SZ_IE_MAIN : => [NativeEncoding(ansi)] +SZ_IE_SEARCHSTRINGS : => [NativeEncoding(ansi)] +SZ_IE_SECURITY : => [NativeEncoding(ansi)] +SZ_IE_SETTINGS : => [NativeEncoding(ansi)] +SZ_IE_THRESHOLDS : => [NativeEncoding(ansi)] +SZ_PROGID_SMTPCAT : => [NativeEncoding(ansi)] +SZBACKBITMAP : => [NativeEncoding(ansi)] +szBACKUPANNOTATION : => [NativeEncoding(ansi)] +szCERT_CERTIFICATE_ACTION_VERIFY : => [NativeEncoding(ansi)] +szDBBASENAMEPARM : => [NativeEncoding(ansi)] +szFORCE_KEY_PROTECTION : => [NativeEncoding(ansi)] +szHrDispatchNotifications : => [NativeEncoding(ansi)] +SZJAVAVMPATH : => [NativeEncoding(ansi)] +szKEY_CACHE_ENABLED : => [NativeEncoding(ansi)] +szKEY_CACHE_SECONDS : => [NativeEncoding(ansi)] +szKEY_CRYPTOAPI_PRIVATE_KEY_OPTIONS : => [NativeEncoding(ansi)] +szLBRACE : => [NativeEncoding(ansi)] +szLPAREN : => [NativeEncoding(ansi)] +szMAPINotificationMsg : => [NativeEncoding(ansi)] +szNAMESEPARATORDEFAULT : => [NativeEncoding(ansi)] +SZNOTEXT : => [NativeEncoding(ansi)] +szOID_ANSI_X942 : => [NativeEncoding(ansi)] +szOID_ANSI_X942_DH : => [NativeEncoding(ansi)] +szOID_ANY_APPLICATION_POLICY : => [NativeEncoding(ansi)] +szOID_ANY_CERT_POLICY : => [NativeEncoding(ansi)] +szOID_ANY_ENHANCED_KEY_USAGE : => [NativeEncoding(ansi)] +szOID_APPLICATION_CERT_POLICIES : => [NativeEncoding(ansi)] +szOID_APPLICATION_POLICY_CONSTRAINTS : => [NativeEncoding(ansi)] +szOID_APPLICATION_POLICY_MAPPINGS : => [NativeEncoding(ansi)] +szOID_ARCHIVED_KEY_ATTR : => [NativeEncoding(ansi)] +szOID_ARCHIVED_KEY_CERT_HASH : => [NativeEncoding(ansi)] +szOID_ATTEST_WHQL_CRYPTO : => [NativeEncoding(ansi)] +szOID_ATTR_PLATFORM_SPECIFICATION : => [NativeEncoding(ansi)] +szOID_ATTR_SUPPORTED_ALGORITHMS : => [NativeEncoding(ansi)] +szOID_ATTR_TPM_SECURITY_ASSERTIONS : => [NativeEncoding(ansi)] +szOID_ATTR_TPM_SPECIFICATION : => [NativeEncoding(ansi)] +szOID_AUTHORITY_INFO_ACCESS : => [NativeEncoding(ansi)] +szOID_AUTHORITY_KEY_IDENTIFIER : => [NativeEncoding(ansi)] +szOID_AUTHORITY_KEY_IDENTIFIER2 : => [NativeEncoding(ansi)] +szOID_AUTHORITY_REVOCATION_LIST : => [NativeEncoding(ansi)] +szOID_AUTO_ENROLL_CTL_USAGE : => [NativeEncoding(ansi)] +szOID_BACKGROUND_OTHER_LOGOTYPE : => [NativeEncoding(ansi)] +szOID_BASIC_CONSTRAINTS : => [NativeEncoding(ansi)] +szOID_BASIC_CONSTRAINTS2 : => [NativeEncoding(ansi)] +szOID_BIOMETRIC_EXT : => [NativeEncoding(ansi)] +szOID_BIOMETRIC_SIGNING : => [NativeEncoding(ansi)] +szOID_BUSINESS_CATEGORY : => [NativeEncoding(ansi)] +szOID_CA_CERTIFICATE : => [NativeEncoding(ansi)] +szOID_CATALOG_LIST : => [NativeEncoding(ansi)] +szOID_CATALOG_LIST_MEMBER : => [NativeEncoding(ansi)] +szOID_CATALOG_LIST_MEMBER2 : => [NativeEncoding(ansi)] +szOID_CERT_DISALLOWED_FILETIME_PROP_ID : => [NativeEncoding(ansi)] +szOID_CERT_EXTENSIONS : => [NativeEncoding(ansi)] +szOID_CERT_ISSUER_SERIAL_NUMBER_MD5_HASH_PROP_ID : => [NativeEncoding(ansi)] +szOID_CERT_KEY_IDENTIFIER_PROP_ID : => [NativeEncoding(ansi)] +szOID_CERT_MANIFOLD : => [NativeEncoding(ansi)] +szOID_CERT_MD5_HASH_PROP_ID : => [NativeEncoding(ansi)] +szOID_CERT_POLICIES : => [NativeEncoding(ansi)] +szOID_CERT_POLICIES_95 : => [NativeEncoding(ansi)] +szOID_CERT_POLICIES_95_QUALIFIER1 : => [NativeEncoding(ansi)] +szOID_CERT_PROP_ID_PREFIX : => [NativeEncoding(ansi)] +szOID_CERT_SIGNATURE_HASH_PROP_ID : => [NativeEncoding(ansi)] +szOID_CERT_STRONG_KEY_OS_1 : => [NativeEncoding(ansi)] +szOID_CERT_STRONG_KEY_OS_PREFIX : => [NativeEncoding(ansi)] +szOID_CERT_STRONG_SIGN_OS_1 : => [NativeEncoding(ansi)] +szOID_CERT_STRONG_SIGN_OS_PREFIX : => [NativeEncoding(ansi)] +szOID_CERT_SUBJECT_NAME_MD5_HASH_PROP_ID : => [NativeEncoding(ansi)] +szOID_CERTIFICATE_REVOCATION_LIST : => [NativeEncoding(ansi)] +szOID_CERTIFICATE_TEMPLATE : => [NativeEncoding(ansi)] +szOID_CERTSRV_CA_VERSION : => [NativeEncoding(ansi)] +szOID_CERTSRV_CROSSCA_VERSION : => [NativeEncoding(ansi)] +szOID_CERTSRV_PREVIOUS_CERT_HASH : => [NativeEncoding(ansi)] +szOID_CMC : => [NativeEncoding(ansi)] +szOID_CMC_ADD_ATTRIBUTES : => [NativeEncoding(ansi)] +szOID_CMC_ADD_EXTENSIONS : => [NativeEncoding(ansi)] +szOID_CMC_DATA_RETURN : => [NativeEncoding(ansi)] +szOID_CMC_DECRYPTED_POP : => [NativeEncoding(ansi)] +szOID_CMC_ENCRYPTED_POP : => [NativeEncoding(ansi)] +szOID_CMC_GET_CERT : => [NativeEncoding(ansi)] +szOID_CMC_GET_CRL : => [NativeEncoding(ansi)] +szOID_CMC_ID_CONFIRM_CERT_ACCEPTANCE : => [NativeEncoding(ansi)] +szOID_CMC_ID_POP_LINK_RANDOM : => [NativeEncoding(ansi)] +szOID_CMC_ID_POP_LINK_WITNESS : => [NativeEncoding(ansi)] +szOID_CMC_IDENTIFICATION : => [NativeEncoding(ansi)] +szOID_CMC_IDENTITY_PROOF : => [NativeEncoding(ansi)] +szOID_CMC_LRA_POP_WITNESS : => [NativeEncoding(ansi)] +szOID_CMC_QUERY_PENDING : => [NativeEncoding(ansi)] +szOID_CMC_RECIPIENT_NONCE : => [NativeEncoding(ansi)] +szOID_CMC_REG_INFO : => [NativeEncoding(ansi)] +szOID_CMC_RESPONSE_INFO : => [NativeEncoding(ansi)] +szOID_CMC_REVOKE_REQUEST : => [NativeEncoding(ansi)] +szOID_CMC_SENDER_NONCE : => [NativeEncoding(ansi)] +szOID_CMC_STATUS_INFO : => [NativeEncoding(ansi)] +szOID_CMC_TRANSACTION_ID : => [NativeEncoding(ansi)] +szOID_CN_ECDSA_SHA256 : => [NativeEncoding(ansi)] +szOID_COMMON_NAME : => [NativeEncoding(ansi)] +szOID_COUNTRY_NAME : => [NativeEncoding(ansi)] +szOID_CRL_DIST_POINTS : => [NativeEncoding(ansi)] +szOID_CRL_NEXT_PUBLISH : => [NativeEncoding(ansi)] +szOID_CRL_NUMBER : => [NativeEncoding(ansi)] +szOID_CRL_REASON_CODE : => [NativeEncoding(ansi)] +szOID_CRL_SELF_CDP : => [NativeEncoding(ansi)] +szOID_CRL_VIRTUAL_BASE : => [NativeEncoding(ansi)] +szOID_CROSS_CERT_DIST_POINTS : => [NativeEncoding(ansi)] +szOID_CROSS_CERTIFICATE_PAIR : => [NativeEncoding(ansi)] +szOID_CT_CERT_SCTLIST : => [NativeEncoding(ansi)] +szOID_CT_PKI_DATA : => [NativeEncoding(ansi)] +szOID_CT_PKI_RESPONSE : => [NativeEncoding(ansi)] +szOID_CTL : => [NativeEncoding(ansi)] +szOID_DELTA_CRL_INDICATOR : => [NativeEncoding(ansi)] +szOID_DESCRIPTION : => [NativeEncoding(ansi)] +szOID_DESTINATION_INDICATOR : => [NativeEncoding(ansi)] +szOID_DEVICE_SERIAL_NUMBER : => [NativeEncoding(ansi)] +szOID_DH_SINGLE_PASS_STDDH_SHA1_KDF : => [NativeEncoding(ansi)] +szOID_DH_SINGLE_PASS_STDDH_SHA256_KDF : => [NativeEncoding(ansi)] +szOID_DH_SINGLE_PASS_STDDH_SHA384_KDF : => [NativeEncoding(ansi)] +szOID_DISALLOWED_LIST : => [NativeEncoding(ansi)] +szOID_DN_QUALIFIER : => [NativeEncoding(ansi)] +szOID_DOMAIN_COMPONENT : => [NativeEncoding(ansi)] +szOID_DRM : => [NativeEncoding(ansi)] +szOID_DRM_INDIVIDUALIZATION : => [NativeEncoding(ansi)] +szOID_DS : => [NativeEncoding(ansi)] +szOID_DS_EMAIL_REPLICATION : => [NativeEncoding(ansi)] +szOID_DSALG : => [NativeEncoding(ansi)] +szOID_DSALG_CRPT : => [NativeEncoding(ansi)] +szOID_DSALG_HASH : => [NativeEncoding(ansi)] +szOID_DSALG_RSA : => [NativeEncoding(ansi)] +szOID_DSALG_SIGN : => [NativeEncoding(ansi)] +szOID_DYNAMIC_CODE_GEN_SIGNER : => [NativeEncoding(ansi)] +szOID_ECC_CURVE_BRAINPOOLP160R1 : => [NativeEncoding(ansi)] +szOID_ECC_CURVE_BRAINPOOLP160T1 : => [NativeEncoding(ansi)] +szOID_ECC_CURVE_BRAINPOOLP192R1 : => [NativeEncoding(ansi)] +szOID_ECC_CURVE_BRAINPOOLP192T1 : => [NativeEncoding(ansi)] +szOID_ECC_CURVE_BRAINPOOLP224R1 : => [NativeEncoding(ansi)] +szOID_ECC_CURVE_BRAINPOOLP224T1 : => [NativeEncoding(ansi)] +szOID_ECC_CURVE_BRAINPOOLP256R1 : => [NativeEncoding(ansi)] +szOID_ECC_CURVE_BRAINPOOLP256T1 : => [NativeEncoding(ansi)] +szOID_ECC_CURVE_BRAINPOOLP320R1 : => [NativeEncoding(ansi)] +szOID_ECC_CURVE_BRAINPOOLP320T1 : => [NativeEncoding(ansi)] +szOID_ECC_CURVE_BRAINPOOLP384R1 : => [NativeEncoding(ansi)] +szOID_ECC_CURVE_BRAINPOOLP384T1 : => [NativeEncoding(ansi)] +szOID_ECC_CURVE_BRAINPOOLP512R1 : => [NativeEncoding(ansi)] +szOID_ECC_CURVE_BRAINPOOLP512T1 : => [NativeEncoding(ansi)] +szOID_ECC_CURVE_EC192WAPI : => [NativeEncoding(ansi)] +szOID_ECC_CURVE_NISTP192 : => [NativeEncoding(ansi)] +szOID_ECC_CURVE_NISTP224 : => [NativeEncoding(ansi)] +szOID_ECC_CURVE_P256 : => [NativeEncoding(ansi)] +szOID_ECC_CURVE_P384 : => [NativeEncoding(ansi)] +szOID_ECC_CURVE_P521 : => [NativeEncoding(ansi)] +szOID_ECC_CURVE_SECP160K1 : => [NativeEncoding(ansi)] +szOID_ECC_CURVE_SECP160R1 : => [NativeEncoding(ansi)] +szOID_ECC_CURVE_SECP160R2 : => [NativeEncoding(ansi)] +szOID_ECC_CURVE_SECP192K1 : => [NativeEncoding(ansi)] +szOID_ECC_CURVE_SECP224K1 : => [NativeEncoding(ansi)] +szOID_ECC_CURVE_SECP256K1 : => [NativeEncoding(ansi)] +szOID_ECC_CURVE_WTLS9 : => [NativeEncoding(ansi)] +szOID_ECC_CURVE_X962P192V1 : => [NativeEncoding(ansi)] +szOID_ECC_CURVE_X962P192V2 : => [NativeEncoding(ansi)] +szOID_ECC_CURVE_X962P192V3 : => [NativeEncoding(ansi)] +szOID_ECC_CURVE_X962P239V1 : => [NativeEncoding(ansi)] +szOID_ECC_CURVE_X962P239V2 : => [NativeEncoding(ansi)] +szOID_ECC_CURVE_X962P239V3 : => [NativeEncoding(ansi)] +szOID_ECC_PUBLIC_KEY : => [NativeEncoding(ansi)] +szOID_ECDSA_SHA1 : => [NativeEncoding(ansi)] +szOID_ECDSA_SHA256 : => [NativeEncoding(ansi)] +szOID_ECDSA_SHA384 : => [NativeEncoding(ansi)] +szOID_ECDSA_SHA512 : => [NativeEncoding(ansi)] +szOID_ECDSA_SPECIFIED : => [NativeEncoding(ansi)] +szOID_EFS_RECOVERY : => [NativeEncoding(ansi)] +szOID_EMBEDDED_NT_CRYPTO : => [NativeEncoding(ansi)] +szOID_ENCLAVE_SIGNING : => [NativeEncoding(ansi)] +szOID_ENCRYPTED_KEY_HASH : => [NativeEncoding(ansi)] +szOID_ENHANCED_HASH : => [NativeEncoding(ansi)] +szOID_ENHANCED_KEY_USAGE : => [NativeEncoding(ansi)] +szOID_ENROLL_AIK_INFO : => [NativeEncoding(ansi)] +szOID_ENROLL_ATTESTATION_CHALLENGE : => [NativeEncoding(ansi)] +szOID_ENROLL_ATTESTATION_STATEMENT : => [NativeEncoding(ansi)] +szOID_ENROLL_CAXCHGCERT_HASH : => [NativeEncoding(ansi)] +szOID_ENROLL_CERTTYPE_EXTENSION : => [NativeEncoding(ansi)] +szOID_ENROLL_EK_CA_KEYID : => [NativeEncoding(ansi)] +szOID_ENROLL_EK_INFO : => [NativeEncoding(ansi)] +szOID_ENROLL_EKPUB_CHALLENGE : => [NativeEncoding(ansi)] +szOID_ENROLL_EKVERIFYCERT : => [NativeEncoding(ansi)] +szOID_ENROLL_EKVERIFYCREDS : => [NativeEncoding(ansi)] +szOID_ENROLL_EKVERIFYKEY : => [NativeEncoding(ansi)] +szOID_ENROLL_ENCRYPTION_ALGORITHM : => [NativeEncoding(ansi)] +szOID_ENROLL_KEY_AFFINITY : => [NativeEncoding(ansi)] +szOID_ENROLL_KSP_NAME : => [NativeEncoding(ansi)] +szOID_ENROLL_SCEP_CHALLENGE_ANSWER : => [NativeEncoding(ansi)] +szOID_ENROLL_SCEP_CLIENT_REQUEST : => [NativeEncoding(ansi)] +szOID_ENROLL_SCEP_ERROR : => [NativeEncoding(ansi)] +szOID_ENROLL_SCEP_SERVER_MESSAGE : => [NativeEncoding(ansi)] +szOID_ENROLL_SCEP_SERVER_SECRET : => [NativeEncoding(ansi)] +szOID_ENROLL_SCEP_SERVER_STATE : => [NativeEncoding(ansi)] +szOID_ENROLL_SCEP_SIGNER_HASH : => [NativeEncoding(ansi)] +szOID_ENROLLMENT_AGENT : => [NativeEncoding(ansi)] +szOID_ENROLLMENT_CSP_PROVIDER : => [NativeEncoding(ansi)] +szOID_ENROLLMENT_NAME_VALUE_PAIR : => [NativeEncoding(ansi)] +szOID_ENTERPRISE_OID_ROOT : => [NativeEncoding(ansi)] +szOID_EV_RDN_COUNTRY : => [NativeEncoding(ansi)] +szOID_EV_RDN_LOCALE : => [NativeEncoding(ansi)] +szOID_EV_RDN_STATE_OR_PROVINCE : => [NativeEncoding(ansi)] +szOID_EV_WHQL_CRYPTO : => [NativeEncoding(ansi)] +szOID_FACSIMILE_TELEPHONE_NUMBER : => [NativeEncoding(ansi)] +szOID_FRESHEST_CRL : => [NativeEncoding(ansi)] +szOID_GIVEN_NAME : => [NativeEncoding(ansi)] +szOID_HPKP_DOMAIN_NAME_CTL : => [NativeEncoding(ansi)] +szOID_HPKP_HEADER_VALUE_CTL : => [NativeEncoding(ansi)] +szOID_INFOSEC : => [NativeEncoding(ansi)] +szOID_INFOSEC_mosaicConfidentiality : => [NativeEncoding(ansi)] +szOID_INFOSEC_mosaicIntegrity : => [NativeEncoding(ansi)] +szOID_INFOSEC_mosaicKeyManagement : => [NativeEncoding(ansi)] +szOID_INFOSEC_mosaicKMandSig : => [NativeEncoding(ansi)] +szOID_INFOSEC_mosaicKMandUpdSig : => [NativeEncoding(ansi)] +szOID_INFOSEC_mosaicSignature : => [NativeEncoding(ansi)] +szOID_INFOSEC_mosaicTokenProtection : => [NativeEncoding(ansi)] +szOID_INFOSEC_mosaicUpdatedInteg : => [NativeEncoding(ansi)] +szOID_INFOSEC_mosaicUpdatedSig : => [NativeEncoding(ansi)] +szOID_INFOSEC_sdnsConfidentiality : => [NativeEncoding(ansi)] +szOID_INFOSEC_sdnsIntegrity : => [NativeEncoding(ansi)] +szOID_INFOSEC_sdnsKeyManagement : => [NativeEncoding(ansi)] +szOID_INFOSEC_sdnsKMandSig : => [NativeEncoding(ansi)] +szOID_INFOSEC_sdnsSignature : => [NativeEncoding(ansi)] +szOID_INFOSEC_sdnsTokenProtection : => [NativeEncoding(ansi)] +szOID_INFOSEC_SuiteAConfidentiality : => [NativeEncoding(ansi)] +szOID_INFOSEC_SuiteAIntegrity : => [NativeEncoding(ansi)] +szOID_INFOSEC_SuiteAKeyManagement : => [NativeEncoding(ansi)] +szOID_INFOSEC_SuiteAKMandSig : => [NativeEncoding(ansi)] +szOID_INFOSEC_SuiteASignature : => [NativeEncoding(ansi)] +szOID_INFOSEC_SuiteATokenProtection : => [NativeEncoding(ansi)] +szOID_INHIBIT_ANY_POLICY : => [NativeEncoding(ansi)] +szOID_INITIALS : => [NativeEncoding(ansi)] +szOID_INTENT_TO_SEAL : => [NativeEncoding(ansi)] +szOID_INTERNATIONAL_ISDN_NUMBER : => [NativeEncoding(ansi)] +szOID_INTERNATIONALIZED_EMAIL_ADDRESS : => [NativeEncoding(ansi)] +szOID_IPSEC_KP_IKE_INTERMEDIATE : => [NativeEncoding(ansi)] +szOID_ISSUED_CERT_HASH : => [NativeEncoding(ansi)] +szOID_ISSUER_ALT_NAME : => [NativeEncoding(ansi)] +szOID_ISSUER_ALT_NAME2 : => [NativeEncoding(ansi)] +szOID_ISSUING_DIST_POINT : => [NativeEncoding(ansi)] +szOID_IUM_SIGNING : => [NativeEncoding(ansi)] +szOID_KEY_ATTRIBUTES : => [NativeEncoding(ansi)] +szOID_KEY_USAGE : => [NativeEncoding(ansi)] +szOID_KEY_USAGE_RESTRICTION : => [NativeEncoding(ansi)] +szOID_KEYID_RDN : => [NativeEncoding(ansi)] +szOID_KP_CA_EXCHANGE : => [NativeEncoding(ansi)] +szOID_KP_CSP_SIGNATURE : => [NativeEncoding(ansi)] +szOID_KP_CTL_USAGE_SIGNING : => [NativeEncoding(ansi)] +szOID_KP_DOCUMENT_SIGNING : => [NativeEncoding(ansi)] +szOID_KP_EFS : => [NativeEncoding(ansi)] +szOID_KP_FLIGHT_SIGNING : => [NativeEncoding(ansi)] +szOID_KP_KERNEL_MODE_CODE_SIGNING : => [NativeEncoding(ansi)] +szOID_KP_KERNEL_MODE_HAL_EXTENSION_SIGNING : => [NativeEncoding(ansi)] +szOID_KP_KERNEL_MODE_TRUSTED_BOOT_SIGNING : => [NativeEncoding(ansi)] +szOID_KP_KEY_RECOVERY : => [NativeEncoding(ansi)] +szOID_KP_KEY_RECOVERY_AGENT : => [NativeEncoding(ansi)] +szOID_KP_LIFETIME_SIGNING : => [NativeEncoding(ansi)] +szOID_KP_MOBILE_DEVICE_SOFTWARE : => [NativeEncoding(ansi)] +szOID_KP_PRIVACY_CA : => [NativeEncoding(ansi)] +szOID_KP_QUALIFIED_SUBORDINATION : => [NativeEncoding(ansi)] +szOID_KP_SMART_DISPLAY : => [NativeEncoding(ansi)] +szOID_KP_SMARTCARD_LOGON : => [NativeEncoding(ansi)] +szOID_KP_TIME_STAMP_SIGNING : => [NativeEncoding(ansi)] +szOID_KP_TPM_AIK_CERTIFICATE : => [NativeEncoding(ansi)] +szOID_KP_TPM_EK_CERTIFICATE : => [NativeEncoding(ansi)] +szOID_KP_TPM_PLATFORM_CERTIFICATE : => [NativeEncoding(ansi)] +szOID_LEGACY_POLICY_MAPPINGS : => [NativeEncoding(ansi)] +szOID_LICENSE_SERVER : => [NativeEncoding(ansi)] +szOID_LICENSES : => [NativeEncoding(ansi)] +szOID_LOCAL_MACHINE_KEYSET : => [NativeEncoding(ansi)] +szOID_LOCALITY_NAME : => [NativeEncoding(ansi)] +szOID_LOGOTYPE_EXT : => [NativeEncoding(ansi)] +szOID_LOYALTY_OTHER_LOGOTYPE : => [NativeEncoding(ansi)] +szOID_MEMBER : => [NativeEncoding(ansi)] +szOID_MICROSOFT_PUBLISHER_SIGNER : => [NativeEncoding(ansi)] +szOID_NAME_CONSTRAINTS : => [NativeEncoding(ansi)] +szOID_NESTED_SIGNATURE : => [NativeEncoding(ansi)] +szOID_NETSCAPE : => [NativeEncoding(ansi)] +szOID_NETSCAPE_BASE_URL : => [NativeEncoding(ansi)] +szOID_NETSCAPE_CA_POLICY_URL : => [NativeEncoding(ansi)] +szOID_NETSCAPE_CA_REVOCATION_URL : => [NativeEncoding(ansi)] +szOID_NETSCAPE_CERT_EXTENSION : => [NativeEncoding(ansi)] +szOID_NETSCAPE_CERT_RENEWAL_URL : => [NativeEncoding(ansi)] +szOID_NETSCAPE_CERT_SEQUENCE : => [NativeEncoding(ansi)] +szOID_NETSCAPE_CERT_TYPE : => [NativeEncoding(ansi)] +szOID_NETSCAPE_COMMENT : => [NativeEncoding(ansi)] +szOID_NETSCAPE_DATA_TYPE : => [NativeEncoding(ansi)] +szOID_NETSCAPE_REVOCATION_URL : => [NativeEncoding(ansi)] +szOID_NETSCAPE_SSL_SERVER_NAME : => [NativeEncoding(ansi)] +szOID_NEXT_UPDATE_LOCATION : => [NativeEncoding(ansi)] +szOID_NIST_AES128_CBC : => [NativeEncoding(ansi)] +szOID_NIST_AES128_WRAP : => [NativeEncoding(ansi)] +szOID_NIST_AES192_CBC : => [NativeEncoding(ansi)] +szOID_NIST_AES192_WRAP : => [NativeEncoding(ansi)] +szOID_NIST_AES256_CBC : => [NativeEncoding(ansi)] +szOID_NIST_AES256_WRAP : => [NativeEncoding(ansi)] +szOID_NIST_sha256 : => [NativeEncoding(ansi)] +szOID_NIST_sha384 : => [NativeEncoding(ansi)] +szOID_NIST_sha512 : => [NativeEncoding(ansi)] +szOID_NT_PRINCIPAL_NAME : => [NativeEncoding(ansi)] +szOID_NT5_CRYPTO : => [NativeEncoding(ansi)] +szOID_NTDS_REPLICATION : => [NativeEncoding(ansi)] +szOID_OEM_WHQL_CRYPTO : => [NativeEncoding(ansi)] +szOID_OIW : => [NativeEncoding(ansi)] +szOID_OIWDIR : => [NativeEncoding(ansi)] +szOID_OIWDIR_CRPT : => [NativeEncoding(ansi)] +szOID_OIWDIR_HASH : => [NativeEncoding(ansi)] +szOID_OIWDIR_md2 : => [NativeEncoding(ansi)] +szOID_OIWDIR_md2RSA : => [NativeEncoding(ansi)] +szOID_OIWDIR_SIGN : => [NativeEncoding(ansi)] +szOID_OIWSEC : => [NativeEncoding(ansi)] +szOID_OIWSEC_desCBC : => [NativeEncoding(ansi)] +szOID_OIWSEC_desCFB : => [NativeEncoding(ansi)] +szOID_OIWSEC_desECB : => [NativeEncoding(ansi)] +szOID_OIWSEC_desEDE : => [NativeEncoding(ansi)] +szOID_OIWSEC_desMAC : => [NativeEncoding(ansi)] +szOID_OIWSEC_desOFB : => [NativeEncoding(ansi)] +szOID_OIWSEC_dhCommMod : => [NativeEncoding(ansi)] +szOID_OIWSEC_dsa : => [NativeEncoding(ansi)] +szOID_OIWSEC_dsaComm : => [NativeEncoding(ansi)] +szOID_OIWSEC_dsaCommSHA : => [NativeEncoding(ansi)] +szOID_OIWSEC_dsaCommSHA1 : => [NativeEncoding(ansi)] +szOID_OIWSEC_dsaSHA1 : => [NativeEncoding(ansi)] +szOID_OIWSEC_keyHashSeal : => [NativeEncoding(ansi)] +szOID_OIWSEC_md2RSASign : => [NativeEncoding(ansi)] +szOID_OIWSEC_md4RSA : => [NativeEncoding(ansi)] +szOID_OIWSEC_md4RSA2 : => [NativeEncoding(ansi)] +szOID_OIWSEC_md5RSA : => [NativeEncoding(ansi)] +szOID_OIWSEC_md5RSASign : => [NativeEncoding(ansi)] +szOID_OIWSEC_mdc2 : => [NativeEncoding(ansi)] +szOID_OIWSEC_mdc2RSA : => [NativeEncoding(ansi)] +szOID_OIWSEC_rsaSign : => [NativeEncoding(ansi)] +szOID_OIWSEC_rsaXchg : => [NativeEncoding(ansi)] +szOID_OIWSEC_sha : => [NativeEncoding(ansi)] +szOID_OIWSEC_sha1 : => [NativeEncoding(ansi)] +szOID_OIWSEC_sha1RSASign : => [NativeEncoding(ansi)] +szOID_OIWSEC_shaDSA : => [NativeEncoding(ansi)] +szOID_OIWSEC_shaRSA : => [NativeEncoding(ansi)] +szOID_ORGANIZATION_NAME : => [NativeEncoding(ansi)] +szOID_ORGANIZATIONAL_UNIT_NAME : => [NativeEncoding(ansi)] +szOID_OS_VERSION : => [NativeEncoding(ansi)] +szOID_OWNER : => [NativeEncoding(ansi)] +szOID_PHYSICAL_DELIVERY_OFFICE_NAME : => [NativeEncoding(ansi)] +szOID_PIN_RULES_CTL : => [NativeEncoding(ansi)] +szOID_PIN_RULES_DOMAIN_NAME : => [NativeEncoding(ansi)] +szOID_PIN_RULES_EXT : => [NativeEncoding(ansi)] +szOID_PIN_RULES_LOG_END_DATE_EXT : => [NativeEncoding(ansi)] +szOID_PIN_RULES_SIGNER : => [NativeEncoding(ansi)] +szOID_PKCS : => [NativeEncoding(ansi)] +szOID_PKCS_1 : => [NativeEncoding(ansi)] +szOID_PKCS_10 : => [NativeEncoding(ansi)] +szOID_PKCS_12 : => [NativeEncoding(ansi)] +szOID_PKCS_12_EXTENDED_ATTRIBUTES : => [NativeEncoding(ansi)] +szOID_PKCS_12_FRIENDLY_NAME_ATTR : => [NativeEncoding(ansi)] +szOID_PKCS_12_KEY_PROVIDER_NAME_ATTR : => [NativeEncoding(ansi)] +szOID_PKCS_12_LOCAL_KEY_ID : => [NativeEncoding(ansi)] +szOID_PKCS_12_PbeIds : => [NativeEncoding(ansi)] +szOID_PKCS_12_pbeWithSHA1And128BitRC2 : => [NativeEncoding(ansi)] +szOID_PKCS_12_pbeWithSHA1And128BitRC4 : => [NativeEncoding(ansi)] +szOID_PKCS_12_pbeWithSHA1And2KeyTripleDES : => [NativeEncoding(ansi)] +szOID_PKCS_12_pbeWithSHA1And3KeyTripleDES : => [NativeEncoding(ansi)] +szOID_PKCS_12_pbeWithSHA1And40BitRC2 : => [NativeEncoding(ansi)] +szOID_PKCS_12_pbeWithSHA1And40BitRC4 : => [NativeEncoding(ansi)] +szOID_PKCS_12_PROTECTED_PASSWORD_SECRET_BAG_TYPE_ID : => [NativeEncoding(ansi)] +szOID_PKCS_2 : => [NativeEncoding(ansi)] +szOID_PKCS_3 : => [NativeEncoding(ansi)] +szOID_PKCS_4 : => [NativeEncoding(ansi)] +szOID_PKCS_5 : => [NativeEncoding(ansi)] +szOID_PKCS_5_PBES2 : => [NativeEncoding(ansi)] +szOID_PKCS_5_PBKDF2 : => [NativeEncoding(ansi)] +szOID_PKCS_6 : => [NativeEncoding(ansi)] +szOID_PKCS_7 : => [NativeEncoding(ansi)] +szOID_PKCS_7_DATA : => [NativeEncoding(ansi)] +szOID_PKCS_7_DIGESTED : => [NativeEncoding(ansi)] +szOID_PKCS_7_ENCRYPTED : => [NativeEncoding(ansi)] +szOID_PKCS_7_ENVELOPED : => [NativeEncoding(ansi)] +szOID_PKCS_7_SIGNED : => [NativeEncoding(ansi)] +szOID_PKCS_7_SIGNEDANDENVELOPED : => [NativeEncoding(ansi)] +szOID_PKCS_8 : => [NativeEncoding(ansi)] +szOID_PKCS_9 : => [NativeEncoding(ansi)] +szOID_PKCS_9_CONTENT_TYPE : => [NativeEncoding(ansi)] +szOID_PKCS_9_MESSAGE_DIGEST : => [NativeEncoding(ansi)] +szOID_PKCS_9_SEQUENCE_NUMBER : => [NativeEncoding(ansi)] +szOID_PKINIT_KP_KDC : => [NativeEncoding(ansi)] +szOID_PKIX : => [NativeEncoding(ansi)] +szOID_PKIX_ACC_DESCR : => [NativeEncoding(ansi)] +szOID_PKIX_CA_ISSUERS : => [NativeEncoding(ansi)] +szOID_PKIX_CA_REPOSITORY : => [NativeEncoding(ansi)] +szOID_PKIX_KP : => [NativeEncoding(ansi)] +szOID_PKIX_KP_CLIENT_AUTH : => [NativeEncoding(ansi)] +szOID_PKIX_KP_CODE_SIGNING : => [NativeEncoding(ansi)] +szOID_PKIX_KP_EMAIL_PROTECTION : => [NativeEncoding(ansi)] +szOID_PKIX_KP_IPSEC_END_SYSTEM : => [NativeEncoding(ansi)] +szOID_PKIX_KP_IPSEC_TUNNEL : => [NativeEncoding(ansi)] +szOID_PKIX_KP_IPSEC_USER : => [NativeEncoding(ansi)] +szOID_PKIX_KP_OCSP_SIGNING : => [NativeEncoding(ansi)] +szOID_PKIX_KP_SERVER_AUTH : => [NativeEncoding(ansi)] +szOID_PKIX_KP_TIMESTAMP_SIGNING : => [NativeEncoding(ansi)] +szOID_PKIX_NO_SIGNATURE : => [NativeEncoding(ansi)] +szOID_PKIX_OCSP : => [NativeEncoding(ansi)] +szOID_PKIX_OCSP_BASIC_SIGNED_RESPONSE : => [NativeEncoding(ansi)] +szOID_PKIX_OCSP_NOCHECK : => [NativeEncoding(ansi)] +szOID_PKIX_OCSP_NONCE : => [NativeEncoding(ansi)] +szOID_PKIX_PE : => [NativeEncoding(ansi)] +szOID_PKIX_POLICY_QUALIFIER_CPS : => [NativeEncoding(ansi)] +szOID_PKIX_POLICY_QUALIFIER_USERNOTICE : => [NativeEncoding(ansi)] +szOID_PKIX_TIME_STAMPING : => [NativeEncoding(ansi)] +szOID_PLATFORM_MANIFEST_BINARY_ID : => [NativeEncoding(ansi)] +szOID_POLICY_CONSTRAINTS : => [NativeEncoding(ansi)] +szOID_POLICY_MAPPINGS : => [NativeEncoding(ansi)] +szOID_POST_OFFICE_BOX : => [NativeEncoding(ansi)] +szOID_POSTAL_ADDRESS : => [NativeEncoding(ansi)] +szOID_POSTAL_CODE : => [NativeEncoding(ansi)] +szOID_PREFERRED_DELIVERY_METHOD : => [NativeEncoding(ansi)] +szOID_PRESENTATION_ADDRESS : => [NativeEncoding(ansi)] +szOID_PRIVATEKEY_USAGE_PERIOD : => [NativeEncoding(ansi)] +szOID_PRODUCT_UPDATE : => [NativeEncoding(ansi)] +szOID_PROTECTED_PROCESS_LIGHT_SIGNER : => [NativeEncoding(ansi)] +szOID_PROTECTED_PROCESS_SIGNER : => [NativeEncoding(ansi)] +szOID_QC_EU_COMPLIANCE : => [NativeEncoding(ansi)] +szOID_QC_SSCD : => [NativeEncoding(ansi)] +szOID_QC_STATEMENTS_EXT : => [NativeEncoding(ansi)] +szOID_RDN_DUMMY_SIGNER : => [NativeEncoding(ansi)] +szOID_RDN_TCG_PLATFORM_MANUFACTURER : => [NativeEncoding(ansi)] +szOID_RDN_TCG_PLATFORM_MODEL : => [NativeEncoding(ansi)] +szOID_RDN_TCG_PLATFORM_VERSION : => [NativeEncoding(ansi)] +szOID_RDN_TPM_MANUFACTURER : => [NativeEncoding(ansi)] +szOID_RDN_TPM_MODEL : => [NativeEncoding(ansi)] +szOID_RDN_TPM_VERSION : => [NativeEncoding(ansi)] +szOID_REASON_CODE_HOLD : => [NativeEncoding(ansi)] +szOID_REGISTERED_ADDRESS : => [NativeEncoding(ansi)] +szOID_REMOVE_CERTIFICATE : => [NativeEncoding(ansi)] +szOID_RENEWAL_CERTIFICATE : => [NativeEncoding(ansi)] +szOID_REQUEST_CLIENT_INFO : => [NativeEncoding(ansi)] +szOID_REQUIRE_CERT_CHAIN_POLICY : => [NativeEncoding(ansi)] +szOID_REVOKED_LIST_SIGNER : => [NativeEncoding(ansi)] +szOID_RFC3161_counterSign : => [NativeEncoding(ansi)] +szOID_ROLE_OCCUPANT : => [NativeEncoding(ansi)] +szOID_ROOT_LIST_SIGNER : => [NativeEncoding(ansi)] +szOID_ROOT_PROGRAM_AUTO_UPDATE_CA_REVOCATION : => [NativeEncoding(ansi)] +szOID_ROOT_PROGRAM_AUTO_UPDATE_END_REVOCATION : => [NativeEncoding(ansi)] +szOID_ROOT_PROGRAM_FLAGS : => [NativeEncoding(ansi)] +szOID_ROOT_PROGRAM_NO_OCSP_FAILOVER_TO_CRL : => [NativeEncoding(ansi)] +szOID_RSA : => [NativeEncoding(ansi)] +szOID_RSA_certExtensions : => [NativeEncoding(ansi)] +szOID_RSA_challengePwd : => [NativeEncoding(ansi)] +szOID_RSA_contentType : => [NativeEncoding(ansi)] +szOID_RSA_counterSign : => [NativeEncoding(ansi)] +szOID_RSA_data : => [NativeEncoding(ansi)] +szOID_RSA_DES_EDE3_CBC : => [NativeEncoding(ansi)] +szOID_RSA_DH : => [NativeEncoding(ansi)] +szOID_RSA_digestedData : => [NativeEncoding(ansi)] +szOID_RSA_emailAddr : => [NativeEncoding(ansi)] +szOID_RSA_ENCRYPT : => [NativeEncoding(ansi)] +szOID_RSA_encryptedData : => [NativeEncoding(ansi)] +szOID_RSA_envelopedData : => [NativeEncoding(ansi)] +szOID_RSA_extCertAttrs : => [NativeEncoding(ansi)] +szOID_RSA_HASH : => [NativeEncoding(ansi)] +szOID_RSA_hashedData : => [NativeEncoding(ansi)] +szOID_RSA_MD2 : => [NativeEncoding(ansi)] +szOID_RSA_MD2RSA : => [NativeEncoding(ansi)] +szOID_RSA_MD4 : => [NativeEncoding(ansi)] +szOID_RSA_MD4RSA : => [NativeEncoding(ansi)] +szOID_RSA_MD5 : => [NativeEncoding(ansi)] +szOID_RSA_MD5RSA : => [NativeEncoding(ansi)] +szOID_RSA_messageDigest : => [NativeEncoding(ansi)] +szOID_RSA_MGF1 : => [NativeEncoding(ansi)] +szOID_RSA_preferSignedData : => [NativeEncoding(ansi)] +szOID_RSA_PSPECIFIED : => [NativeEncoding(ansi)] +szOID_RSA_RC2CBC : => [NativeEncoding(ansi)] +szOID_RSA_RC4 : => [NativeEncoding(ansi)] +szOID_RSA_RC5_CBCPad : => [NativeEncoding(ansi)] +szOID_RSA_RSA : => [NativeEncoding(ansi)] +szOID_RSA_SETOAEP_RSA : => [NativeEncoding(ansi)] +szOID_RSA_SHA1RSA : => [NativeEncoding(ansi)] +szOID_RSA_SHA256RSA : => [NativeEncoding(ansi)] +szOID_RSA_SHA384RSA : => [NativeEncoding(ansi)] +szOID_RSA_SHA512RSA : => [NativeEncoding(ansi)] +szOID_RSA_signedData : => [NativeEncoding(ansi)] +szOID_RSA_signEnvData : => [NativeEncoding(ansi)] +szOID_RSA_signingTime : => [NativeEncoding(ansi)] +szOID_RSA_SMIMEalg : => [NativeEncoding(ansi)] +szOID_RSA_SMIMEalgCMS3DESwrap : => [NativeEncoding(ansi)] +szOID_RSA_SMIMEalgCMSRC2wrap : => [NativeEncoding(ansi)] +szOID_RSA_SMIMEalgESDH : => [NativeEncoding(ansi)] +szOID_RSA_SMIMECapabilities : => [NativeEncoding(ansi)] +szOID_RSA_SSA_PSS : => [NativeEncoding(ansi)] +szOID_RSA_unstructAddr : => [NativeEncoding(ansi)] +szOID_RSA_unstructName : => [NativeEncoding(ansi)] +szOID_RSAES_OAEP : => [NativeEncoding(ansi)] +szOID_SEALING_SIGNATURE : => [NativeEncoding(ansi)] +szOID_SEALING_TIMESTAMP : => [NativeEncoding(ansi)] +szOID_SEARCH_GUIDE : => [NativeEncoding(ansi)] +szOID_SEE_ALSO : => [NativeEncoding(ansi)] +szOID_SERIALIZED : => [NativeEncoding(ansi)] +szOID_SERVER_GATED_CRYPTO : => [NativeEncoding(ansi)] +szOID_SGC_NETSCAPE : => [NativeEncoding(ansi)] +szOID_SITE_PIN_RULES_FLAGS_ATTR : => [NativeEncoding(ansi)] +szOID_SITE_PIN_RULES_INDEX_ATTR : => [NativeEncoding(ansi)] +szOID_SORTED_CTL : => [NativeEncoding(ansi)] +szOID_STATE_OR_PROVINCE_NAME : => [NativeEncoding(ansi)] +szOID_STREET_ADDRESS : => [NativeEncoding(ansi)] +szOID_SUBJECT_ALT_NAME : => [NativeEncoding(ansi)] +szOID_SUBJECT_ALT_NAME2 : => [NativeEncoding(ansi)] +szOID_SUBJECT_DIR_ATTRS : => [NativeEncoding(ansi)] +szOID_SUBJECT_INFO_ACCESS : => [NativeEncoding(ansi)] +szOID_SUBJECT_KEY_IDENTIFIER : => [NativeEncoding(ansi)] +szOID_SUPPORTED_APPLICATION_CONTEXT : => [NativeEncoding(ansi)] +szOID_SUR_NAME : => [NativeEncoding(ansi)] +szOID_SYNC_ROOT_CTL_EXT : => [NativeEncoding(ansi)] +szOID_TELEPHONE_NUMBER : => [NativeEncoding(ansi)] +szOID_TELETEXT_TERMINAL_IDENTIFIER : => [NativeEncoding(ansi)] +szOID_TELEX_NUMBER : => [NativeEncoding(ansi)] +szOID_TIMESTAMP_TOKEN : => [NativeEncoding(ansi)] +szOID_TITLE : => [NativeEncoding(ansi)] +szOID_TLS_FEATURES_EXT : => [NativeEncoding(ansi)] +szOID_TRUSTED_CLIENT_AUTH_CA_LIST : => [NativeEncoding(ansi)] +szOID_TRUSTED_CODESIGNING_CA_LIST : => [NativeEncoding(ansi)] +szOID_TRUSTED_SERVER_AUTH_CA_LIST : => [NativeEncoding(ansi)] +szOID_TS_KP_TS_SERVER_AUTH : => [NativeEncoding(ansi)] +szOID_USER_CERTIFICATE : => [NativeEncoding(ansi)] +szOID_USER_PASSWORD : => [NativeEncoding(ansi)] +szOID_VERISIGN_BITSTRING_6_13 : => [NativeEncoding(ansi)] +szOID_VERISIGN_ISS_STRONG_CRYPTO : => [NativeEncoding(ansi)] +szOID_VERISIGN_ONSITE_JURISDICTION_HASH : => [NativeEncoding(ansi)] +szOID_VERISIGN_PRIVATE_6_9 : => [NativeEncoding(ansi)] +szOID_WHQL_CRYPTO : => [NativeEncoding(ansi)] +szOID_WINDOWS_KITS_SIGNER : => [NativeEncoding(ansi)] +szOID_WINDOWS_RT_SIGNER : => [NativeEncoding(ansi)] +szOID_WINDOWS_SOFTWARE_EXTENSION_SIGNER : => [NativeEncoding(ansi)] +szOID_WINDOWS_STORE_SIGNER : => [NativeEncoding(ansi)] +szOID_WINDOWS_TCB_SIGNER : => [NativeEncoding(ansi)] +szOID_WINDOWS_THIRD_PARTY_COMPONENT_SIGNER : => [NativeEncoding(ansi)] +szOID_X21_ADDRESS : => [NativeEncoding(ansi)] +szOID_X957 : => [NativeEncoding(ansi)] +szOID_X957_DSA : => [NativeEncoding(ansi)] +szOID_X957_SHA1DSA : => [NativeEncoding(ansi)] +szOID_YESNO_TRUST_ATTR : => [NativeEncoding(ansi)] +szOIDVerisign_FailInfo : => [NativeEncoding(ansi)] +szOIDVerisign_MessageType : => [NativeEncoding(ansi)] +szOIDVerisign_PkiStatus : => [NativeEncoding(ansi)] +szOIDVerisign_RecipientNonce : => [NativeEncoding(ansi)] +szOIDVerisign_SenderNonce : => [NativeEncoding(ansi)] +szOIDVerisign_TransactionID : => [NativeEncoding(ansi)] +szPRIV_KEY_CACHE_MAX_ITEMS : => [NativeEncoding(ansi)] +szPRIV_KEY_CACHE_PURGE_INTERVAL_SECONDS : => [NativeEncoding(ansi)] +szPROPASNTAG : => [NativeEncoding(ansi)] +szRBRACE : => [NativeEncoding(ansi)] +szRESTOREANNOTATION : => [NativeEncoding(ansi)] +szRPAREN : => [NativeEncoding(ansi)] +szScCreateConversationIndex : => [NativeEncoding(ansi)] +SZTOOLBAR : => [NativeEncoding(ansi)] +SZTRUSTWARNLEVEL : => [NativeEncoding(ansi)] +SZVISIBLE : => [NativeEncoding(ansi)] +TARGET_DEVICE_FRIENDLY_NAME : => [NativeEncoding(ansi)] +TARGET_DEVICE_OPEN_EXCLUSIVELY : => [NativeEncoding(ansi)] +TC_PUBLIC_DATA_TYPE_ATAGP : => [NativeEncoding(ansi)] +TC_PUBLIC_DATA_TYPE_ATASMART : => [NativeEncoding(ansi)] +TF_FLOATINGLANGBAR_WNDTITLEA : => [NativeEncoding(ansi)] +TIME_VALID_OID_FLUSH_OBJECT_FUNC : => [NativeEncoding(ansi)] +TIME_VALID_OID_GET_OBJECT_FUNC : => [NativeEncoding(ansi)] +TLS1SP_NAME_A : => [NativeEncoding(ansi)] +TOOLBARCLASSNAMEA : => [NativeEncoding(ansi)] +TOOLTIPS_CLASSA : => [NativeEncoding(ansi)] +TRACKBAR_CLASSA : => [NativeEncoding(ansi)] +TS_SSP_NAME_A : => [NativeEncoding(ansi)] +U_ICU_DATA_KEY : => [NativeEncoding(ansi)] +U_ICU_VERSION_BUNDLE : => [NativeEncoding(ansi)] +U_ICUDATA_TYPE_LETTER : => [NativeEncoding(ansi)] +U_LIB_SUFFIX_C_NAME_STRING : => [NativeEncoding(ansi)] +U_UNICODE_VERSION : => [NativeEncoding(ansi)] +U8_LEAD3_T1_BITS : => [NativeEncoding(ansi)] +U8_LEAD4_T1_BITS : => [NativeEncoding(ansi)] +UCAL_UNKNOWN_ZONE_ID : => [NativeEncoding(ansi)] +UCNV_ESCAPE_C : => [NativeEncoding(ansi)] +UCNV_ESCAPE_CSS2 : => [NativeEncoding(ansi)] +UCNV_ESCAPE_JAVA : => [NativeEncoding(ansi)] +UCNV_ESCAPE_UNICODE : => [NativeEncoding(ansi)] +UCNV_ESCAPE_XML_DEC : => [NativeEncoding(ansi)] +UCNV_ESCAPE_XML_HEX : => [NativeEncoding(ansi)] +UCNV_LOCALE_OPTION_STRING : => [NativeEncoding(ansi)] +UCNV_OPTION_SEP_STRING : => [NativeEncoding(ansi)] +UCNV_SKIP_STOP_ON_ILLEGAL : => [NativeEncoding(ansi)] +UCNV_SUB_STOP_ON_ILLEGAL : => [NativeEncoding(ansi)] +UCNV_SWAP_LFNL_OPTION_STRING : => [NativeEncoding(ansi)] +UCNV_VALUE_SEP_STRING : => [NativeEncoding(ansi)] +UCNV_VERSION_OPTION_STRING : => [NativeEncoding(ansi)] +UDAT_ABBR_GENERIC_TZ : => [NativeEncoding(ansi)] +UDAT_ABBR_MONTH : => [NativeEncoding(ansi)] +UDAT_ABBR_MONTH_DAY : => [NativeEncoding(ansi)] +UDAT_ABBR_MONTH_WEEKDAY_DAY : => [NativeEncoding(ansi)] +UDAT_ABBR_QUARTER : => [NativeEncoding(ansi)] +UDAT_ABBR_SPECIFIC_TZ : => [NativeEncoding(ansi)] +UDAT_ABBR_UTC_TZ : => [NativeEncoding(ansi)] +UDAT_ABBR_WEEKDAY : => [NativeEncoding(ansi)] +UDAT_DAY : => [NativeEncoding(ansi)] +UDAT_GENERIC_TZ : => [NativeEncoding(ansi)] +UDAT_HOUR : => [NativeEncoding(ansi)] +UDAT_HOUR_MINUTE : => [NativeEncoding(ansi)] +UDAT_HOUR_MINUTE_SECOND : => [NativeEncoding(ansi)] +UDAT_HOUR24 : => [NativeEncoding(ansi)] +UDAT_HOUR24_MINUTE : => [NativeEncoding(ansi)] +UDAT_HOUR24_MINUTE_SECOND : => [NativeEncoding(ansi)] +UDAT_LOCATION_TZ : => [NativeEncoding(ansi)] +UDAT_MINUTE : => [NativeEncoding(ansi)] +UDAT_MINUTE_SECOND : => [NativeEncoding(ansi)] +UDAT_MONTH : => [NativeEncoding(ansi)] +UDAT_MONTH_DAY : => [NativeEncoding(ansi)] +UDAT_MONTH_WEEKDAY_DAY : => [NativeEncoding(ansi)] +UDAT_NUM_MONTH : => [NativeEncoding(ansi)] +UDAT_NUM_MONTH_DAY : => [NativeEncoding(ansi)] +UDAT_NUM_MONTH_WEEKDAY_DAY : => [NativeEncoding(ansi)] +UDAT_QUARTER : => [NativeEncoding(ansi)] +UDAT_SECOND : => [NativeEncoding(ansi)] +UDAT_SPECIFIC_TZ : => [NativeEncoding(ansi)] +UDAT_WEEKDAY : => [NativeEncoding(ansi)] +UDAT_YEAR : => [NativeEncoding(ansi)] +UDAT_YEAR_ABBR_MONTH : => [NativeEncoding(ansi)] +UDAT_YEAR_ABBR_MONTH_DAY : => [NativeEncoding(ansi)] +UDAT_YEAR_ABBR_MONTH_WEEKDAY_DAY : => [NativeEncoding(ansi)] +UDAT_YEAR_ABBR_QUARTER : => [NativeEncoding(ansi)] +UDAT_YEAR_MONTH : => [NativeEncoding(ansi)] +UDAT_YEAR_MONTH_DAY : => [NativeEncoding(ansi)] +UDAT_YEAR_MONTH_WEEKDAY_DAY : => [NativeEncoding(ansi)] +UDAT_YEAR_NUM_MONTH : => [NativeEncoding(ansi)] +UDAT_YEAR_NUM_MONTH_DAY : => [NativeEncoding(ansi)] +UDAT_YEAR_NUM_MONTH_WEEKDAY_DAY : => [NativeEncoding(ansi)] +UDAT_YEAR_QUARTER : => [NativeEncoding(ansi)] +ULOC_CANADA : => [NativeEncoding(ansi)] +ULOC_CANADA_FRENCH : => [NativeEncoding(ansi)] +ULOC_CHINA : => [NativeEncoding(ansi)] +ULOC_CHINESE : => [NativeEncoding(ansi)] +ULOC_ENGLISH : => [NativeEncoding(ansi)] +ULOC_FRANCE : => [NativeEncoding(ansi)] +ULOC_FRENCH : => [NativeEncoding(ansi)] +ULOC_GERMAN : => [NativeEncoding(ansi)] +ULOC_GERMANY : => [NativeEncoding(ansi)] +ULOC_ITALIAN : => [NativeEncoding(ansi)] +ULOC_ITALY : => [NativeEncoding(ansi)] +ULOC_JAPAN : => [NativeEncoding(ansi)] +ULOC_JAPANESE : => [NativeEncoding(ansi)] +ULOC_KOREA : => [NativeEncoding(ansi)] +ULOC_KOREAN : => [NativeEncoding(ansi)] +ULOC_PRC : => [NativeEncoding(ansi)] +ULOC_SIMPLIFIED_CHINESE : => [NativeEncoding(ansi)] +ULOC_TAIWAN : => [NativeEncoding(ansi)] +ULOC_TRADITIONAL_CHINESE : => [NativeEncoding(ansi)] +ULOC_UK : => [NativeEncoding(ansi)] +ULOC_US : => [NativeEncoding(ansi)] +UNISP_NAME_A : => [NativeEncoding(ansi)] +UPDOWN_CLASSA : => [NativeEncoding(ansi)] +URL_OID_GET_OBJECT_URL_FUNC : => [NativeEncoding(ansi)] +VIDEO_DEVICE_NAME : => [NativeEncoding(ansi)] +WC_BUTTONA : => [NativeEncoding(ansi)] +WC_COMBOBOXA : => [NativeEncoding(ansi)] +WC_COMBOBOXEXA : => [NativeEncoding(ansi)] +WC_EDITA : => [NativeEncoding(ansi)] +WC_HEADERA : => [NativeEncoding(ansi)] +WC_IPADDRESSA : => [NativeEncoding(ansi)] +WC_LISTBOXA : => [NativeEncoding(ansi)] +WC_LISTVIEWA : => [NativeEncoding(ansi)] +WC_MAGNIFIERA : => [NativeEncoding(ansi)] +WC_NATIVEFONTCTLA : => [NativeEncoding(ansi)] +WC_PAGESCROLLERA : => [NativeEncoding(ansi)] +WC_SCROLLBARA : => [NativeEncoding(ansi)] +WC_STATICA : => [NativeEncoding(ansi)] +WC_TABCONTROLA : => [NativeEncoding(ansi)] +WC_TREEVIEWA : => [NativeEncoding(ansi)] +WDIGEST_SP_NAME_A : => [NativeEncoding(ansi)] +WEB_CORE_ACTIVATE_DLL_ENTRY : => [NativeEncoding(ansi)] +WEB_CORE_SET_METADATA_DLL_ENTRY : => [NativeEncoding(ansi)] +WEB_CORE_SHUTDOWN_DLL_ENTRY : => [NativeEncoding(ansi)] +WER_RUNTIME_EXCEPTION_DEBUGGER_LAUNCH : => [NativeEncoding(ansi)] +WER_RUNTIME_EXCEPTION_EVENT_FUNCTION : => [NativeEncoding(ansi)] +WER_RUNTIME_EXCEPTION_EVENT_SIGNATURE_FUNCTION : => [NativeEncoding(ansi)] +WIAU_DEBUG_TSTR : => [NativeEncoding(ansi)] +WLDP_GETLOCKDOWNPOLICY_FN : => [NativeEncoding(ansi)] +WLDP_ISAPPAPPROVEDBYPOLICY_FN : => [NativeEncoding(ansi)] +WLDP_ISCLASSINAPPROVEDLIST_FN : => [NativeEncoding(ansi)] +WLDP_ISDYNAMICCODEPOLICYENABLED_FN : => [NativeEncoding(ansi)] +WLDP_ISPRODUCTIONCONFIGURATION_FN : => [NativeEncoding(ansi)] +WLDP_ISWCOSPRODUCTIONCONFIGURATION_FN : => [NativeEncoding(ansi)] +WLDP_QUERYDANAMICCODETRUST_FN : => [NativeEncoding(ansi)] +WLDP_QUERYDEVICESECURITYINFORMATION_FN : => [NativeEncoding(ansi)] +WLDP_QUERYDYNAMICCODETRUST_FN : => [NativeEncoding(ansi)] +WLDP_QUERYPOLICYSETTINGENABLED_FN : => [NativeEncoding(ansi)] +WLDP_QUERYPOLICYSETTINGENABLED2_FN : => [NativeEncoding(ansi)] +WLDP_QUERYWINDOWSLOCKDOWNMODE_FN : => [NativeEncoding(ansi)] +WLDP_QUERYWINDOWSLOCKDOWNRESTRICTION_FN : => [NativeEncoding(ansi)] +WLDP_RESETPRODUCTIONCONFIGURATION_FN : => [NativeEncoding(ansi)] +WLDP_RESETWCOSPRODUCTIONCONFIGURATION_FN : => [NativeEncoding(ansi)] +WLDP_SETDYNAMICCODETRUST_FN : => [NativeEncoding(ansi)] +WLDP_SETWINDOWSLOCKDOWNRESTRICTION_FN : => [NativeEncoding(ansi)] +XAUDIO2_DLL_A : => [NativeEncoding(ansi)] +XAUDIO2D_DLL_A : => [NativeEncoding(ansi)] +XINPUT_DLL_A : => [NativeEncoding(ansi)] From 2d48c74cd0df1434c975e4ea87c6d122b52c79b1 Mon Sep 17 00:00:00 2001 From: Mike Battista <13860912+mikebattista@users.noreply.github.com> Date: Tue, 11 Oct 2022 08:33:29 -0700 Subject: [PATCH 3/5] Merged main and resolved conflicts. --- scripts/ChangesSinceLastRelease.txt | 386 ++++++++++++++-------------- 1 file changed, 187 insertions(+), 199 deletions(-) diff --git a/scripts/ChangesSinceLastRelease.txt b/scripts/ChangesSinceLastRelease.txt index 5b57ccce7..411326b8d 100644 --- a/scripts/ChangesSinceLastRelease.txt +++ b/scripts/ChangesSinceLastRelease.txt @@ -1,202 +1,3 @@ -# Mark DirectWrite APIs as agile -Windows.Win32.Graphics.DirectWrite.IDWriteAsyncResult : [Guid(3458595069,34363,19731,150,81,193,248,141,199,63,226)] => [Agile,Guid(3458595069,34363,19731,150,81,193,248,141,199,63,226)] -Windows.Win32.Graphics.DirectWrite.IDWriteBitmapRenderTarget : [Guid(1582969507,36351,18291,159,246,6,150,234,183,114,103),SupportedOSPlatform(windows6.1)] => [Agile,Guid(1582969507,36351,18291,159,246,6,150,234,183,114,103),SupportedOSPlatform(windows6.1)] -Windows.Win32.Graphics.DirectWrite.IDWriteBitmapRenderTarget1 : [Guid(2032042648,16115,16944,152,128,201,189,236,196,32,100),SupportedOSPlatform(windows8.0)] => [Agile,Guid(2032042648,16115,16944,152,128,201,189,236,196,32,100),SupportedOSPlatform(windows8.0)] -Windows.Win32.Graphics.DirectWrite.IDWriteColorGlyphRunEnumerator : [Guid(3542072855,61783,16802,141,36,203,119,158,5,96,232),SupportedOSPlatform(windows8.1)] => [Agile,Guid(3542072855,61783,16802,141,36,203,119,158,5,96,232),SupportedOSPlatform(windows8.1)] -Windows.Win32.Graphics.DirectWrite.IDWriteColorGlyphRunEnumerator1 : [Guid(2086635226,51105,20229,184,225,85,161,121,254,90,53)] => [Agile,Guid(2086635226,51105,20229,184,225,85,161,121,254,90,53)] -Windows.Win32.Graphics.DirectWrite.IDWriteFactory : [Guid(3092901466,55352,19291,162,232,26,220,125,147,219,72),SupportedOSPlatform(windows6.1)] => [Agile,Guid(3092901466,55352,19291,162,232,26,220,125,147,219,72),SupportedOSPlatform(windows6.1)] -Windows.Win32.Graphics.DirectWrite.IDWriteFactory1 : [Guid(811020185,56006,16859,161,110,4,134,48,126,96,106),SupportedOSPlatform(windows8.0)] => [Agile,Guid(811020185,56006,16859,161,110,4,134,48,126,96,106),SupportedOSPlatform(windows8.0)] -Windows.Win32.Graphics.DirectWrite.IDWriteFactory2 : [Guid(70909024,51780,18836,141,238,58,154,247,183,50,236),SupportedOSPlatform(windows8.1)] => [Agile,Guid(70909024,51780,18836,141,238,58,154,247,183,50,236),SupportedOSPlatform(windows8.1)] -Windows.Win32.Graphics.DirectWrite.IDWriteFactory3 : [Guid(2585477571,54203,18026,135,252,254,103,85,106,59,101),SupportedOSPlatform(windows10.0.10240)] => [Agile,Guid(2585477571,54203,18026,135,252,254,103,85,106,59,101),SupportedOSPlatform(windows10.0.10240)] -Windows.Win32.Graphics.DirectWrite.IDWriteFactory4 : [Guid(1259035603,1943,17737,138,197,254,145,92,197,56,86)] => [Agile,Guid(1259035603,1943,17737,138,197,254,145,92,197,56,86)] -Windows.Win32.Graphics.DirectWrite.IDWriteFactory5 : [Guid(2509093274,48682,20233,175,125,101,24,152,3,209,211)] => [Agile,Guid(2509093274,48682,20233,175,125,101,24,152,3,209,211)] -Windows.Win32.Graphics.DirectWrite.IDWriteFactory6 : [Guid(4084485504,8695,17131,179,93,153,91,199,47,194,35)] => [Agile,Guid(4084485504,8695,17131,179,93,153,91,199,47,194,35)] -Windows.Win32.Graphics.DirectWrite.IDWriteFactory7 : [Guid(902881459,36982,19758,160,22,169,27,86,138,6,180)] => [Agile,Guid(902881459,36982,19758,160,22,169,27,86,138,6,180)] -Windows.Win32.Graphics.DirectWrite.IDWriteFont : [Guid(2899404438,35860,20317,135,126,254,63,193,211,39,55),SupportedOSPlatform(windows6.1)] => [Agile,Guid(2899404438,35860,20317,135,126,254,63,193,211,39,55),SupportedOSPlatform(windows6.1)] -Windows.Win32.Graphics.DirectWrite.IDWriteFont1 : [Guid(2899404438,35860,20317,135,126,254,63,193,211,39,56),SupportedOSPlatform(windows8.0)] => [Agile,Guid(2899404438,35860,20317,135,126,254,63,193,211,39,56),SupportedOSPlatform(windows8.0)] -Windows.Win32.Graphics.DirectWrite.IDWriteFont2 : [Guid(695504598,35996,19050,190,11,217,18,232,83,137,68),SupportedOSPlatform(windows8.1)] => [Agile,Guid(695504598,35996,19050,190,11,217,18,232,83,137,68),SupportedOSPlatform(windows8.1)] -Windows.Win32.Graphics.DirectWrite.IDWriteFont3 : [Guid(695504598,35996,19050,190,11,217,18,232,83,137,68),SupportedOSPlatform(windows10.0.10240)] => [Agile,Guid(695504598,35996,19050,190,11,217,18,232,83,137,68),SupportedOSPlatform(windows10.0.10240)] -Windows.Win32.Graphics.DirectWrite.IDWriteFontCollection : [Guid(2823613954,16106,20206,168,39,135,193,160,42,15,204),SupportedOSPlatform(windows6.1)] => [Agile,Guid(2823613954,16106,20206,168,39,135,193,160,42,15,204),SupportedOSPlatform(windows6.1)] -Windows.Win32.Graphics.DirectWrite.IDWriteFontCollection1 : [Guid(1398296897,55800,16533,131,33,215,60,246,189,17,108),SupportedOSPlatform(windows6.1)] => [Agile,Guid(1398296897,55800,16533,131,33,215,60,246,189,17,108),SupportedOSPlatform(windows6.1)] -Windows.Win32.Graphics.DirectWrite.IDWriteFontCollection2 : [Guid(1363163590,17943,16484,191,139,146,234,131,229,6,224)] => [Agile,Guid(1363163590,17943,16484,191,139,146,234,131,229,6,224)] -Windows.Win32.Graphics.DirectWrite.IDWriteFontCollection3 : [Guid(2765116838,63971,20005,147,183,158,48,159,58,248,233)] => [Agile,Guid(2765116838,63971,20005,147,183,158,48,159,58,248,233)] -Windows.Win32.Graphics.DirectWrite.IDWriteFontCollectionLoader : [Guid(3433636068,21232,18731,191,168,41,199,46,224,164,104),SupportedOSPlatform(windows6.1)] => [Agile,Guid(3433636068,21232,18731,191,168,41,199,46,224,164,104),SupportedOSPlatform(windows6.1)] -Windows.Win32.Graphics.DirectWrite.IDWriteFontDownloadListener : [Guid(2960123321,17388,17299,136,27,219,228,220,114,253,167),SupportedOSPlatform(windows8.1)] => [Agile,Guid(2960123321,17388,17299,136,27,219,228,220,114,253,167),SupportedOSPlatform(windows8.1)] -Windows.Win32.Graphics.DirectWrite.IDWriteFontDownloadQueue : [Guid(3072221266,23274,20387,131,46,246,13,67,31,126,145),SupportedOSPlatform(windows8.1)] => [Agile,Guid(3072221266,23274,20387,131,46,246,13,67,31,126,145),SupportedOSPlatform(windows8.1)] -Windows.Win32.Graphics.DirectWrite.IDWriteFontFace : [Guid(1598652493,28708,19779,191,169,210,89,132,245,56,73),SupportedOSPlatform(windows6.1)] => [Agile,Guid(1598652493,28708,19779,191,169,210,89,132,245,56,73),SupportedOSPlatform(windows6.1)] -Windows.Win32.Graphics.DirectWrite.IDWriteFontFace1 : [Guid(2803826100,40923,18488,173,144,207,195,190,140,61,175),SupportedOSPlatform(windows8.0)] => [Agile,Guid(2803826100,40923,18488,173,144,207,195,190,140,61,175),SupportedOSPlatform(windows8.0)] -Windows.Win32.Graphics.DirectWrite.IDWriteFontFace2 : [Guid(3635898623,25788,20070,152,43,236,142,135,246,147,247),SupportedOSPlatform(windows8.1)] => [Agile,Guid(3635898623,25788,20070,152,43,236,142,135,246,147,247),SupportedOSPlatform(windows8.1)] -Windows.Win32.Graphics.DirectWrite.IDWriteFontFace3 : [Guid(3548214680,2494,16930,162,54,32,129,52,28,193,242),SupportedOSPlatform(windows10.0.10240)] => [Agile,Guid(3548214680,2494,16930,162,54,32,129,52,28,193,242),SupportedOSPlatform(windows10.0.10240)] -Windows.Win32.Graphics.DirectWrite.IDWriteFontFace4 : [Guid(670214404,20152,17437,150,120,5,99,245,62,62,47)] => [Agile,Guid(670214404,20152,17437,150,120,5,99,245,62,62,47)] -Windows.Win32.Graphics.DirectWrite.IDWriteFontFace5 : [Guid(2565862309,46695,18330,177,69,226,250,91,159,220,41)] => [Agile,Guid(2565862309,46695,18330,177,69,226,250,91,159,220,41)] -Windows.Win32.Graphics.DirectWrite.IDWriteFontFace6 : [Guid(3299999259,28292,18389,181,76,165,151,152,27,6,173)] => [Agile,Guid(3299999259,28292,18389,181,76,165,151,152,27,6,173)] -Windows.Win32.Graphics.DirectWrite.IDWriteFontFaceReference : [Guid(1585424330,56803,16972,137,240,159,205,111,237,88,205),SupportedOSPlatform(windows10.0.10240)] => [Agile,Guid(1585424330,56803,16972,137,240,159,205,111,237,88,205),SupportedOSPlatform(windows10.0.10240)] -Windows.Win32.Graphics.DirectWrite.IDWriteFontFaceReference1 : [Guid(3229744759,12241,16812,165,163,52,152,60,75,166,26)] => [Agile,Guid(3229744759,12241,16812,165,163,52,152,60,75,166,26)] -Windows.Win32.Graphics.DirectWrite.IDWriteFontFallback : [Guid(4020242681,63393,18623,176,92,242,36,113,60,192,255),SupportedOSPlatform(windows8.1)] => [Agile,Guid(4020242681,63393,18623,176,92,242,36,113,60,192,255),SupportedOSPlatform(windows8.1)] -Windows.Win32.Graphics.DirectWrite.IDWriteFontFallback1 : [Guid(597121437,56589,18049,189,106,244,243,30,170,222,119)] => [Agile,Guid(597121437,56589,18049,189,106,244,243,30,170,222,119)] -Windows.Win32.Graphics.DirectWrite.IDWriteFontFallbackBuilder : [Guid(4253560070,35514,20408,184,73,139,232,183,62,20,222),SupportedOSPlatform(windows8.1)] => [Agile,Guid(4253560070,35514,20408,184,73,139,232,183,62,20,222),SupportedOSPlatform(windows8.1)] -Windows.Win32.Graphics.DirectWrite.IDWriteFontFamily : [Guid(3659585775,33066,19523,152,2,98,236,74,189,122,221),SupportedOSPlatform(windows6.1)] => [Agile,Guid(3659585775,33066,19523,152,2,98,236,74,189,122,221),SupportedOSPlatform(windows6.1)] -Windows.Win32.Graphics.DirectWrite.IDWriteFontFamily1 : [Guid(3659585775,33066,19523,152,2,98,236,74,189,122,223),SupportedOSPlatform(windows10.0.10240)] => [Agile,Guid(3659585775,33066,19523,152,2,98,236,74,189,122,223),SupportedOSPlatform(windows10.0.10240)] -Windows.Win32.Graphics.DirectWrite.IDWriteFontFamily2 : [Guid(1054121591,41880,16993,185,207,193,38,194,19,30,243)] => [Agile,Guid(1054121591,41880,16993,185,207,193,38,194,19,30,243)] -Windows.Win32.Graphics.DirectWrite.IDWriteFontFile : [Guid(1939703914,52981,18396,135,105,26,139,65,190,187,176),SupportedOSPlatform(windows6.1)] => [Agile,Guid(1939703914,52981,18396,135,105,26,139,65,190,187,176),SupportedOSPlatform(windows6.1)] -Windows.Win32.Graphics.DirectWrite.IDWriteFontFileEnumerator : [Guid(1920290889,24567,17245,131,72,75,233,124,250,108,124),SupportedOSPlatform(windows6.1)] => [Agile,Guid(1920290889,24567,17245,131,72,75,233,124,250,108,124),SupportedOSPlatform(windows6.1)] -Windows.Win32.Graphics.DirectWrite.IDWriteFontFileLoader : [Guid(1920773454,54959,19614,138,8,214,149,177,28,170,73),SupportedOSPlatform(windows6.1)] => [Agile,Guid(1920773454,54959,19614,138,8,214,149,177,28,170,73),SupportedOSPlatform(windows6.1)] -Windows.Win32.Graphics.DirectWrite.IDWriteFontFileStream : [Guid(1833461246,2744,19857,143,98,93,214,190,52,163,224),SupportedOSPlatform(windows6.1)] => [Agile,Guid(1833461246,2744,19857,143,98,93,214,190,52,163,224),SupportedOSPlatform(windows6.1)] -Windows.Win32.Graphics.DirectWrite.IDWriteFontList : [Guid(437093432,7575,20161,174,249,162,251,134,237,106,203),SupportedOSPlatform(windows6.1)] => [Agile,Guid(437093432,7575,20161,174,249,162,251,134,237,106,203),SupportedOSPlatform(windows6.1)] -Windows.Win32.Graphics.DirectWrite.IDWriteFontList1 : [Guid(3659585775,33066,19523,152,2,98,236,74,189,122,222),SupportedOSPlatform(windows10.0.10240)] => [Agile,Guid(3659585775,33066,19523,152,2,98,236,74,189,122,222),SupportedOSPlatform(windows10.0.10240)] -Windows.Win32.Graphics.DirectWrite.IDWriteFontList2 : [Guid(3228973620,30639,17498,183,53,8,195,123,10,91,245)] => [Agile,Guid(3228973620,30639,17498,183,53,8,195,123,10,91,245)] -Windows.Win32.Graphics.DirectWrite.IDWriteFontResource : [Guid(528497270,26737,18664,152,127,185,117,85,28,80,242)] => [Agile,Guid(528497270,26737,18664,152,127,185,117,85,28,80,242)] -Windows.Win32.Graphics.DirectWrite.IDWriteFontSet : [Guid(1398296897,55800,16533,131,33,215,60,246,189,17,107),SupportedOSPlatform(windows10.0.10240)] => [Agile,Guid(1398296897,55800,16533,131,33,215,60,246,189,17,107),SupportedOSPlatform(windows10.0.10240)] -Windows.Win32.Graphics.DirectWrite.IDWriteFontSet1 : [Guid(2124405381,27794,16467,188,71,122,227,83,13,180,211)] => [Agile,Guid(2124405381,27794,16467,188,71,122,227,83,13,180,211)] -Windows.Win32.Graphics.DirectWrite.IDWriteFontSet2 : [Guid(3699289369,58700,17327,178,218,78,43,121,186,63,127)] => [Agile,Guid(3699289369,58700,17327,178,218,78,43,121,186,63,127)] -Windows.Win32.Graphics.DirectWrite.IDWriteFontSet3 : [Guid(2080849650,42996,16453,140,50,138,184,174,100,15,144)] => [Agile,Guid(2080849650,42996,16453,140,50,138,184,174,100,15,144)] -Windows.Win32.Graphics.DirectWrite.IDWriteFontSetBuilder : [Guid(795093758,40040,20288,184,190,69,116,1,175,203,61)] => [Agile,Guid(795093758,40040,20288,184,190,69,116,1,175,203,61)] -Windows.Win32.Graphics.DirectWrite.IDWriteFontSetBuilder1 : [Guid(1073181023,15580,19910,155,114,236,86,33,220,202,253)] => [Agile,Guid(1073181023,15580,19910,155,114,236,86,33,220,202,253)] -Windows.Win32.Graphics.DirectWrite.IDWriteFontSetBuilder2 : [Guid(3998983698,45361,17980,143,79,49,137,185,64,30,69)] => [Agile,Guid(3998983698,45361,17980,143,79,49,137,185,64,30,69)] -Windows.Win32.Graphics.DirectWrite.IDWriteGdiInterop : [Guid(517837969,38995,17049,137,143,100,50,152,59,111,58),SupportedOSPlatform(windows6.1)] => [Agile,Guid(517837969,38995,17049,137,143,100,50,152,59,111,58),SupportedOSPlatform(windows6.1)] -Windows.Win32.Graphics.DirectWrite.IDWriteGdiInterop1 : [Guid(1163312752,15037,20336,144,190,66,23,128,166,245,21)] => [Agile,Guid(1163312752,15037,20336,144,190,66,23,128,166,245,21)] -Windows.Win32.Graphics.DirectWrite.IDWriteGlyphRunAnalysis : [Guid(2107104247,57477,17108,129,227,106,136,59,222,209,24),SupportedOSPlatform(windows6.1)] => [Agile,Guid(2107104247,57477,17108,129,227,106,136,59,222,209,24),SupportedOSPlatform(windows6.1)] -Windows.Win32.Graphics.DirectWrite.IDWriteInlineObject : [Guid(2201615843,4207,18347,131,115,28,98,149,235,16,179),SupportedOSPlatform(windows6.1)] => [Agile,Guid(2201615843,4207,18347,131,115,28,98,149,235,16,179),SupportedOSPlatform(windows6.1)] -Windows.Win32.Graphics.DirectWrite.IDWriteInMemoryFontFileLoader : [Guid(3692048199,41261,19228,130,45,158,17,126,51,4,63)] => [Agile,Guid(3692048199,41261,19228,130,45,158,17,126,51,4,63)] -Windows.Win32.Graphics.DirectWrite.IDWriteLocalFontFileLoader : [Guid(3000628204,51710,18961,162,236,216,98,8,247,192,162)] => [Agile,Guid(3000628204,51710,18961,162,236,216,98,8,247,192,162)] -Windows.Win32.Graphics.DirectWrite.IDWriteLocalizedStrings : [Guid(136667657,2458,19252,184,109,194,43,17,14,119,113),SupportedOSPlatform(windows6.1)] => [Agile,Guid(136667657,2458,19252,184,109,194,43,17,14,119,113),SupportedOSPlatform(windows6.1)] -Windows.Win32.Graphics.DirectWrite.IDWriteNumberSubstitution : [Guid(344480969,47792,20368,182,237,92,54,106,44,208,61)] => [Agile,Guid(344480969,47792,20368,182,237,92,54,106,44,208,61)] -Windows.Win32.Graphics.DirectWrite.IDWritePixelSnapping : [Guid(3941835482,60660,19748,182,68,179,79,104,66,2,75),SupportedOSPlatform(windows6.1)] => [Agile,Guid(3941835482,60660,19748,182,68,179,79,104,66,2,75),SupportedOSPlatform(windows6.1)] -Windows.Win32.Graphics.DirectWrite.IDWriteRemoteFontFileLoader : [Guid(1751420035,28382,18112,171,70,32,8,58,136,127,222)] => [Agile,Guid(1751420035,28382,18112,171,70,32,8,58,136,127,222)] -Windows.Win32.Graphics.DirectWrite.IDWriteRemoteFontFileStream : [Guid(1303606650,11378,20185,178,182,26,186,190,26,255,156)] => [Agile,Guid(1303606650,11378,20185,178,182,26,186,190,26,255,156)] -Windows.Win32.Graphics.DirectWrite.IDWriteRenderingParams : [Guid(789423418,10973,18381,130,238,217,236,52,104,142,117),SupportedOSPlatform(windows6.1)] => [Agile,Guid(789423418,10973,18381,130,238,217,236,52,104,142,117),SupportedOSPlatform(windows6.1)] -Windows.Win32.Graphics.DirectWrite.IDWriteRenderingParams1 : [Guid(2487303412,42748,16968,139,80,102,116,52,143,202,211),SupportedOSPlatform(windows8.0)] => [Agile,Guid(2487303412,42748,16968,139,80,102,116,52,143,202,211),SupportedOSPlatform(windows8.0)] -Windows.Win32.Graphics.DirectWrite.IDWriteRenderingParams2 : [Guid(4191621571,38775,16558,135,232,62,90,249,191,9,72),SupportedOSPlatform(windows8.1)] => [Agile,Guid(4191621571,38775,16558,135,232,62,90,249,191,9,72),SupportedOSPlatform(windows8.1)] -Windows.Win32.Graphics.DirectWrite.IDWriteRenderingParams3 : [Guid(3079818154,14619,16682,140,92,228,76,194,216,103,220),SupportedOSPlatform(windows10.0.10240)] => [Agile,Guid(3079818154,14619,16682,140,92,228,76,194,216,103,220),SupportedOSPlatform(windows10.0.10240)] -Windows.Win32.Graphics.DirectWrite.IDWriteStringList : [Guid(3488493888,4439,18378,139,133,49,191,207,63,45,14)] => [Agile,Guid(3488493888,4439,18378,139,133,49,191,207,63,45,14)] -Windows.Win32.Graphics.DirectWrite.IDWriteTextAnalysisSink : [Guid(1477496132,3232,18177,179,250,190,197,24,42,228,246),SupportedOSPlatform(windows6.1)] => [Agile,Guid(1477496132,3232,18177,179,250,190,197,24,42,228,246),SupportedOSPlatform(windows6.1)] -Windows.Win32.Graphics.DirectWrite.IDWriteTextAnalysisSink1 : [Guid(2967028128,34279,19851,159,211,92,237,153,52,72,42),SupportedOSPlatform(windows8.0)] => [Agile,Guid(2967028128,34279,19851,159,211,92,237,153,52,72,42),SupportedOSPlatform(windows8.0)] -Windows.Win32.Graphics.DirectWrite.IDWriteTextAnalysisSource : [Guid(1754143320,20628,18376,173,200,251,206,166,10,233,43),SupportedOSPlatform(windows6.1)] => [Agile,Guid(1754143320,20628,18376,173,200,251,206,166,10,233,43),SupportedOSPlatform(windows6.1)] -Windows.Win32.Graphics.DirectWrite.IDWriteTextAnalysisSource1 : [Guid(1671232216,4020,19233,165,138,6,121,32,18,0,9),SupportedOSPlatform(windows8.0)] => [Agile,Guid(1671232216,4020,19233,165,138,6,121,32,18,0,9),SupportedOSPlatform(windows8.0)] -Windows.Win32.Graphics.DirectWrite.IDWriteTextAnalyzer : [Guid(3085309502,32582,17332,132,179,228,230,36,156,54,93),SupportedOSPlatform(windows6.1)] => [Agile,Guid(3085309502,32582,17332,132,179,228,230,36,156,54,93),SupportedOSPlatform(windows6.1)] -Windows.Win32.Graphics.DirectWrite.IDWriteTextAnalyzer1 : [Guid(2161825792,57887,20099,150,206,191,204,229,0,219,124),SupportedOSPlatform(windows8.0)] => [Agile,Guid(2161825792,57887,20099,150,206,191,204,229,0,219,124),SupportedOSPlatform(windows8.0)] -Windows.Win32.Graphics.DirectWrite.IDWriteTextAnalyzer2 : [Guid(1429905395,22163,19959,181,43,116,128,111,127,46,185),SupportedOSPlatform(windows8.1)] => [Agile,Guid(1429905395,22163,19959,181,43,116,128,111,127,46,185),SupportedOSPlatform(windows8.1)] -Windows.Win32.Graphics.DirectWrite.IDWriteTextFormat : [Guid(2626709528,12759,20435,161,81,124,94,34,93,181,90),SupportedOSPlatform(windows6.1)] => [Agile,Guid(2626709528,12759,20435,161,81,124,94,34,93,181,90),SupportedOSPlatform(windows6.1)] -Windows.Win32.Graphics.DirectWrite.IDWriteTextFormat1 : [Guid(1595362121,3467,19707,139,202,241,204,233,208,108,103),SupportedOSPlatform(windows8.1)] => [Agile,Guid(1595362121,3467,19707,139,202,241,204,233,208,108,103),SupportedOSPlatform(windows8.1)] -Windows.Win32.Graphics.DirectWrite.IDWriteTextFormat2 : [Guid(4135456477,40509,20172,140,50,65,131,37,61,254,112),SupportedOSPlatform(windows8.1)] => [Agile,Guid(4135456477,40509,20172,140,50,65,131,37,61,254,112),SupportedOSPlatform(windows8.1)] -Windows.Win32.Graphics.DirectWrite.IDWriteTextFormat3 : [Guid(1832605249,58704,17165,168,91,183,191,72,169,52,39)] => [Agile,Guid(1832605249,58704,17165,168,91,183,191,72,169,52,39)] -Windows.Win32.Graphics.DirectWrite.IDWriteTextLayout : [Guid(1400074295,27924,16651,155,254,11,24,43,183,9,97),SupportedOSPlatform(windows6.1)] => [Agile,Guid(1400074295,27924,16651,155,254,11,24,43,183,9,97),SupportedOSPlatform(windows6.1)] -Windows.Win32.Graphics.DirectWrite.IDWriteTextLayout1 : [Guid(2422528034,32935,18012,169,134,223,101,247,139,143,235),SupportedOSPlatform(windows8.0)] => [Agile,Guid(2422528034,32935,18012,169,134,223,101,247,139,143,235),SupportedOSPlatform(windows8.0)] -Windows.Win32.Graphics.DirectWrite.IDWriteTextLayout2 : [Guid(278118799,36190,17392,176,100,9,23,49,27,82,94),SupportedOSPlatform(windows8.1)] => [Agile,Guid(278118799,36190,17392,176,100,9,23,49,27,82,94),SupportedOSPlatform(windows8.1)] -Windows.Win32.Graphics.DirectWrite.IDWriteTextLayout3 : [Guid(131976530,526,19944,172,51,108,149,61,131,249,45),SupportedOSPlatform(windows8.1)] => [Agile,Guid(131976530,526,19944,172,51,108,149,61,131,249,45),SupportedOSPlatform(windows8.1)] -Windows.Win32.Graphics.DirectWrite.IDWriteTextLayout4 : [Guid(95010626,8767,17473,181,251,130,99,104,95,85,233)] => [Agile,Guid(95010626,8767,17473,181,251,130,99,104,95,85,233)] -Windows.Win32.Graphics.DirectWrite.IDWriteTextRenderer : [Guid(4018831669,23750,17918,136,37,197,160,114,78,184,25),SupportedOSPlatform(windows6.1)] => [Agile,Guid(4018831669,23750,17918,136,37,197,160,114,78,184,25),SupportedOSPlatform(windows6.1)] -Windows.Win32.Graphics.DirectWrite.IDWriteTextRenderer1 : [Guid(3554732340,8864,17022,170,228,125,149,116,181,157,177),SupportedOSPlatform(windows8.1)] => [Agile,Guid(3554732340,8864,17022,170,228,125,149,116,181,157,177),SupportedOSPlatform(windows8.1)] -Windows.Win32.Graphics.DirectWrite.IDWriteTypography : [Guid(1441861931,7618,19260,149,65,244,104,148,237,133,182),SupportedOSPlatform(windows6.1)] => [Agile,Guid(1441861931,7618,19260,149,65,244,104,148,237,133,182),SupportedOSPlatform(windows6.1)] -# Apply ACE_REVISION in more places. -Windows.Win32.Security.Apis.AddAccessAllowedAce : dwAceRevision...UInt32 => ACE_REVISION -Windows.Win32.Security.Apis.AddAccessAllowedAceEx : dwAceRevision...UInt32 => ACE_REVISION -Windows.Win32.Security.Apis.AddAccessAllowedObjectAce : dwAceRevision...UInt32 => ACE_REVISION -Windows.Win32.Security.Apis.AddAccessDeniedAce : dwAceRevision...UInt32 => ACE_REVISION -Windows.Win32.Security.Apis.AddAccessDeniedAceEx : dwAceRevision...UInt32 => ACE_REVISION -Windows.Win32.Security.Apis.AddAccessDeniedObjectAce : dwAceRevision...UInt32 => ACE_REVISION -# Added HTHEME type -Windows.Win32.UI.Controls.Apis.CloseThemeData : hTheme...IntPtr => HTHEME -Windows.Win32.UI.Controls.Apis.DrawThemeBackground : hTheme...IntPtr => HTHEME -Windows.Win32.UI.Controls.Apis.DrawThemeBackgroundEx : hTheme...IntPtr => HTHEME -Windows.Win32.UI.Controls.Apis.DrawThemeEdge : hTheme...IntPtr => HTHEME -Windows.Win32.UI.Controls.Apis.DrawThemeIcon : hTheme...IntPtr => HTHEME -Windows.Win32.UI.Controls.Apis.DrawThemeText : hTheme...IntPtr => HTHEME -Windows.Win32.UI.Controls.Apis.DrawThemeTextEx : hTheme...IntPtr => HTHEME -Windows.Win32.UI.Controls.Apis.GetThemeAnimationProperty : hTheme...IntPtr => HTHEME -Windows.Win32.UI.Controls.Apis.GetThemeAnimationTransform : hTheme...IntPtr => HTHEME -Windows.Win32.UI.Controls.Apis.GetThemeBackgroundContentRect : hTheme...IntPtr => HTHEME -Windows.Win32.UI.Controls.Apis.GetThemeBackgroundExtent : hTheme...IntPtr => HTHEME -Windows.Win32.UI.Controls.Apis.GetThemeBackgroundRegion : hTheme...IntPtr => HTHEME -Windows.Win32.UI.Controls.Apis.GetThemeBitmap : hTheme...IntPtr => HTHEME -Windows.Win32.UI.Controls.Apis.GetThemeBool : hTheme...IntPtr => HTHEME -Windows.Win32.UI.Controls.Apis.GetThemeColor : hTheme...IntPtr => HTHEME -Windows.Win32.UI.Controls.Apis.GetThemeEnumValue : hTheme...IntPtr => HTHEME -Windows.Win32.UI.Controls.Apis.GetThemeFilename : hTheme...IntPtr => HTHEME -Windows.Win32.UI.Controls.Apis.GetThemeFont : hTheme...IntPtr => HTHEME -Windows.Win32.UI.Controls.Apis.GetThemeInt : hTheme...IntPtr => HTHEME -Windows.Win32.UI.Controls.Apis.GetThemeIntList : hTheme...IntPtr => HTHEME -Windows.Win32.UI.Controls.Apis.GetThemeMargins : hTheme...IntPtr => HTHEME -Windows.Win32.UI.Controls.Apis.GetThemeMetric : hTheme...IntPtr => HTHEME -Windows.Win32.UI.Controls.Apis.GetThemePartSize : hTheme...IntPtr => HTHEME -Windows.Win32.UI.Controls.Apis.GetThemePosition : hTheme...IntPtr => HTHEME -Windows.Win32.UI.Controls.Apis.GetThemePropertyOrigin : hTheme...IntPtr => HTHEME -Windows.Win32.UI.Controls.Apis.GetThemeRect : hTheme...IntPtr => HTHEME -Windows.Win32.UI.Controls.Apis.GetThemeStream : hTheme...IntPtr => HTHEME -Windows.Win32.UI.Controls.Apis.GetThemeString : hTheme...IntPtr => HTHEME -Windows.Win32.UI.Controls.Apis.GetThemeSysBool : hTheme...IntPtr => HTHEME -Windows.Win32.UI.Controls.Apis.GetThemeSysColor : hTheme...IntPtr => HTHEME -Windows.Win32.UI.Controls.Apis.GetThemeSysColorBrush : hTheme...IntPtr => HTHEME -Windows.Win32.UI.Controls.Apis.GetThemeSysFont : hTheme...IntPtr => HTHEME -Windows.Win32.UI.Controls.Apis.GetThemeSysInt : hTheme...IntPtr => HTHEME -Windows.Win32.UI.Controls.Apis.GetThemeSysSize : hTheme...IntPtr => HTHEME -Windows.Win32.UI.Controls.Apis.GetThemeSysString : hTheme...IntPtr => HTHEME -Windows.Win32.UI.Controls.Apis.GetThemeTextExtent : hTheme...IntPtr => HTHEME -Windows.Win32.UI.Controls.Apis.GetThemeTextMetrics : hTheme...IntPtr => HTHEME -Windows.Win32.UI.Controls.Apis.GetThemeTimingFunction : hTheme...IntPtr => HTHEME -Windows.Win32.UI.Controls.Apis.GetThemeTransitionDuration : hTheme...IntPtr => HTHEME -Windows.Win32.UI.Controls.Apis.GetWindowTheme : return...IntPtr => HTHEME -Windows.Win32.UI.Controls.Apis.HitTestThemeBackground : hTheme...IntPtr => HTHEME -Windows.Win32.UI.Controls.Apis.IsThemeBackgroundPartiallyTransparent : hTheme...IntPtr => HTHEME -Windows.Win32.UI.Controls.Apis.IsThemePartDefined : hTheme...IntPtr => HTHEME -Windows.Win32.UI.Controls.Apis.OpenThemeData : return...IntPtr => HTHEME -Windows.Win32.UI.Controls.Apis.OpenThemeDataEx : return...IntPtr => HTHEME -Windows.Win32.UI.Controls.HTHEME added -Windows.Win32.UI.HiDpi.Apis.OpenThemeDataForDpi : return...IntPtr => HTHEME -# SHGSI_FLAGS -Windows.Win32.UI.Shell.Apis.SHGetStockIconInfo : uFlags...UInt32 => SHGSI_FLAGS -Windows.Win32.UI.Shell.Apis.SHGSI_ICONLOCATION removed -Windows.Win32.UI.Shell.SHGSI_FLAGS added -Windows.Win32.UI.Shell.SHGSI_FLAGS.SHGSI_ICON added -Windows.Win32.UI.Shell.SHGSI_FLAGS.SHGSI_ICONLOCATION added -Windows.Win32.UI.Shell.SHGSI_FLAGS.SHGSI_LARGEICON added -Windows.Win32.UI.Shell.SHGSI_FLAGS.SHGSI_LINKOVERLAY added -Windows.Win32.UI.Shell.SHGSI_FLAGS.SHGSI_SELECTED added -Windows.Win32.UI.Shell.SHGSI_FLAGS.SHGSI_SHELLICONSIZE added -Windows.Win32.UI.Shell.SHGSI_FLAGS.SHGSI_SMALLICON added -Windows.Win32.UI.Shell.SHGSI_FLAGS.SHGSI_SYSICONINDEX added -# SHGetPropertyStoreFromParsingName -Windows.Win32.UI.Shell.PropertiesSystem.Apis.SHGetPropertyStoreFromParsingName : ppv : [Out] => [ComOutPtr,Out] -# Added PreserveSig. -Windows.Win32.System.Ole.IDropSource.GiveFeedback : => [PreserveSig] -Windows.Win32.System.Ole.IDropSource.QueryContinueDrag : => [PreserveSig] -# Removed extra space in enum use. -Windows.Win32.System.Ole.Apis.OleDuplicateData : uiFlags...UInt32 => GLOBAL_ALLOC_FLAGS -# Added missing enum members. -Windows.Win32.UI.Controls.Apis.ILD_ASYNC removed -Windows.Win32.UI.Controls.Apis.ILD_BLEND25 removed -Windows.Win32.UI.Controls.Apis.ILD_DPISCALE removed -Windows.Win32.UI.Controls.Apis.ILD_IMAGE removed -Windows.Win32.UI.Controls.Apis.ILD_OVERLAYMASK removed -Windows.Win32.UI.Controls.Apis.ILD_PRESERVEALPHA removed -Windows.Win32.UI.Controls.Apis.ILD_ROP removed -Windows.Win32.UI.Controls.Apis.ILD_SCALE removed -Windows.Win32.UI.Controls.Apis.ILD_TRANSPARENT removed -Windows.Win32.UI.Controls.IMAGE_LIST_DRAW_STYLE.ILD_ASYNC added -Windows.Win32.UI.Controls.IMAGE_LIST_DRAW_STYLE.ILD_BLEND25 added -Windows.Win32.UI.Controls.IMAGE_LIST_DRAW_STYLE.ILD_DPISCALE added -Windows.Win32.UI.Controls.IMAGE_LIST_DRAW_STYLE.ILD_IMAGE added -Windows.Win32.UI.Controls.IMAGE_LIST_DRAW_STYLE.ILD_OVERLAYMASK added -Windows.Win32.UI.Controls.IMAGE_LIST_DRAW_STYLE.ILD_PRESERVEALPHA added -Windows.Win32.UI.Controls.IMAGE_LIST_DRAW_STYLE.ILD_ROP added -Windows.Win32.UI.Controls.IMAGE_LIST_DRAW_STYLE.ILD_SCALE added -Windows.Win32.UI.Controls.IMAGE_LIST_DRAW_STYLE.ILD_TRANSPARENT added -# Added [Out] for WinForms. -Windows.Win32.System.Ole.Apis.ReleaseStgMedium : param0 : [In] => [In,Out] -# Added ACE_REVISION in more places. -Windows.Win32.Security.Apis.AddAce : dwAceRevision...UInt32 => ACE_REVISION -Windows.Win32.Security.Apis.AddAuditAccessAce : dwAceRevision...UInt32 => ACE_REVISION -Windows.Win32.Security.Apis.AddAuditAccessAceEx : dwAceRevision...UInt32 => ACE_REVISION -Windows.Win32.Security.Apis.AddAuditAccessObjectAce : dwAceRevision...UInt32 => ACE_REVISION -Windows.Win32.Security.Apis.AddConditionalAce : dwAceRevision...UInt32 => ACE_REVISION -Windows.Win32.Security.Apis.AddResourceAttributeAce : dwAceRevision...UInt32 => ACE_REVISION -Windows.Win32.Security.Apis.AddScopedPolicyIDAce : dwAceRevision...UInt32 => ACE_REVISION -# Parameter should be treated as a null terminated string -Windows.Win32.System.RemoteDesktop.IWTSVirtualChannelManager.CreateListener : pszChannelName...Byte* => PSTR -# Added PreserveSig. -Windows.Win32.Graphics.Dxgi.IDXGIAdapter.EnumOutputs : => [PreserveSig] -Windows.Win32.Graphics.Dxgi.IDXGIFactory.EnumAdapters : => [PreserveSig] -Windows.Win32.Graphics.Dxgi.IDXGIFactory1.EnumAdapters1 : => [PreserveSig] # Added NativeEncoding to ansi strings. ACCCTRL_DEFAULT_PROVIDERA : => [NativeEncoding(ansi)] ACCESS_DS_OBJECT_TYPE_NAME_A : => [NativeEncoding(ansi)] @@ -1353,6 +1154,193 @@ WER_RUNTIME_EXCEPTION_DEBUGGER_LAUNCH : => [NativeEncoding(ansi)] WER_RUNTIME_EXCEPTION_EVENT_FUNCTION : => [NativeEncoding(ansi)] WER_RUNTIME_EXCEPTION_EVENT_SIGNATURE_FUNCTION : => [NativeEncoding(ansi)] WIAU_DEBUG_TSTR : => [NativeEncoding(ansi)] +Windows.Win32.Graphics.DirectWrite.IDWriteAsyncResult : [Guid(3458595069,34363,19731,150,81,193,248,141,199,63,226)] => [Agile,Guid(3458595069,34363,19731,150,81,193,248,141,199,63,226)] +Windows.Win32.Graphics.DirectWrite.IDWriteBitmapRenderTarget : [Guid(1582969507,36351,18291,159,246,6,150,234,183,114,103),SupportedOSPlatform(windows6.1)] => [Agile,Guid(1582969507,36351,18291,159,246,6,150,234,183,114,103),SupportedOSPlatform(windows6.1)] +Windows.Win32.Graphics.DirectWrite.IDWriteBitmapRenderTarget1 : [Guid(2032042648,16115,16944,152,128,201,189,236,196,32,100),SupportedOSPlatform(windows8.0)] => [Agile,Guid(2032042648,16115,16944,152,128,201,189,236,196,32,100),SupportedOSPlatform(windows8.0)] +Windows.Win32.Graphics.DirectWrite.IDWriteColorGlyphRunEnumerator : [Guid(3542072855,61783,16802,141,36,203,119,158,5,96,232),SupportedOSPlatform(windows8.1)] => [Agile,Guid(3542072855,61783,16802,141,36,203,119,158,5,96,232),SupportedOSPlatform(windows8.1)] +Windows.Win32.Graphics.DirectWrite.IDWriteColorGlyphRunEnumerator1 : [Guid(2086635226,51105,20229,184,225,85,161,121,254,90,53)] => [Agile,Guid(2086635226,51105,20229,184,225,85,161,121,254,90,53)] +Windows.Win32.Graphics.DirectWrite.IDWriteFactory : [Guid(3092901466,55352,19291,162,232,26,220,125,147,219,72),SupportedOSPlatform(windows6.1)] => [Agile,Guid(3092901466,55352,19291,162,232,26,220,125,147,219,72),SupportedOSPlatform(windows6.1)] +Windows.Win32.Graphics.DirectWrite.IDWriteFactory1 : [Guid(811020185,56006,16859,161,110,4,134,48,126,96,106),SupportedOSPlatform(windows8.0)] => [Agile,Guid(811020185,56006,16859,161,110,4,134,48,126,96,106),SupportedOSPlatform(windows8.0)] +Windows.Win32.Graphics.DirectWrite.IDWriteFactory2 : [Guid(70909024,51780,18836,141,238,58,154,247,183,50,236),SupportedOSPlatform(windows8.1)] => [Agile,Guid(70909024,51780,18836,141,238,58,154,247,183,50,236),SupportedOSPlatform(windows8.1)] +Windows.Win32.Graphics.DirectWrite.IDWriteFactory3 : [Guid(2585477571,54203,18026,135,252,254,103,85,106,59,101),SupportedOSPlatform(windows10.0.10240)] => [Agile,Guid(2585477571,54203,18026,135,252,254,103,85,106,59,101),SupportedOSPlatform(windows10.0.10240)] +Windows.Win32.Graphics.DirectWrite.IDWriteFactory4 : [Guid(1259035603,1943,17737,138,197,254,145,92,197,56,86)] => [Agile,Guid(1259035603,1943,17737,138,197,254,145,92,197,56,86)] +Windows.Win32.Graphics.DirectWrite.IDWriteFactory5 : [Guid(2509093274,48682,20233,175,125,101,24,152,3,209,211)] => [Agile,Guid(2509093274,48682,20233,175,125,101,24,152,3,209,211)] +Windows.Win32.Graphics.DirectWrite.IDWriteFactory6 : [Guid(4084485504,8695,17131,179,93,153,91,199,47,194,35)] => [Agile,Guid(4084485504,8695,17131,179,93,153,91,199,47,194,35)] +Windows.Win32.Graphics.DirectWrite.IDWriteFactory7 : [Guid(902881459,36982,19758,160,22,169,27,86,138,6,180)] => [Agile,Guid(902881459,36982,19758,160,22,169,27,86,138,6,180)] +Windows.Win32.Graphics.DirectWrite.IDWriteFont : [Guid(2899404438,35860,20317,135,126,254,63,193,211,39,55),SupportedOSPlatform(windows6.1)] => [Agile,Guid(2899404438,35860,20317,135,126,254,63,193,211,39,55),SupportedOSPlatform(windows6.1)] +Windows.Win32.Graphics.DirectWrite.IDWriteFont1 : [Guid(2899404438,35860,20317,135,126,254,63,193,211,39,56),SupportedOSPlatform(windows8.0)] => [Agile,Guid(2899404438,35860,20317,135,126,254,63,193,211,39,56),SupportedOSPlatform(windows8.0)] +Windows.Win32.Graphics.DirectWrite.IDWriteFont2 : [Guid(695504598,35996,19050,190,11,217,18,232,83,137,68),SupportedOSPlatform(windows8.1)] => [Agile,Guid(695504598,35996,19050,190,11,217,18,232,83,137,68),SupportedOSPlatform(windows8.1)] +Windows.Win32.Graphics.DirectWrite.IDWriteFont3 : [Guid(695504598,35996,19050,190,11,217,18,232,83,137,68),SupportedOSPlatform(windows10.0.10240)] => [Agile,Guid(695504598,35996,19050,190,11,217,18,232,83,137,68),SupportedOSPlatform(windows10.0.10240)] +Windows.Win32.Graphics.DirectWrite.IDWriteFontCollection : [Guid(2823613954,16106,20206,168,39,135,193,160,42,15,204),SupportedOSPlatform(windows6.1)] => [Agile,Guid(2823613954,16106,20206,168,39,135,193,160,42,15,204),SupportedOSPlatform(windows6.1)] +Windows.Win32.Graphics.DirectWrite.IDWriteFontCollection1 : [Guid(1398296897,55800,16533,131,33,215,60,246,189,17,108),SupportedOSPlatform(windows6.1)] => [Agile,Guid(1398296897,55800,16533,131,33,215,60,246,189,17,108),SupportedOSPlatform(windows6.1)] +Windows.Win32.Graphics.DirectWrite.IDWriteFontCollection2 : [Guid(1363163590,17943,16484,191,139,146,234,131,229,6,224)] => [Agile,Guid(1363163590,17943,16484,191,139,146,234,131,229,6,224)] +Windows.Win32.Graphics.DirectWrite.IDWriteFontCollection3 : [Guid(2765116838,63971,20005,147,183,158,48,159,58,248,233)] => [Agile,Guid(2765116838,63971,20005,147,183,158,48,159,58,248,233)] +Windows.Win32.Graphics.DirectWrite.IDWriteFontCollectionLoader : [Guid(3433636068,21232,18731,191,168,41,199,46,224,164,104),SupportedOSPlatform(windows6.1)] => [Agile,Guid(3433636068,21232,18731,191,168,41,199,46,224,164,104),SupportedOSPlatform(windows6.1)] +Windows.Win32.Graphics.DirectWrite.IDWriteFontDownloadListener : [Guid(2960123321,17388,17299,136,27,219,228,220,114,253,167),SupportedOSPlatform(windows8.1)] => [Agile,Guid(2960123321,17388,17299,136,27,219,228,220,114,253,167),SupportedOSPlatform(windows8.1)] +Windows.Win32.Graphics.DirectWrite.IDWriteFontDownloadQueue : [Guid(3072221266,23274,20387,131,46,246,13,67,31,126,145),SupportedOSPlatform(windows8.1)] => [Agile,Guid(3072221266,23274,20387,131,46,246,13,67,31,126,145),SupportedOSPlatform(windows8.1)] +Windows.Win32.Graphics.DirectWrite.IDWriteFontFace : [Guid(1598652493,28708,19779,191,169,210,89,132,245,56,73),SupportedOSPlatform(windows6.1)] => [Agile,Guid(1598652493,28708,19779,191,169,210,89,132,245,56,73),SupportedOSPlatform(windows6.1)] +Windows.Win32.Graphics.DirectWrite.IDWriteFontFace1 : [Guid(2803826100,40923,18488,173,144,207,195,190,140,61,175),SupportedOSPlatform(windows8.0)] => [Agile,Guid(2803826100,40923,18488,173,144,207,195,190,140,61,175),SupportedOSPlatform(windows8.0)] +Windows.Win32.Graphics.DirectWrite.IDWriteFontFace2 : [Guid(3635898623,25788,20070,152,43,236,142,135,246,147,247),SupportedOSPlatform(windows8.1)] => [Agile,Guid(3635898623,25788,20070,152,43,236,142,135,246,147,247),SupportedOSPlatform(windows8.1)] +Windows.Win32.Graphics.DirectWrite.IDWriteFontFace3 : [Guid(3548214680,2494,16930,162,54,32,129,52,28,193,242),SupportedOSPlatform(windows10.0.10240)] => [Agile,Guid(3548214680,2494,16930,162,54,32,129,52,28,193,242),SupportedOSPlatform(windows10.0.10240)] +Windows.Win32.Graphics.DirectWrite.IDWriteFontFace4 : [Guid(670214404,20152,17437,150,120,5,99,245,62,62,47)] => [Agile,Guid(670214404,20152,17437,150,120,5,99,245,62,62,47)] +Windows.Win32.Graphics.DirectWrite.IDWriteFontFace5 : [Guid(2565862309,46695,18330,177,69,226,250,91,159,220,41)] => [Agile,Guid(2565862309,46695,18330,177,69,226,250,91,159,220,41)] +Windows.Win32.Graphics.DirectWrite.IDWriteFontFace6 : [Guid(3299999259,28292,18389,181,76,165,151,152,27,6,173)] => [Agile,Guid(3299999259,28292,18389,181,76,165,151,152,27,6,173)] +Windows.Win32.Graphics.DirectWrite.IDWriteFontFaceReference : [Guid(1585424330,56803,16972,137,240,159,205,111,237,88,205),SupportedOSPlatform(windows10.0.10240)] => [Agile,Guid(1585424330,56803,16972,137,240,159,205,111,237,88,205),SupportedOSPlatform(windows10.0.10240)] +Windows.Win32.Graphics.DirectWrite.IDWriteFontFaceReference1 : [Guid(3229744759,12241,16812,165,163,52,152,60,75,166,26)] => [Agile,Guid(3229744759,12241,16812,165,163,52,152,60,75,166,26)] +Windows.Win32.Graphics.DirectWrite.IDWriteFontFallback : [Guid(4020242681,63393,18623,176,92,242,36,113,60,192,255),SupportedOSPlatform(windows8.1)] => [Agile,Guid(4020242681,63393,18623,176,92,242,36,113,60,192,255),SupportedOSPlatform(windows8.1)] +Windows.Win32.Graphics.DirectWrite.IDWriteFontFallback1 : [Guid(597121437,56589,18049,189,106,244,243,30,170,222,119)] => [Agile,Guid(597121437,56589,18049,189,106,244,243,30,170,222,119)] +Windows.Win32.Graphics.DirectWrite.IDWriteFontFallbackBuilder : [Guid(4253560070,35514,20408,184,73,139,232,183,62,20,222),SupportedOSPlatform(windows8.1)] => [Agile,Guid(4253560070,35514,20408,184,73,139,232,183,62,20,222),SupportedOSPlatform(windows8.1)] +Windows.Win32.Graphics.DirectWrite.IDWriteFontFamily : [Guid(3659585775,33066,19523,152,2,98,236,74,189,122,221),SupportedOSPlatform(windows6.1)] => [Agile,Guid(3659585775,33066,19523,152,2,98,236,74,189,122,221),SupportedOSPlatform(windows6.1)] +Windows.Win32.Graphics.DirectWrite.IDWriteFontFamily1 : [Guid(3659585775,33066,19523,152,2,98,236,74,189,122,223),SupportedOSPlatform(windows10.0.10240)] => [Agile,Guid(3659585775,33066,19523,152,2,98,236,74,189,122,223),SupportedOSPlatform(windows10.0.10240)] +Windows.Win32.Graphics.DirectWrite.IDWriteFontFamily2 : [Guid(1054121591,41880,16993,185,207,193,38,194,19,30,243)] => [Agile,Guid(1054121591,41880,16993,185,207,193,38,194,19,30,243)] +Windows.Win32.Graphics.DirectWrite.IDWriteFontFile : [Guid(1939703914,52981,18396,135,105,26,139,65,190,187,176),SupportedOSPlatform(windows6.1)] => [Agile,Guid(1939703914,52981,18396,135,105,26,139,65,190,187,176),SupportedOSPlatform(windows6.1)] +Windows.Win32.Graphics.DirectWrite.IDWriteFontFileEnumerator : [Guid(1920290889,24567,17245,131,72,75,233,124,250,108,124),SupportedOSPlatform(windows6.1)] => [Agile,Guid(1920290889,24567,17245,131,72,75,233,124,250,108,124),SupportedOSPlatform(windows6.1)] +Windows.Win32.Graphics.DirectWrite.IDWriteFontFileLoader : [Guid(1920773454,54959,19614,138,8,214,149,177,28,170,73),SupportedOSPlatform(windows6.1)] => [Agile,Guid(1920773454,54959,19614,138,8,214,149,177,28,170,73),SupportedOSPlatform(windows6.1)] +Windows.Win32.Graphics.DirectWrite.IDWriteFontFileStream : [Guid(1833461246,2744,19857,143,98,93,214,190,52,163,224),SupportedOSPlatform(windows6.1)] => [Agile,Guid(1833461246,2744,19857,143,98,93,214,190,52,163,224),SupportedOSPlatform(windows6.1)] +Windows.Win32.Graphics.DirectWrite.IDWriteFontList : [Guid(437093432,7575,20161,174,249,162,251,134,237,106,203),SupportedOSPlatform(windows6.1)] => [Agile,Guid(437093432,7575,20161,174,249,162,251,134,237,106,203),SupportedOSPlatform(windows6.1)] +Windows.Win32.Graphics.DirectWrite.IDWriteFontList1 : [Guid(3659585775,33066,19523,152,2,98,236,74,189,122,222),SupportedOSPlatform(windows10.0.10240)] => [Agile,Guid(3659585775,33066,19523,152,2,98,236,74,189,122,222),SupportedOSPlatform(windows10.0.10240)] +Windows.Win32.Graphics.DirectWrite.IDWriteFontList2 : [Guid(3228973620,30639,17498,183,53,8,195,123,10,91,245)] => [Agile,Guid(3228973620,30639,17498,183,53,8,195,123,10,91,245)] +Windows.Win32.Graphics.DirectWrite.IDWriteFontResource : [Guid(528497270,26737,18664,152,127,185,117,85,28,80,242)] => [Agile,Guid(528497270,26737,18664,152,127,185,117,85,28,80,242)] +Windows.Win32.Graphics.DirectWrite.IDWriteFontSet : [Guid(1398296897,55800,16533,131,33,215,60,246,189,17,107),SupportedOSPlatform(windows10.0.10240)] => [Agile,Guid(1398296897,55800,16533,131,33,215,60,246,189,17,107),SupportedOSPlatform(windows10.0.10240)] +Windows.Win32.Graphics.DirectWrite.IDWriteFontSet1 : [Guid(2124405381,27794,16467,188,71,122,227,83,13,180,211)] => [Agile,Guid(2124405381,27794,16467,188,71,122,227,83,13,180,211)] +Windows.Win32.Graphics.DirectWrite.IDWriteFontSet2 : [Guid(3699289369,58700,17327,178,218,78,43,121,186,63,127)] => [Agile,Guid(3699289369,58700,17327,178,218,78,43,121,186,63,127)] +Windows.Win32.Graphics.DirectWrite.IDWriteFontSet3 : [Guid(2080849650,42996,16453,140,50,138,184,174,100,15,144)] => [Agile,Guid(2080849650,42996,16453,140,50,138,184,174,100,15,144)] +Windows.Win32.Graphics.DirectWrite.IDWriteFontSetBuilder : [Guid(795093758,40040,20288,184,190,69,116,1,175,203,61)] => [Agile,Guid(795093758,40040,20288,184,190,69,116,1,175,203,61)] +Windows.Win32.Graphics.DirectWrite.IDWriteFontSetBuilder1 : [Guid(1073181023,15580,19910,155,114,236,86,33,220,202,253)] => [Agile,Guid(1073181023,15580,19910,155,114,236,86,33,220,202,253)] +Windows.Win32.Graphics.DirectWrite.IDWriteFontSetBuilder2 : [Guid(3998983698,45361,17980,143,79,49,137,185,64,30,69)] => [Agile,Guid(3998983698,45361,17980,143,79,49,137,185,64,30,69)] +Windows.Win32.Graphics.DirectWrite.IDWriteGdiInterop : [Guid(517837969,38995,17049,137,143,100,50,152,59,111,58),SupportedOSPlatform(windows6.1)] => [Agile,Guid(517837969,38995,17049,137,143,100,50,152,59,111,58),SupportedOSPlatform(windows6.1)] +Windows.Win32.Graphics.DirectWrite.IDWriteGdiInterop1 : [Guid(1163312752,15037,20336,144,190,66,23,128,166,245,21)] => [Agile,Guid(1163312752,15037,20336,144,190,66,23,128,166,245,21)] +Windows.Win32.Graphics.DirectWrite.IDWriteGlyphRunAnalysis : [Guid(2107104247,57477,17108,129,227,106,136,59,222,209,24),SupportedOSPlatform(windows6.1)] => [Agile,Guid(2107104247,57477,17108,129,227,106,136,59,222,209,24),SupportedOSPlatform(windows6.1)] +Windows.Win32.Graphics.DirectWrite.IDWriteInlineObject : [Guid(2201615843,4207,18347,131,115,28,98,149,235,16,179),SupportedOSPlatform(windows6.1)] => [Agile,Guid(2201615843,4207,18347,131,115,28,98,149,235,16,179),SupportedOSPlatform(windows6.1)] +Windows.Win32.Graphics.DirectWrite.IDWriteInMemoryFontFileLoader : [Guid(3692048199,41261,19228,130,45,158,17,126,51,4,63)] => [Agile,Guid(3692048199,41261,19228,130,45,158,17,126,51,4,63)] +Windows.Win32.Graphics.DirectWrite.IDWriteLocalFontFileLoader : [Guid(3000628204,51710,18961,162,236,216,98,8,247,192,162)] => [Agile,Guid(3000628204,51710,18961,162,236,216,98,8,247,192,162)] +Windows.Win32.Graphics.DirectWrite.IDWriteLocalizedStrings : [Guid(136667657,2458,19252,184,109,194,43,17,14,119,113),SupportedOSPlatform(windows6.1)] => [Agile,Guid(136667657,2458,19252,184,109,194,43,17,14,119,113),SupportedOSPlatform(windows6.1)] +Windows.Win32.Graphics.DirectWrite.IDWriteNumberSubstitution : [Guid(344480969,47792,20368,182,237,92,54,106,44,208,61)] => [Agile,Guid(344480969,47792,20368,182,237,92,54,106,44,208,61)] +Windows.Win32.Graphics.DirectWrite.IDWritePixelSnapping : [Guid(3941835482,60660,19748,182,68,179,79,104,66,2,75),SupportedOSPlatform(windows6.1)] => [Agile,Guid(3941835482,60660,19748,182,68,179,79,104,66,2,75),SupportedOSPlatform(windows6.1)] +Windows.Win32.Graphics.DirectWrite.IDWriteRemoteFontFileLoader : [Guid(1751420035,28382,18112,171,70,32,8,58,136,127,222)] => [Agile,Guid(1751420035,28382,18112,171,70,32,8,58,136,127,222)] +Windows.Win32.Graphics.DirectWrite.IDWriteRemoteFontFileStream : [Guid(1303606650,11378,20185,178,182,26,186,190,26,255,156)] => [Agile,Guid(1303606650,11378,20185,178,182,26,186,190,26,255,156)] +Windows.Win32.Graphics.DirectWrite.IDWriteRenderingParams : [Guid(789423418,10973,18381,130,238,217,236,52,104,142,117),SupportedOSPlatform(windows6.1)] => [Agile,Guid(789423418,10973,18381,130,238,217,236,52,104,142,117),SupportedOSPlatform(windows6.1)] +Windows.Win32.Graphics.DirectWrite.IDWriteRenderingParams1 : [Guid(2487303412,42748,16968,139,80,102,116,52,143,202,211),SupportedOSPlatform(windows8.0)] => [Agile,Guid(2487303412,42748,16968,139,80,102,116,52,143,202,211),SupportedOSPlatform(windows8.0)] +Windows.Win32.Graphics.DirectWrite.IDWriteRenderingParams2 : [Guid(4191621571,38775,16558,135,232,62,90,249,191,9,72),SupportedOSPlatform(windows8.1)] => [Agile,Guid(4191621571,38775,16558,135,232,62,90,249,191,9,72),SupportedOSPlatform(windows8.1)] +Windows.Win32.Graphics.DirectWrite.IDWriteRenderingParams3 : [Guid(3079818154,14619,16682,140,92,228,76,194,216,103,220),SupportedOSPlatform(windows10.0.10240)] => [Agile,Guid(3079818154,14619,16682,140,92,228,76,194,216,103,220),SupportedOSPlatform(windows10.0.10240)] +Windows.Win32.Graphics.DirectWrite.IDWriteStringList : [Guid(3488493888,4439,18378,139,133,49,191,207,63,45,14)] => [Agile,Guid(3488493888,4439,18378,139,133,49,191,207,63,45,14)] +Windows.Win32.Graphics.DirectWrite.IDWriteTextAnalysisSink : [Guid(1477496132,3232,18177,179,250,190,197,24,42,228,246),SupportedOSPlatform(windows6.1)] => [Agile,Guid(1477496132,3232,18177,179,250,190,197,24,42,228,246),SupportedOSPlatform(windows6.1)] +Windows.Win32.Graphics.DirectWrite.IDWriteTextAnalysisSink1 : [Guid(2967028128,34279,19851,159,211,92,237,153,52,72,42),SupportedOSPlatform(windows8.0)] => [Agile,Guid(2967028128,34279,19851,159,211,92,237,153,52,72,42),SupportedOSPlatform(windows8.0)] +Windows.Win32.Graphics.DirectWrite.IDWriteTextAnalysisSource : [Guid(1754143320,20628,18376,173,200,251,206,166,10,233,43),SupportedOSPlatform(windows6.1)] => [Agile,Guid(1754143320,20628,18376,173,200,251,206,166,10,233,43),SupportedOSPlatform(windows6.1)] +Windows.Win32.Graphics.DirectWrite.IDWriteTextAnalysisSource1 : [Guid(1671232216,4020,19233,165,138,6,121,32,18,0,9),SupportedOSPlatform(windows8.0)] => [Agile,Guid(1671232216,4020,19233,165,138,6,121,32,18,0,9),SupportedOSPlatform(windows8.0)] +Windows.Win32.Graphics.DirectWrite.IDWriteTextAnalyzer : [Guid(3085309502,32582,17332,132,179,228,230,36,156,54,93),SupportedOSPlatform(windows6.1)] => [Agile,Guid(3085309502,32582,17332,132,179,228,230,36,156,54,93),SupportedOSPlatform(windows6.1)] +Windows.Win32.Graphics.DirectWrite.IDWriteTextAnalyzer1 : [Guid(2161825792,57887,20099,150,206,191,204,229,0,219,124),SupportedOSPlatform(windows8.0)] => [Agile,Guid(2161825792,57887,20099,150,206,191,204,229,0,219,124),SupportedOSPlatform(windows8.0)] +Windows.Win32.Graphics.DirectWrite.IDWriteTextAnalyzer2 : [Guid(1429905395,22163,19959,181,43,116,128,111,127,46,185),SupportedOSPlatform(windows8.1)] => [Agile,Guid(1429905395,22163,19959,181,43,116,128,111,127,46,185),SupportedOSPlatform(windows8.1)] +Windows.Win32.Graphics.DirectWrite.IDWriteTextFormat : [Guid(2626709528,12759,20435,161,81,124,94,34,93,181,90),SupportedOSPlatform(windows6.1)] => [Agile,Guid(2626709528,12759,20435,161,81,124,94,34,93,181,90),SupportedOSPlatform(windows6.1)] +Windows.Win32.Graphics.DirectWrite.IDWriteTextFormat1 : [Guid(1595362121,3467,19707,139,202,241,204,233,208,108,103),SupportedOSPlatform(windows8.1)] => [Agile,Guid(1595362121,3467,19707,139,202,241,204,233,208,108,103),SupportedOSPlatform(windows8.1)] +Windows.Win32.Graphics.DirectWrite.IDWriteTextFormat2 : [Guid(4135456477,40509,20172,140,50,65,131,37,61,254,112),SupportedOSPlatform(windows8.1)] => [Agile,Guid(4135456477,40509,20172,140,50,65,131,37,61,254,112),SupportedOSPlatform(windows8.1)] +Windows.Win32.Graphics.DirectWrite.IDWriteTextFormat3 : [Guid(1832605249,58704,17165,168,91,183,191,72,169,52,39)] => [Agile,Guid(1832605249,58704,17165,168,91,183,191,72,169,52,39)] +Windows.Win32.Graphics.DirectWrite.IDWriteTextLayout : [Guid(1400074295,27924,16651,155,254,11,24,43,183,9,97),SupportedOSPlatform(windows6.1)] => [Agile,Guid(1400074295,27924,16651,155,254,11,24,43,183,9,97),SupportedOSPlatform(windows6.1)] +Windows.Win32.Graphics.DirectWrite.IDWriteTextLayout1 : [Guid(2422528034,32935,18012,169,134,223,101,247,139,143,235),SupportedOSPlatform(windows8.0)] => [Agile,Guid(2422528034,32935,18012,169,134,223,101,247,139,143,235),SupportedOSPlatform(windows8.0)] +Windows.Win32.Graphics.DirectWrite.IDWriteTextLayout2 : [Guid(278118799,36190,17392,176,100,9,23,49,27,82,94),SupportedOSPlatform(windows8.1)] => [Agile,Guid(278118799,36190,17392,176,100,9,23,49,27,82,94),SupportedOSPlatform(windows8.1)] +Windows.Win32.Graphics.DirectWrite.IDWriteTextLayout3 : [Guid(131976530,526,19944,172,51,108,149,61,131,249,45),SupportedOSPlatform(windows8.1)] => [Agile,Guid(131976530,526,19944,172,51,108,149,61,131,249,45),SupportedOSPlatform(windows8.1)] +Windows.Win32.Graphics.DirectWrite.IDWriteTextLayout4 : [Guid(95010626,8767,17473,181,251,130,99,104,95,85,233)] => [Agile,Guid(95010626,8767,17473,181,251,130,99,104,95,85,233)] +Windows.Win32.Graphics.DirectWrite.IDWriteTextRenderer : [Guid(4018831669,23750,17918,136,37,197,160,114,78,184,25),SupportedOSPlatform(windows6.1)] => [Agile,Guid(4018831669,23750,17918,136,37,197,160,114,78,184,25),SupportedOSPlatform(windows6.1)] +Windows.Win32.Graphics.DirectWrite.IDWriteTextRenderer1 : [Guid(3554732340,8864,17022,170,228,125,149,116,181,157,177),SupportedOSPlatform(windows8.1)] => [Agile,Guid(3554732340,8864,17022,170,228,125,149,116,181,157,177),SupportedOSPlatform(windows8.1)] +Windows.Win32.Graphics.DirectWrite.IDWriteTypography : [Guid(1441861931,7618,19260,149,65,244,104,148,237,133,182),SupportedOSPlatform(windows6.1)] => [Agile,Guid(1441861931,7618,19260,149,65,244,104,148,237,133,182),SupportedOSPlatform(windows6.1)] +Windows.Win32.Graphics.Dxgi.IDXGIAdapter.EnumOutputs : => [PreserveSig] +Windows.Win32.Graphics.Dxgi.IDXGIFactory.EnumAdapters : => [PreserveSig] +Windows.Win32.Graphics.Dxgi.IDXGIFactory1.EnumAdapters1 : => [PreserveSig] +Windows.Win32.Security.Apis.AddAccessAllowedAce : dwAceRevision...UInt32 => ACE_REVISION +Windows.Win32.Security.Apis.AddAccessAllowedAceEx : dwAceRevision...UInt32 => ACE_REVISION +Windows.Win32.Security.Apis.AddAccessAllowedObjectAce : dwAceRevision...UInt32 => ACE_REVISION +Windows.Win32.Security.Apis.AddAccessDeniedAce : dwAceRevision...UInt32 => ACE_REVISION +Windows.Win32.Security.Apis.AddAccessDeniedAceEx : dwAceRevision...UInt32 => ACE_REVISION +Windows.Win32.Security.Apis.AddAccessDeniedObjectAce : dwAceRevision...UInt32 => ACE_REVISION +Windows.Win32.Security.Apis.AddAce : dwAceRevision...UInt32 => ACE_REVISION +Windows.Win32.Security.Apis.AddAuditAccessAce : dwAceRevision...UInt32 => ACE_REVISION +Windows.Win32.Security.Apis.AddAuditAccessAceEx : dwAceRevision...UInt32 => ACE_REVISION +Windows.Win32.Security.Apis.AddAuditAccessObjectAce : dwAceRevision...UInt32 => ACE_REVISION +Windows.Win32.Security.Apis.AddConditionalAce : dwAceRevision...UInt32 => ACE_REVISION +Windows.Win32.Security.Apis.AddResourceAttributeAce : dwAceRevision...UInt32 => ACE_REVISION +Windows.Win32.Security.Apis.AddScopedPolicyIDAce : dwAceRevision...UInt32 => ACE_REVISION +Windows.Win32.System.Ole.Apis.OleDuplicateData : uiFlags...UInt32 => GLOBAL_ALLOC_FLAGS +Windows.Win32.System.Ole.Apis.ReleaseStgMedium : param0 : [In] => [In,Out] +Windows.Win32.System.Ole.IDropSource.GiveFeedback : => [PreserveSig] +Windows.Win32.System.Ole.IDropSource.QueryContinueDrag : => [PreserveSig] +Windows.Win32.System.RemoteDesktop.IWTSVirtualChannelManager.CreateListener : pszChannelName...Byte* => PSTR +Windows.Win32.UI.Controls.Apis.CloseThemeData : hTheme...IntPtr => HTHEME +Windows.Win32.UI.Controls.Apis.DrawThemeBackground : hTheme...IntPtr => HTHEME +Windows.Win32.UI.Controls.Apis.DrawThemeBackgroundEx : hTheme...IntPtr => HTHEME +Windows.Win32.UI.Controls.Apis.DrawThemeEdge : hTheme...IntPtr => HTHEME +Windows.Win32.UI.Controls.Apis.DrawThemeIcon : hTheme...IntPtr => HTHEME +Windows.Win32.UI.Controls.Apis.DrawThemeText : hTheme...IntPtr => HTHEME +Windows.Win32.UI.Controls.Apis.DrawThemeTextEx : hTheme...IntPtr => HTHEME +Windows.Win32.UI.Controls.Apis.GetThemeAnimationProperty : hTheme...IntPtr => HTHEME +Windows.Win32.UI.Controls.Apis.GetThemeAnimationTransform : hTheme...IntPtr => HTHEME +Windows.Win32.UI.Controls.Apis.GetThemeBackgroundContentRect : hTheme...IntPtr => HTHEME +Windows.Win32.UI.Controls.Apis.GetThemeBackgroundExtent : hTheme...IntPtr => HTHEME +Windows.Win32.UI.Controls.Apis.GetThemeBackgroundRegion : hTheme...IntPtr => HTHEME +Windows.Win32.UI.Controls.Apis.GetThemeBitmap : hTheme...IntPtr => HTHEME +Windows.Win32.UI.Controls.Apis.GetThemeBool : hTheme...IntPtr => HTHEME +Windows.Win32.UI.Controls.Apis.GetThemeColor : hTheme...IntPtr => HTHEME +Windows.Win32.UI.Controls.Apis.GetThemeEnumValue : hTheme...IntPtr => HTHEME +Windows.Win32.UI.Controls.Apis.GetThemeFilename : hTheme...IntPtr => HTHEME +Windows.Win32.UI.Controls.Apis.GetThemeFont : hTheme...IntPtr => HTHEME +Windows.Win32.UI.Controls.Apis.GetThemeInt : hTheme...IntPtr => HTHEME +Windows.Win32.UI.Controls.Apis.GetThemeIntList : hTheme...IntPtr => HTHEME +Windows.Win32.UI.Controls.Apis.GetThemeMargins : hTheme...IntPtr => HTHEME +Windows.Win32.UI.Controls.Apis.GetThemeMetric : hTheme...IntPtr => HTHEME +Windows.Win32.UI.Controls.Apis.GetThemePartSize : hTheme...IntPtr => HTHEME +Windows.Win32.UI.Controls.Apis.GetThemePosition : hTheme...IntPtr => HTHEME +Windows.Win32.UI.Controls.Apis.GetThemePropertyOrigin : hTheme...IntPtr => HTHEME +Windows.Win32.UI.Controls.Apis.GetThemeRect : hTheme...IntPtr => HTHEME +Windows.Win32.UI.Controls.Apis.GetThemeStream : hTheme...IntPtr => HTHEME +Windows.Win32.UI.Controls.Apis.GetThemeString : hTheme...IntPtr => HTHEME +Windows.Win32.UI.Controls.Apis.GetThemeSysBool : hTheme...IntPtr => HTHEME +Windows.Win32.UI.Controls.Apis.GetThemeSysColor : hTheme...IntPtr => HTHEME +Windows.Win32.UI.Controls.Apis.GetThemeSysColorBrush : hTheme...IntPtr => HTHEME +Windows.Win32.UI.Controls.Apis.GetThemeSysFont : hTheme...IntPtr => HTHEME +Windows.Win32.UI.Controls.Apis.GetThemeSysInt : hTheme...IntPtr => HTHEME +Windows.Win32.UI.Controls.Apis.GetThemeSysSize : hTheme...IntPtr => HTHEME +Windows.Win32.UI.Controls.Apis.GetThemeSysString : hTheme...IntPtr => HTHEME +Windows.Win32.UI.Controls.Apis.GetThemeTextExtent : hTheme...IntPtr => HTHEME +Windows.Win32.UI.Controls.Apis.GetThemeTextMetrics : hTheme...IntPtr => HTHEME +Windows.Win32.UI.Controls.Apis.GetThemeTimingFunction : hTheme...IntPtr => HTHEME +Windows.Win32.UI.Controls.Apis.GetThemeTransitionDuration : hTheme...IntPtr => HTHEME +Windows.Win32.UI.Controls.Apis.GetWindowTheme : return...IntPtr => HTHEME +Windows.Win32.UI.Controls.Apis.HitTestThemeBackground : hTheme...IntPtr => HTHEME +Windows.Win32.UI.Controls.Apis.ILD_ASYNC removed +Windows.Win32.UI.Controls.Apis.ILD_BLEND25 removed +Windows.Win32.UI.Controls.Apis.ILD_DPISCALE removed +Windows.Win32.UI.Controls.Apis.ILD_IMAGE removed +Windows.Win32.UI.Controls.Apis.ILD_OVERLAYMASK removed +Windows.Win32.UI.Controls.Apis.ILD_PRESERVEALPHA removed +Windows.Win32.UI.Controls.Apis.ILD_ROP removed +Windows.Win32.UI.Controls.Apis.ILD_SCALE removed +Windows.Win32.UI.Controls.Apis.ILD_TRANSPARENT removed +Windows.Win32.UI.Controls.Apis.IsThemeBackgroundPartiallyTransparent : hTheme...IntPtr => HTHEME +Windows.Win32.UI.Controls.Apis.IsThemePartDefined : hTheme...IntPtr => HTHEME +Windows.Win32.UI.Controls.Apis.OpenThemeData : return...IntPtr => HTHEME +Windows.Win32.UI.Controls.Apis.OpenThemeDataEx : return...IntPtr => HTHEME +Windows.Win32.UI.Controls.HTHEME added +Windows.Win32.UI.Controls.IMAGE_LIST_DRAW_STYLE.ILD_ASYNC added +Windows.Win32.UI.Controls.IMAGE_LIST_DRAW_STYLE.ILD_BLEND25 added +Windows.Win32.UI.Controls.IMAGE_LIST_DRAW_STYLE.ILD_DPISCALE added +Windows.Win32.UI.Controls.IMAGE_LIST_DRAW_STYLE.ILD_IMAGE added +Windows.Win32.UI.Controls.IMAGE_LIST_DRAW_STYLE.ILD_OVERLAYMASK added +Windows.Win32.UI.Controls.IMAGE_LIST_DRAW_STYLE.ILD_PRESERVEALPHA added +Windows.Win32.UI.Controls.IMAGE_LIST_DRAW_STYLE.ILD_ROP added +Windows.Win32.UI.Controls.IMAGE_LIST_DRAW_STYLE.ILD_SCALE added +Windows.Win32.UI.Controls.IMAGE_LIST_DRAW_STYLE.ILD_TRANSPARENT added +Windows.Win32.UI.HiDpi.Apis.OpenThemeDataForDpi : return...IntPtr => HTHEME +Windows.Win32.UI.Shell.Apis.SHGetStockIconInfo : uFlags...UInt32 => SHGSI_FLAGS +Windows.Win32.UI.Shell.Apis.SHGSI_ICONLOCATION removed +Windows.Win32.UI.Shell.PropertiesSystem.Apis.SHGetPropertyStoreFromParsingName : ppv : [Out] => [ComOutPtr,Out] +Windows.Win32.UI.Shell.SHGSI_FLAGS added +Windows.Win32.UI.Shell.SHGSI_FLAGS.SHGSI_ICON added +Windows.Win32.UI.Shell.SHGSI_FLAGS.SHGSI_ICONLOCATION added +Windows.Win32.UI.Shell.SHGSI_FLAGS.SHGSI_LARGEICON added +Windows.Win32.UI.Shell.SHGSI_FLAGS.SHGSI_LINKOVERLAY added +Windows.Win32.UI.Shell.SHGSI_FLAGS.SHGSI_SELECTED added +Windows.Win32.UI.Shell.SHGSI_FLAGS.SHGSI_SHELLICONSIZE added +Windows.Win32.UI.Shell.SHGSI_FLAGS.SHGSI_SMALLICON added +Windows.Win32.UI.Shell.SHGSI_FLAGS.SHGSI_SYSICONINDEX added WLDP_GETLOCKDOWNPOLICY_FN : => [NativeEncoding(ansi)] WLDP_ISAPPAPPROVEDBYPOLICY_FN : => [NativeEncoding(ansi)] WLDP_ISCLASSINAPPROVEDLIST_FN : => [NativeEncoding(ansi)] From 1e85ffd9e379c1755fb142c14a369664d7757a49 Mon Sep 17 00:00:00 2001 From: Mike Battista <13860912+mikebattista@users.noreply.github.com> Date: Tue, 11 Oct 2022 09:36:20 -0700 Subject: [PATCH 4/5] Fixed bad merge. --- scripts/ChangesSinceLastRelease.txt | 187 ---------------------------- 1 file changed, 187 deletions(-) diff --git a/scripts/ChangesSinceLastRelease.txt b/scripts/ChangesSinceLastRelease.txt index 411326b8d..0abb9f704 100644 --- a/scripts/ChangesSinceLastRelease.txt +++ b/scripts/ChangesSinceLastRelease.txt @@ -1154,193 +1154,6 @@ WER_RUNTIME_EXCEPTION_DEBUGGER_LAUNCH : => [NativeEncoding(ansi)] WER_RUNTIME_EXCEPTION_EVENT_FUNCTION : => [NativeEncoding(ansi)] WER_RUNTIME_EXCEPTION_EVENT_SIGNATURE_FUNCTION : => [NativeEncoding(ansi)] WIAU_DEBUG_TSTR : => [NativeEncoding(ansi)] -Windows.Win32.Graphics.DirectWrite.IDWriteAsyncResult : [Guid(3458595069,34363,19731,150,81,193,248,141,199,63,226)] => [Agile,Guid(3458595069,34363,19731,150,81,193,248,141,199,63,226)] -Windows.Win32.Graphics.DirectWrite.IDWriteBitmapRenderTarget : [Guid(1582969507,36351,18291,159,246,6,150,234,183,114,103),SupportedOSPlatform(windows6.1)] => [Agile,Guid(1582969507,36351,18291,159,246,6,150,234,183,114,103),SupportedOSPlatform(windows6.1)] -Windows.Win32.Graphics.DirectWrite.IDWriteBitmapRenderTarget1 : [Guid(2032042648,16115,16944,152,128,201,189,236,196,32,100),SupportedOSPlatform(windows8.0)] => [Agile,Guid(2032042648,16115,16944,152,128,201,189,236,196,32,100),SupportedOSPlatform(windows8.0)] -Windows.Win32.Graphics.DirectWrite.IDWriteColorGlyphRunEnumerator : [Guid(3542072855,61783,16802,141,36,203,119,158,5,96,232),SupportedOSPlatform(windows8.1)] => [Agile,Guid(3542072855,61783,16802,141,36,203,119,158,5,96,232),SupportedOSPlatform(windows8.1)] -Windows.Win32.Graphics.DirectWrite.IDWriteColorGlyphRunEnumerator1 : [Guid(2086635226,51105,20229,184,225,85,161,121,254,90,53)] => [Agile,Guid(2086635226,51105,20229,184,225,85,161,121,254,90,53)] -Windows.Win32.Graphics.DirectWrite.IDWriteFactory : [Guid(3092901466,55352,19291,162,232,26,220,125,147,219,72),SupportedOSPlatform(windows6.1)] => [Agile,Guid(3092901466,55352,19291,162,232,26,220,125,147,219,72),SupportedOSPlatform(windows6.1)] -Windows.Win32.Graphics.DirectWrite.IDWriteFactory1 : [Guid(811020185,56006,16859,161,110,4,134,48,126,96,106),SupportedOSPlatform(windows8.0)] => [Agile,Guid(811020185,56006,16859,161,110,4,134,48,126,96,106),SupportedOSPlatform(windows8.0)] -Windows.Win32.Graphics.DirectWrite.IDWriteFactory2 : [Guid(70909024,51780,18836,141,238,58,154,247,183,50,236),SupportedOSPlatform(windows8.1)] => [Agile,Guid(70909024,51780,18836,141,238,58,154,247,183,50,236),SupportedOSPlatform(windows8.1)] -Windows.Win32.Graphics.DirectWrite.IDWriteFactory3 : [Guid(2585477571,54203,18026,135,252,254,103,85,106,59,101),SupportedOSPlatform(windows10.0.10240)] => [Agile,Guid(2585477571,54203,18026,135,252,254,103,85,106,59,101),SupportedOSPlatform(windows10.0.10240)] -Windows.Win32.Graphics.DirectWrite.IDWriteFactory4 : [Guid(1259035603,1943,17737,138,197,254,145,92,197,56,86)] => [Agile,Guid(1259035603,1943,17737,138,197,254,145,92,197,56,86)] -Windows.Win32.Graphics.DirectWrite.IDWriteFactory5 : [Guid(2509093274,48682,20233,175,125,101,24,152,3,209,211)] => [Agile,Guid(2509093274,48682,20233,175,125,101,24,152,3,209,211)] -Windows.Win32.Graphics.DirectWrite.IDWriteFactory6 : [Guid(4084485504,8695,17131,179,93,153,91,199,47,194,35)] => [Agile,Guid(4084485504,8695,17131,179,93,153,91,199,47,194,35)] -Windows.Win32.Graphics.DirectWrite.IDWriteFactory7 : [Guid(902881459,36982,19758,160,22,169,27,86,138,6,180)] => [Agile,Guid(902881459,36982,19758,160,22,169,27,86,138,6,180)] -Windows.Win32.Graphics.DirectWrite.IDWriteFont : [Guid(2899404438,35860,20317,135,126,254,63,193,211,39,55),SupportedOSPlatform(windows6.1)] => [Agile,Guid(2899404438,35860,20317,135,126,254,63,193,211,39,55),SupportedOSPlatform(windows6.1)] -Windows.Win32.Graphics.DirectWrite.IDWriteFont1 : [Guid(2899404438,35860,20317,135,126,254,63,193,211,39,56),SupportedOSPlatform(windows8.0)] => [Agile,Guid(2899404438,35860,20317,135,126,254,63,193,211,39,56),SupportedOSPlatform(windows8.0)] -Windows.Win32.Graphics.DirectWrite.IDWriteFont2 : [Guid(695504598,35996,19050,190,11,217,18,232,83,137,68),SupportedOSPlatform(windows8.1)] => [Agile,Guid(695504598,35996,19050,190,11,217,18,232,83,137,68),SupportedOSPlatform(windows8.1)] -Windows.Win32.Graphics.DirectWrite.IDWriteFont3 : [Guid(695504598,35996,19050,190,11,217,18,232,83,137,68),SupportedOSPlatform(windows10.0.10240)] => [Agile,Guid(695504598,35996,19050,190,11,217,18,232,83,137,68),SupportedOSPlatform(windows10.0.10240)] -Windows.Win32.Graphics.DirectWrite.IDWriteFontCollection : [Guid(2823613954,16106,20206,168,39,135,193,160,42,15,204),SupportedOSPlatform(windows6.1)] => [Agile,Guid(2823613954,16106,20206,168,39,135,193,160,42,15,204),SupportedOSPlatform(windows6.1)] -Windows.Win32.Graphics.DirectWrite.IDWriteFontCollection1 : [Guid(1398296897,55800,16533,131,33,215,60,246,189,17,108),SupportedOSPlatform(windows6.1)] => [Agile,Guid(1398296897,55800,16533,131,33,215,60,246,189,17,108),SupportedOSPlatform(windows6.1)] -Windows.Win32.Graphics.DirectWrite.IDWriteFontCollection2 : [Guid(1363163590,17943,16484,191,139,146,234,131,229,6,224)] => [Agile,Guid(1363163590,17943,16484,191,139,146,234,131,229,6,224)] -Windows.Win32.Graphics.DirectWrite.IDWriteFontCollection3 : [Guid(2765116838,63971,20005,147,183,158,48,159,58,248,233)] => [Agile,Guid(2765116838,63971,20005,147,183,158,48,159,58,248,233)] -Windows.Win32.Graphics.DirectWrite.IDWriteFontCollectionLoader : [Guid(3433636068,21232,18731,191,168,41,199,46,224,164,104),SupportedOSPlatform(windows6.1)] => [Agile,Guid(3433636068,21232,18731,191,168,41,199,46,224,164,104),SupportedOSPlatform(windows6.1)] -Windows.Win32.Graphics.DirectWrite.IDWriteFontDownloadListener : [Guid(2960123321,17388,17299,136,27,219,228,220,114,253,167),SupportedOSPlatform(windows8.1)] => [Agile,Guid(2960123321,17388,17299,136,27,219,228,220,114,253,167),SupportedOSPlatform(windows8.1)] -Windows.Win32.Graphics.DirectWrite.IDWriteFontDownloadQueue : [Guid(3072221266,23274,20387,131,46,246,13,67,31,126,145),SupportedOSPlatform(windows8.1)] => [Agile,Guid(3072221266,23274,20387,131,46,246,13,67,31,126,145),SupportedOSPlatform(windows8.1)] -Windows.Win32.Graphics.DirectWrite.IDWriteFontFace : [Guid(1598652493,28708,19779,191,169,210,89,132,245,56,73),SupportedOSPlatform(windows6.1)] => [Agile,Guid(1598652493,28708,19779,191,169,210,89,132,245,56,73),SupportedOSPlatform(windows6.1)] -Windows.Win32.Graphics.DirectWrite.IDWriteFontFace1 : [Guid(2803826100,40923,18488,173,144,207,195,190,140,61,175),SupportedOSPlatform(windows8.0)] => [Agile,Guid(2803826100,40923,18488,173,144,207,195,190,140,61,175),SupportedOSPlatform(windows8.0)] -Windows.Win32.Graphics.DirectWrite.IDWriteFontFace2 : [Guid(3635898623,25788,20070,152,43,236,142,135,246,147,247),SupportedOSPlatform(windows8.1)] => [Agile,Guid(3635898623,25788,20070,152,43,236,142,135,246,147,247),SupportedOSPlatform(windows8.1)] -Windows.Win32.Graphics.DirectWrite.IDWriteFontFace3 : [Guid(3548214680,2494,16930,162,54,32,129,52,28,193,242),SupportedOSPlatform(windows10.0.10240)] => [Agile,Guid(3548214680,2494,16930,162,54,32,129,52,28,193,242),SupportedOSPlatform(windows10.0.10240)] -Windows.Win32.Graphics.DirectWrite.IDWriteFontFace4 : [Guid(670214404,20152,17437,150,120,5,99,245,62,62,47)] => [Agile,Guid(670214404,20152,17437,150,120,5,99,245,62,62,47)] -Windows.Win32.Graphics.DirectWrite.IDWriteFontFace5 : [Guid(2565862309,46695,18330,177,69,226,250,91,159,220,41)] => [Agile,Guid(2565862309,46695,18330,177,69,226,250,91,159,220,41)] -Windows.Win32.Graphics.DirectWrite.IDWriteFontFace6 : [Guid(3299999259,28292,18389,181,76,165,151,152,27,6,173)] => [Agile,Guid(3299999259,28292,18389,181,76,165,151,152,27,6,173)] -Windows.Win32.Graphics.DirectWrite.IDWriteFontFaceReference : [Guid(1585424330,56803,16972,137,240,159,205,111,237,88,205),SupportedOSPlatform(windows10.0.10240)] => [Agile,Guid(1585424330,56803,16972,137,240,159,205,111,237,88,205),SupportedOSPlatform(windows10.0.10240)] -Windows.Win32.Graphics.DirectWrite.IDWriteFontFaceReference1 : [Guid(3229744759,12241,16812,165,163,52,152,60,75,166,26)] => [Agile,Guid(3229744759,12241,16812,165,163,52,152,60,75,166,26)] -Windows.Win32.Graphics.DirectWrite.IDWriteFontFallback : [Guid(4020242681,63393,18623,176,92,242,36,113,60,192,255),SupportedOSPlatform(windows8.1)] => [Agile,Guid(4020242681,63393,18623,176,92,242,36,113,60,192,255),SupportedOSPlatform(windows8.1)] -Windows.Win32.Graphics.DirectWrite.IDWriteFontFallback1 : [Guid(597121437,56589,18049,189,106,244,243,30,170,222,119)] => [Agile,Guid(597121437,56589,18049,189,106,244,243,30,170,222,119)] -Windows.Win32.Graphics.DirectWrite.IDWriteFontFallbackBuilder : [Guid(4253560070,35514,20408,184,73,139,232,183,62,20,222),SupportedOSPlatform(windows8.1)] => [Agile,Guid(4253560070,35514,20408,184,73,139,232,183,62,20,222),SupportedOSPlatform(windows8.1)] -Windows.Win32.Graphics.DirectWrite.IDWriteFontFamily : [Guid(3659585775,33066,19523,152,2,98,236,74,189,122,221),SupportedOSPlatform(windows6.1)] => [Agile,Guid(3659585775,33066,19523,152,2,98,236,74,189,122,221),SupportedOSPlatform(windows6.1)] -Windows.Win32.Graphics.DirectWrite.IDWriteFontFamily1 : [Guid(3659585775,33066,19523,152,2,98,236,74,189,122,223),SupportedOSPlatform(windows10.0.10240)] => [Agile,Guid(3659585775,33066,19523,152,2,98,236,74,189,122,223),SupportedOSPlatform(windows10.0.10240)] -Windows.Win32.Graphics.DirectWrite.IDWriteFontFamily2 : [Guid(1054121591,41880,16993,185,207,193,38,194,19,30,243)] => [Agile,Guid(1054121591,41880,16993,185,207,193,38,194,19,30,243)] -Windows.Win32.Graphics.DirectWrite.IDWriteFontFile : [Guid(1939703914,52981,18396,135,105,26,139,65,190,187,176),SupportedOSPlatform(windows6.1)] => [Agile,Guid(1939703914,52981,18396,135,105,26,139,65,190,187,176),SupportedOSPlatform(windows6.1)] -Windows.Win32.Graphics.DirectWrite.IDWriteFontFileEnumerator : [Guid(1920290889,24567,17245,131,72,75,233,124,250,108,124),SupportedOSPlatform(windows6.1)] => [Agile,Guid(1920290889,24567,17245,131,72,75,233,124,250,108,124),SupportedOSPlatform(windows6.1)] -Windows.Win32.Graphics.DirectWrite.IDWriteFontFileLoader : [Guid(1920773454,54959,19614,138,8,214,149,177,28,170,73),SupportedOSPlatform(windows6.1)] => [Agile,Guid(1920773454,54959,19614,138,8,214,149,177,28,170,73),SupportedOSPlatform(windows6.1)] -Windows.Win32.Graphics.DirectWrite.IDWriteFontFileStream : [Guid(1833461246,2744,19857,143,98,93,214,190,52,163,224),SupportedOSPlatform(windows6.1)] => [Agile,Guid(1833461246,2744,19857,143,98,93,214,190,52,163,224),SupportedOSPlatform(windows6.1)] -Windows.Win32.Graphics.DirectWrite.IDWriteFontList : [Guid(437093432,7575,20161,174,249,162,251,134,237,106,203),SupportedOSPlatform(windows6.1)] => [Agile,Guid(437093432,7575,20161,174,249,162,251,134,237,106,203),SupportedOSPlatform(windows6.1)] -Windows.Win32.Graphics.DirectWrite.IDWriteFontList1 : [Guid(3659585775,33066,19523,152,2,98,236,74,189,122,222),SupportedOSPlatform(windows10.0.10240)] => [Agile,Guid(3659585775,33066,19523,152,2,98,236,74,189,122,222),SupportedOSPlatform(windows10.0.10240)] -Windows.Win32.Graphics.DirectWrite.IDWriteFontList2 : [Guid(3228973620,30639,17498,183,53,8,195,123,10,91,245)] => [Agile,Guid(3228973620,30639,17498,183,53,8,195,123,10,91,245)] -Windows.Win32.Graphics.DirectWrite.IDWriteFontResource : [Guid(528497270,26737,18664,152,127,185,117,85,28,80,242)] => [Agile,Guid(528497270,26737,18664,152,127,185,117,85,28,80,242)] -Windows.Win32.Graphics.DirectWrite.IDWriteFontSet : [Guid(1398296897,55800,16533,131,33,215,60,246,189,17,107),SupportedOSPlatform(windows10.0.10240)] => [Agile,Guid(1398296897,55800,16533,131,33,215,60,246,189,17,107),SupportedOSPlatform(windows10.0.10240)] -Windows.Win32.Graphics.DirectWrite.IDWriteFontSet1 : [Guid(2124405381,27794,16467,188,71,122,227,83,13,180,211)] => [Agile,Guid(2124405381,27794,16467,188,71,122,227,83,13,180,211)] -Windows.Win32.Graphics.DirectWrite.IDWriteFontSet2 : [Guid(3699289369,58700,17327,178,218,78,43,121,186,63,127)] => [Agile,Guid(3699289369,58700,17327,178,218,78,43,121,186,63,127)] -Windows.Win32.Graphics.DirectWrite.IDWriteFontSet3 : [Guid(2080849650,42996,16453,140,50,138,184,174,100,15,144)] => [Agile,Guid(2080849650,42996,16453,140,50,138,184,174,100,15,144)] -Windows.Win32.Graphics.DirectWrite.IDWriteFontSetBuilder : [Guid(795093758,40040,20288,184,190,69,116,1,175,203,61)] => [Agile,Guid(795093758,40040,20288,184,190,69,116,1,175,203,61)] -Windows.Win32.Graphics.DirectWrite.IDWriteFontSetBuilder1 : [Guid(1073181023,15580,19910,155,114,236,86,33,220,202,253)] => [Agile,Guid(1073181023,15580,19910,155,114,236,86,33,220,202,253)] -Windows.Win32.Graphics.DirectWrite.IDWriteFontSetBuilder2 : [Guid(3998983698,45361,17980,143,79,49,137,185,64,30,69)] => [Agile,Guid(3998983698,45361,17980,143,79,49,137,185,64,30,69)] -Windows.Win32.Graphics.DirectWrite.IDWriteGdiInterop : [Guid(517837969,38995,17049,137,143,100,50,152,59,111,58),SupportedOSPlatform(windows6.1)] => [Agile,Guid(517837969,38995,17049,137,143,100,50,152,59,111,58),SupportedOSPlatform(windows6.1)] -Windows.Win32.Graphics.DirectWrite.IDWriteGdiInterop1 : [Guid(1163312752,15037,20336,144,190,66,23,128,166,245,21)] => [Agile,Guid(1163312752,15037,20336,144,190,66,23,128,166,245,21)] -Windows.Win32.Graphics.DirectWrite.IDWriteGlyphRunAnalysis : [Guid(2107104247,57477,17108,129,227,106,136,59,222,209,24),SupportedOSPlatform(windows6.1)] => [Agile,Guid(2107104247,57477,17108,129,227,106,136,59,222,209,24),SupportedOSPlatform(windows6.1)] -Windows.Win32.Graphics.DirectWrite.IDWriteInlineObject : [Guid(2201615843,4207,18347,131,115,28,98,149,235,16,179),SupportedOSPlatform(windows6.1)] => [Agile,Guid(2201615843,4207,18347,131,115,28,98,149,235,16,179),SupportedOSPlatform(windows6.1)] -Windows.Win32.Graphics.DirectWrite.IDWriteInMemoryFontFileLoader : [Guid(3692048199,41261,19228,130,45,158,17,126,51,4,63)] => [Agile,Guid(3692048199,41261,19228,130,45,158,17,126,51,4,63)] -Windows.Win32.Graphics.DirectWrite.IDWriteLocalFontFileLoader : [Guid(3000628204,51710,18961,162,236,216,98,8,247,192,162)] => [Agile,Guid(3000628204,51710,18961,162,236,216,98,8,247,192,162)] -Windows.Win32.Graphics.DirectWrite.IDWriteLocalizedStrings : [Guid(136667657,2458,19252,184,109,194,43,17,14,119,113),SupportedOSPlatform(windows6.1)] => [Agile,Guid(136667657,2458,19252,184,109,194,43,17,14,119,113),SupportedOSPlatform(windows6.1)] -Windows.Win32.Graphics.DirectWrite.IDWriteNumberSubstitution : [Guid(344480969,47792,20368,182,237,92,54,106,44,208,61)] => [Agile,Guid(344480969,47792,20368,182,237,92,54,106,44,208,61)] -Windows.Win32.Graphics.DirectWrite.IDWritePixelSnapping : [Guid(3941835482,60660,19748,182,68,179,79,104,66,2,75),SupportedOSPlatform(windows6.1)] => [Agile,Guid(3941835482,60660,19748,182,68,179,79,104,66,2,75),SupportedOSPlatform(windows6.1)] -Windows.Win32.Graphics.DirectWrite.IDWriteRemoteFontFileLoader : [Guid(1751420035,28382,18112,171,70,32,8,58,136,127,222)] => [Agile,Guid(1751420035,28382,18112,171,70,32,8,58,136,127,222)] -Windows.Win32.Graphics.DirectWrite.IDWriteRemoteFontFileStream : [Guid(1303606650,11378,20185,178,182,26,186,190,26,255,156)] => [Agile,Guid(1303606650,11378,20185,178,182,26,186,190,26,255,156)] -Windows.Win32.Graphics.DirectWrite.IDWriteRenderingParams : [Guid(789423418,10973,18381,130,238,217,236,52,104,142,117),SupportedOSPlatform(windows6.1)] => [Agile,Guid(789423418,10973,18381,130,238,217,236,52,104,142,117),SupportedOSPlatform(windows6.1)] -Windows.Win32.Graphics.DirectWrite.IDWriteRenderingParams1 : [Guid(2487303412,42748,16968,139,80,102,116,52,143,202,211),SupportedOSPlatform(windows8.0)] => [Agile,Guid(2487303412,42748,16968,139,80,102,116,52,143,202,211),SupportedOSPlatform(windows8.0)] -Windows.Win32.Graphics.DirectWrite.IDWriteRenderingParams2 : [Guid(4191621571,38775,16558,135,232,62,90,249,191,9,72),SupportedOSPlatform(windows8.1)] => [Agile,Guid(4191621571,38775,16558,135,232,62,90,249,191,9,72),SupportedOSPlatform(windows8.1)] -Windows.Win32.Graphics.DirectWrite.IDWriteRenderingParams3 : [Guid(3079818154,14619,16682,140,92,228,76,194,216,103,220),SupportedOSPlatform(windows10.0.10240)] => [Agile,Guid(3079818154,14619,16682,140,92,228,76,194,216,103,220),SupportedOSPlatform(windows10.0.10240)] -Windows.Win32.Graphics.DirectWrite.IDWriteStringList : [Guid(3488493888,4439,18378,139,133,49,191,207,63,45,14)] => [Agile,Guid(3488493888,4439,18378,139,133,49,191,207,63,45,14)] -Windows.Win32.Graphics.DirectWrite.IDWriteTextAnalysisSink : [Guid(1477496132,3232,18177,179,250,190,197,24,42,228,246),SupportedOSPlatform(windows6.1)] => [Agile,Guid(1477496132,3232,18177,179,250,190,197,24,42,228,246),SupportedOSPlatform(windows6.1)] -Windows.Win32.Graphics.DirectWrite.IDWriteTextAnalysisSink1 : [Guid(2967028128,34279,19851,159,211,92,237,153,52,72,42),SupportedOSPlatform(windows8.0)] => [Agile,Guid(2967028128,34279,19851,159,211,92,237,153,52,72,42),SupportedOSPlatform(windows8.0)] -Windows.Win32.Graphics.DirectWrite.IDWriteTextAnalysisSource : [Guid(1754143320,20628,18376,173,200,251,206,166,10,233,43),SupportedOSPlatform(windows6.1)] => [Agile,Guid(1754143320,20628,18376,173,200,251,206,166,10,233,43),SupportedOSPlatform(windows6.1)] -Windows.Win32.Graphics.DirectWrite.IDWriteTextAnalysisSource1 : [Guid(1671232216,4020,19233,165,138,6,121,32,18,0,9),SupportedOSPlatform(windows8.0)] => [Agile,Guid(1671232216,4020,19233,165,138,6,121,32,18,0,9),SupportedOSPlatform(windows8.0)] -Windows.Win32.Graphics.DirectWrite.IDWriteTextAnalyzer : [Guid(3085309502,32582,17332,132,179,228,230,36,156,54,93),SupportedOSPlatform(windows6.1)] => [Agile,Guid(3085309502,32582,17332,132,179,228,230,36,156,54,93),SupportedOSPlatform(windows6.1)] -Windows.Win32.Graphics.DirectWrite.IDWriteTextAnalyzer1 : [Guid(2161825792,57887,20099,150,206,191,204,229,0,219,124),SupportedOSPlatform(windows8.0)] => [Agile,Guid(2161825792,57887,20099,150,206,191,204,229,0,219,124),SupportedOSPlatform(windows8.0)] -Windows.Win32.Graphics.DirectWrite.IDWriteTextAnalyzer2 : [Guid(1429905395,22163,19959,181,43,116,128,111,127,46,185),SupportedOSPlatform(windows8.1)] => [Agile,Guid(1429905395,22163,19959,181,43,116,128,111,127,46,185),SupportedOSPlatform(windows8.1)] -Windows.Win32.Graphics.DirectWrite.IDWriteTextFormat : [Guid(2626709528,12759,20435,161,81,124,94,34,93,181,90),SupportedOSPlatform(windows6.1)] => [Agile,Guid(2626709528,12759,20435,161,81,124,94,34,93,181,90),SupportedOSPlatform(windows6.1)] -Windows.Win32.Graphics.DirectWrite.IDWriteTextFormat1 : [Guid(1595362121,3467,19707,139,202,241,204,233,208,108,103),SupportedOSPlatform(windows8.1)] => [Agile,Guid(1595362121,3467,19707,139,202,241,204,233,208,108,103),SupportedOSPlatform(windows8.1)] -Windows.Win32.Graphics.DirectWrite.IDWriteTextFormat2 : [Guid(4135456477,40509,20172,140,50,65,131,37,61,254,112),SupportedOSPlatform(windows8.1)] => [Agile,Guid(4135456477,40509,20172,140,50,65,131,37,61,254,112),SupportedOSPlatform(windows8.1)] -Windows.Win32.Graphics.DirectWrite.IDWriteTextFormat3 : [Guid(1832605249,58704,17165,168,91,183,191,72,169,52,39)] => [Agile,Guid(1832605249,58704,17165,168,91,183,191,72,169,52,39)] -Windows.Win32.Graphics.DirectWrite.IDWriteTextLayout : [Guid(1400074295,27924,16651,155,254,11,24,43,183,9,97),SupportedOSPlatform(windows6.1)] => [Agile,Guid(1400074295,27924,16651,155,254,11,24,43,183,9,97),SupportedOSPlatform(windows6.1)] -Windows.Win32.Graphics.DirectWrite.IDWriteTextLayout1 : [Guid(2422528034,32935,18012,169,134,223,101,247,139,143,235),SupportedOSPlatform(windows8.0)] => [Agile,Guid(2422528034,32935,18012,169,134,223,101,247,139,143,235),SupportedOSPlatform(windows8.0)] -Windows.Win32.Graphics.DirectWrite.IDWriteTextLayout2 : [Guid(278118799,36190,17392,176,100,9,23,49,27,82,94),SupportedOSPlatform(windows8.1)] => [Agile,Guid(278118799,36190,17392,176,100,9,23,49,27,82,94),SupportedOSPlatform(windows8.1)] -Windows.Win32.Graphics.DirectWrite.IDWriteTextLayout3 : [Guid(131976530,526,19944,172,51,108,149,61,131,249,45),SupportedOSPlatform(windows8.1)] => [Agile,Guid(131976530,526,19944,172,51,108,149,61,131,249,45),SupportedOSPlatform(windows8.1)] -Windows.Win32.Graphics.DirectWrite.IDWriteTextLayout4 : [Guid(95010626,8767,17473,181,251,130,99,104,95,85,233)] => [Agile,Guid(95010626,8767,17473,181,251,130,99,104,95,85,233)] -Windows.Win32.Graphics.DirectWrite.IDWriteTextRenderer : [Guid(4018831669,23750,17918,136,37,197,160,114,78,184,25),SupportedOSPlatform(windows6.1)] => [Agile,Guid(4018831669,23750,17918,136,37,197,160,114,78,184,25),SupportedOSPlatform(windows6.1)] -Windows.Win32.Graphics.DirectWrite.IDWriteTextRenderer1 : [Guid(3554732340,8864,17022,170,228,125,149,116,181,157,177),SupportedOSPlatform(windows8.1)] => [Agile,Guid(3554732340,8864,17022,170,228,125,149,116,181,157,177),SupportedOSPlatform(windows8.1)] -Windows.Win32.Graphics.DirectWrite.IDWriteTypography : [Guid(1441861931,7618,19260,149,65,244,104,148,237,133,182),SupportedOSPlatform(windows6.1)] => [Agile,Guid(1441861931,7618,19260,149,65,244,104,148,237,133,182),SupportedOSPlatform(windows6.1)] -Windows.Win32.Graphics.Dxgi.IDXGIAdapter.EnumOutputs : => [PreserveSig] -Windows.Win32.Graphics.Dxgi.IDXGIFactory.EnumAdapters : => [PreserveSig] -Windows.Win32.Graphics.Dxgi.IDXGIFactory1.EnumAdapters1 : => [PreserveSig] -Windows.Win32.Security.Apis.AddAccessAllowedAce : dwAceRevision...UInt32 => ACE_REVISION -Windows.Win32.Security.Apis.AddAccessAllowedAceEx : dwAceRevision...UInt32 => ACE_REVISION -Windows.Win32.Security.Apis.AddAccessAllowedObjectAce : dwAceRevision...UInt32 => ACE_REVISION -Windows.Win32.Security.Apis.AddAccessDeniedAce : dwAceRevision...UInt32 => ACE_REVISION -Windows.Win32.Security.Apis.AddAccessDeniedAceEx : dwAceRevision...UInt32 => ACE_REVISION -Windows.Win32.Security.Apis.AddAccessDeniedObjectAce : dwAceRevision...UInt32 => ACE_REVISION -Windows.Win32.Security.Apis.AddAce : dwAceRevision...UInt32 => ACE_REVISION -Windows.Win32.Security.Apis.AddAuditAccessAce : dwAceRevision...UInt32 => ACE_REVISION -Windows.Win32.Security.Apis.AddAuditAccessAceEx : dwAceRevision...UInt32 => ACE_REVISION -Windows.Win32.Security.Apis.AddAuditAccessObjectAce : dwAceRevision...UInt32 => ACE_REVISION -Windows.Win32.Security.Apis.AddConditionalAce : dwAceRevision...UInt32 => ACE_REVISION -Windows.Win32.Security.Apis.AddResourceAttributeAce : dwAceRevision...UInt32 => ACE_REVISION -Windows.Win32.Security.Apis.AddScopedPolicyIDAce : dwAceRevision...UInt32 => ACE_REVISION -Windows.Win32.System.Ole.Apis.OleDuplicateData : uiFlags...UInt32 => GLOBAL_ALLOC_FLAGS -Windows.Win32.System.Ole.Apis.ReleaseStgMedium : param0 : [In] => [In,Out] -Windows.Win32.System.Ole.IDropSource.GiveFeedback : => [PreserveSig] -Windows.Win32.System.Ole.IDropSource.QueryContinueDrag : => [PreserveSig] -Windows.Win32.System.RemoteDesktop.IWTSVirtualChannelManager.CreateListener : pszChannelName...Byte* => PSTR -Windows.Win32.UI.Controls.Apis.CloseThemeData : hTheme...IntPtr => HTHEME -Windows.Win32.UI.Controls.Apis.DrawThemeBackground : hTheme...IntPtr => HTHEME -Windows.Win32.UI.Controls.Apis.DrawThemeBackgroundEx : hTheme...IntPtr => HTHEME -Windows.Win32.UI.Controls.Apis.DrawThemeEdge : hTheme...IntPtr => HTHEME -Windows.Win32.UI.Controls.Apis.DrawThemeIcon : hTheme...IntPtr => HTHEME -Windows.Win32.UI.Controls.Apis.DrawThemeText : hTheme...IntPtr => HTHEME -Windows.Win32.UI.Controls.Apis.DrawThemeTextEx : hTheme...IntPtr => HTHEME -Windows.Win32.UI.Controls.Apis.GetThemeAnimationProperty : hTheme...IntPtr => HTHEME -Windows.Win32.UI.Controls.Apis.GetThemeAnimationTransform : hTheme...IntPtr => HTHEME -Windows.Win32.UI.Controls.Apis.GetThemeBackgroundContentRect : hTheme...IntPtr => HTHEME -Windows.Win32.UI.Controls.Apis.GetThemeBackgroundExtent : hTheme...IntPtr => HTHEME -Windows.Win32.UI.Controls.Apis.GetThemeBackgroundRegion : hTheme...IntPtr => HTHEME -Windows.Win32.UI.Controls.Apis.GetThemeBitmap : hTheme...IntPtr => HTHEME -Windows.Win32.UI.Controls.Apis.GetThemeBool : hTheme...IntPtr => HTHEME -Windows.Win32.UI.Controls.Apis.GetThemeColor : hTheme...IntPtr => HTHEME -Windows.Win32.UI.Controls.Apis.GetThemeEnumValue : hTheme...IntPtr => HTHEME -Windows.Win32.UI.Controls.Apis.GetThemeFilename : hTheme...IntPtr => HTHEME -Windows.Win32.UI.Controls.Apis.GetThemeFont : hTheme...IntPtr => HTHEME -Windows.Win32.UI.Controls.Apis.GetThemeInt : hTheme...IntPtr => HTHEME -Windows.Win32.UI.Controls.Apis.GetThemeIntList : hTheme...IntPtr => HTHEME -Windows.Win32.UI.Controls.Apis.GetThemeMargins : hTheme...IntPtr => HTHEME -Windows.Win32.UI.Controls.Apis.GetThemeMetric : hTheme...IntPtr => HTHEME -Windows.Win32.UI.Controls.Apis.GetThemePartSize : hTheme...IntPtr => HTHEME -Windows.Win32.UI.Controls.Apis.GetThemePosition : hTheme...IntPtr => HTHEME -Windows.Win32.UI.Controls.Apis.GetThemePropertyOrigin : hTheme...IntPtr => HTHEME -Windows.Win32.UI.Controls.Apis.GetThemeRect : hTheme...IntPtr => HTHEME -Windows.Win32.UI.Controls.Apis.GetThemeStream : hTheme...IntPtr => HTHEME -Windows.Win32.UI.Controls.Apis.GetThemeString : hTheme...IntPtr => HTHEME -Windows.Win32.UI.Controls.Apis.GetThemeSysBool : hTheme...IntPtr => HTHEME -Windows.Win32.UI.Controls.Apis.GetThemeSysColor : hTheme...IntPtr => HTHEME -Windows.Win32.UI.Controls.Apis.GetThemeSysColorBrush : hTheme...IntPtr => HTHEME -Windows.Win32.UI.Controls.Apis.GetThemeSysFont : hTheme...IntPtr => HTHEME -Windows.Win32.UI.Controls.Apis.GetThemeSysInt : hTheme...IntPtr => HTHEME -Windows.Win32.UI.Controls.Apis.GetThemeSysSize : hTheme...IntPtr => HTHEME -Windows.Win32.UI.Controls.Apis.GetThemeSysString : hTheme...IntPtr => HTHEME -Windows.Win32.UI.Controls.Apis.GetThemeTextExtent : hTheme...IntPtr => HTHEME -Windows.Win32.UI.Controls.Apis.GetThemeTextMetrics : hTheme...IntPtr => HTHEME -Windows.Win32.UI.Controls.Apis.GetThemeTimingFunction : hTheme...IntPtr => HTHEME -Windows.Win32.UI.Controls.Apis.GetThemeTransitionDuration : hTheme...IntPtr => HTHEME -Windows.Win32.UI.Controls.Apis.GetWindowTheme : return...IntPtr => HTHEME -Windows.Win32.UI.Controls.Apis.HitTestThemeBackground : hTheme...IntPtr => HTHEME -Windows.Win32.UI.Controls.Apis.ILD_ASYNC removed -Windows.Win32.UI.Controls.Apis.ILD_BLEND25 removed -Windows.Win32.UI.Controls.Apis.ILD_DPISCALE removed -Windows.Win32.UI.Controls.Apis.ILD_IMAGE removed -Windows.Win32.UI.Controls.Apis.ILD_OVERLAYMASK removed -Windows.Win32.UI.Controls.Apis.ILD_PRESERVEALPHA removed -Windows.Win32.UI.Controls.Apis.ILD_ROP removed -Windows.Win32.UI.Controls.Apis.ILD_SCALE removed -Windows.Win32.UI.Controls.Apis.ILD_TRANSPARENT removed -Windows.Win32.UI.Controls.Apis.IsThemeBackgroundPartiallyTransparent : hTheme...IntPtr => HTHEME -Windows.Win32.UI.Controls.Apis.IsThemePartDefined : hTheme...IntPtr => HTHEME -Windows.Win32.UI.Controls.Apis.OpenThemeData : return...IntPtr => HTHEME -Windows.Win32.UI.Controls.Apis.OpenThemeDataEx : return...IntPtr => HTHEME -Windows.Win32.UI.Controls.HTHEME added -Windows.Win32.UI.Controls.IMAGE_LIST_DRAW_STYLE.ILD_ASYNC added -Windows.Win32.UI.Controls.IMAGE_LIST_DRAW_STYLE.ILD_BLEND25 added -Windows.Win32.UI.Controls.IMAGE_LIST_DRAW_STYLE.ILD_DPISCALE added -Windows.Win32.UI.Controls.IMAGE_LIST_DRAW_STYLE.ILD_IMAGE added -Windows.Win32.UI.Controls.IMAGE_LIST_DRAW_STYLE.ILD_OVERLAYMASK added -Windows.Win32.UI.Controls.IMAGE_LIST_DRAW_STYLE.ILD_PRESERVEALPHA added -Windows.Win32.UI.Controls.IMAGE_LIST_DRAW_STYLE.ILD_ROP added -Windows.Win32.UI.Controls.IMAGE_LIST_DRAW_STYLE.ILD_SCALE added -Windows.Win32.UI.Controls.IMAGE_LIST_DRAW_STYLE.ILD_TRANSPARENT added -Windows.Win32.UI.HiDpi.Apis.OpenThemeDataForDpi : return...IntPtr => HTHEME -Windows.Win32.UI.Shell.Apis.SHGetStockIconInfo : uFlags...UInt32 => SHGSI_FLAGS -Windows.Win32.UI.Shell.Apis.SHGSI_ICONLOCATION removed -Windows.Win32.UI.Shell.PropertiesSystem.Apis.SHGetPropertyStoreFromParsingName : ppv : [Out] => [ComOutPtr,Out] -Windows.Win32.UI.Shell.SHGSI_FLAGS added -Windows.Win32.UI.Shell.SHGSI_FLAGS.SHGSI_ICON added -Windows.Win32.UI.Shell.SHGSI_FLAGS.SHGSI_ICONLOCATION added -Windows.Win32.UI.Shell.SHGSI_FLAGS.SHGSI_LARGEICON added -Windows.Win32.UI.Shell.SHGSI_FLAGS.SHGSI_LINKOVERLAY added -Windows.Win32.UI.Shell.SHGSI_FLAGS.SHGSI_SELECTED added -Windows.Win32.UI.Shell.SHGSI_FLAGS.SHGSI_SHELLICONSIZE added -Windows.Win32.UI.Shell.SHGSI_FLAGS.SHGSI_SMALLICON added -Windows.Win32.UI.Shell.SHGSI_FLAGS.SHGSI_SYSICONINDEX added WLDP_GETLOCKDOWNPOLICY_FN : => [NativeEncoding(ansi)] WLDP_ISAPPAPPROVEDBYPOLICY_FN : => [NativeEncoding(ansi)] WLDP_ISCLASSINAPPROVEDLIST_FN : => [NativeEncoding(ansi)] From 97fc2e5c4ba41d374e3ddbf3f17c78a5af066251 Mon Sep 17 00:00:00 2001 From: Mike Battista <13860912+mikebattista@users.noreply.github.com> Date: Tue, 11 Oct 2022 09:38:27 -0700 Subject: [PATCH 5/5] Removed .gitattributes union merge from #1246. This did not solve the issues with web PRs and is not behaving as expected for local merges with git.exe. --- .gitattributes | 1 - 1 file changed, 1 deletion(-) diff --git a/.gitattributes b/.gitattributes index 926c4c665..64acd225d 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1,3 +1,2 @@ RecompiledIdlHeaders.zip filter=lfs diff=lfs merge=lfs -text Windows.Win32.winmd filter=lfs diff=lfs merge=lfs -text -ChangesSinceLastRelease.txt merge=union