gitextract__5f7yefv/ ├── .gitignore ├── LICENSE ├── README.md ├── apollo-crt/ │ ├── apollo-crt.cpp │ ├── apollo-crt.sln │ ├── apollo-crt.vcxproj │ └── apollo-crt.vcxproj.user ├── apollo-linker/ │ ├── linker.cpp │ ├── linker.sln │ ├── linker.vcxproj │ ├── linker.vcxproj.filters │ ├── object/ │ │ ├── code_gen.cpp │ │ ├── collection.cpp │ │ ├── collection.hpp │ │ ├── comdat.cpp │ │ ├── comdat.hpp │ │ ├── opt_ref.cpp │ │ ├── primitives.cpp │ │ ├── primitives.hpp │ │ └── reference_counting.hpp │ ├── transform/ │ │ ├── attribute_discovery.cpp │ │ ├── attribute_discovery.hpp │ │ ├── attribute_normalization.cpp │ │ ├── attribute_normalization.hpp │ │ ├── auto_mode_switch.cpp │ │ ├── auto_mode_switch.hpp │ │ ├── cleanup.cpp │ │ ├── cleanup.hpp │ │ ├── dyn_relocs.cpp │ │ ├── dyn_relocs.hpp │ │ ├── lazy_import.cpp │ │ ├── lazy_import.hpp │ │ ├── logo.cpp │ │ ├── logo.hpp │ │ ├── lower_xrefs.cpp │ │ ├── lower_xrefs.hpp │ │ ├── mixed_bool_arith.cpp │ │ ├── mixed_bool_arith.hpp │ │ ├── profiler.cpp │ │ ├── profiler.hpp │ │ ├── shadow_return.cpp │ │ ├── shadow_return.hpp │ │ ├── split_basic_blocks.cpp │ │ ├── split_basic_blocks.hpp │ │ ├── string_conversion.cpp │ │ ├── string_conversion.hpp │ │ ├── syscall_lifter.cpp │ │ ├── syscall_lifter.hpp │ │ ├── virtualization.cpp │ │ └── virtualization.hpp │ └── utility/ │ ├── argparse.hpp │ ├── liblto.hpp │ ├── llvm.hpp │ ├── pdb.hpp │ └── undname.hpp ├── apollo-toolset/ │ ├── Config.xml │ ├── Toolset.props │ ├── Toolset.targets │ └── install.bat ├── apollo-vm/ │ ├── apollo-vm.cpp │ ├── apollo-vm.sln │ ├── apollo-vm.vcxproj │ ├── apollo-vm.vcxproj.filters │ └── apollo-vm.vcxproj.user ├── flash/ │ ├── flash.sln │ ├── flash.vcxproj │ ├── flash.vcxproj.filters │ ├── includes/ │ │ └── flash/ │ │ ├── dumper.hpp │ │ ├── engine.hpp │ │ ├── format.hpp │ │ ├── func_builder.hpp │ │ ├── hex.hpp │ │ ├── image.hpp │ │ ├── rule.hpp │ │ ├── rule_filters.hpp │ │ ├── rule_instruction.hpp │ │ ├── rule_pattern.hpp │ │ ├── section.hpp │ │ ├── shellcode.hpp │ │ ├── simd.hpp │ │ └── vcpu.hpp │ ├── main.cpp │ └── src/ │ ├── dumper.cpp │ ├── func_builder.cpp │ ├── image.cpp │ ├── interface.cpp │ ├── rule_instruction.cpp │ ├── rule_pattern.cpp │ ├── section.cpp │ ├── serializer.cpp │ ├── shellcode.cpp │ └── vcpu.cpp ├── ida_symbols.py ├── pdblib/ │ ├── .gitignore │ ├── CMakeLists.txt │ ├── PdbLib.sln │ ├── PdbLib.vcxproj │ ├── PdbLib.vcxproj.filters │ ├── README.md │ └── includes/ │ └── pdblib/ │ ├── cvconsts.h │ ├── cvinfo.h │ ├── dbi.hpp │ ├── msf.hpp │ └── pdb.hpp ├── resources/ │ ├── sdk/ │ │ ├── acpi/ │ │ │ ├── api.hpp │ │ │ ├── cached_table_t.hpp │ │ │ ├── debugging_device_in_use_t.hpp │ │ │ ├── device_information_output_buffer_t.hpp │ │ │ ├── enum_child_t.hpp │ │ │ ├── enum_children_input_buffer_t.hpp │ │ │ ├── enum_children_output_buffer_t.hpp │ │ │ ├── eval_input_buffer_complex_v1_ex_t.hpp │ │ │ ├── eval_input_buffer_complex_v1_t.hpp │ │ │ ├── eval_input_buffer_complex_v2_ex_t.hpp │ │ │ ├── eval_input_buffer_complex_v2_t.hpp │ │ │ ├── eval_input_buffer_simple_integer_v1_ex_t.hpp │ │ │ ├── eval_input_buffer_simple_integer_v1_t.hpp │ │ │ ├── eval_input_buffer_simple_integer_v2_ex_t.hpp │ │ │ ├── eval_input_buffer_simple_integer_v2_t.hpp │ │ │ ├── eval_input_buffer_simple_string_v1_ex_t.hpp │ │ │ ├── eval_input_buffer_simple_string_v1_t.hpp │ │ │ ├── eval_input_buffer_simple_string_v2_ex_t.hpp │ │ │ ├── eval_input_buffer_simple_string_v2_t.hpp │ │ │ ├── eval_input_buffer_v1_ex_t.hpp │ │ │ ├── eval_input_buffer_v1_t.hpp │ │ │ ├── eval_input_buffer_v2_ex_t.hpp │ │ │ ├── eval_input_buffer_v2_t.hpp │ │ │ ├── eval_output_buffer_v1_t.hpp │ │ │ ├── eval_output_buffer_v2_t.hpp │ │ │ ├── get_device_specific_data_t.hpp │ │ │ ├── interface_standard2_t.hpp │ │ │ ├── interface_standard_t.hpp │ │ │ ├── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ ├── api.start.hpp │ │ │ │ ├── cached_table_t.end.hpp │ │ │ │ ├── cached_table_t.start.hpp │ │ │ │ ├── debugging_device_in_use_t.end.hpp │ │ │ │ ├── debugging_device_in_use_t.start.hpp │ │ │ │ ├── device_information_output_buffer_t.end.hpp │ │ │ │ ├── device_information_output_buffer_t.start.hpp │ │ │ │ ├── enum_child_t.end.hpp │ │ │ │ ├── enum_child_t.start.hpp │ │ │ │ ├── enum_children_input_buffer_t.end.hpp │ │ │ │ ├── enum_children_input_buffer_t.start.hpp │ │ │ │ ├── enum_children_output_buffer_t.end.hpp │ │ │ │ ├── enum_children_output_buffer_t.start.hpp │ │ │ │ ├── eval_input_buffer_complex_v1_ex_t.end.hpp │ │ │ │ ├── eval_input_buffer_complex_v1_ex_t.start.hpp │ │ │ │ ├── eval_input_buffer_complex_v1_t.end.hpp │ │ │ │ ├── eval_input_buffer_complex_v1_t.start.hpp │ │ │ │ ├── eval_input_buffer_complex_v2_ex_t.end.hpp │ │ │ │ ├── eval_input_buffer_complex_v2_ex_t.start.hpp │ │ │ │ ├── eval_input_buffer_complex_v2_t.end.hpp │ │ │ │ ├── eval_input_buffer_complex_v2_t.start.hpp │ │ │ │ ├── eval_input_buffer_simple_integer_v1_ex_t.end.hpp │ │ │ │ ├── eval_input_buffer_simple_integer_v1_ex_t.start.hpp │ │ │ │ ├── eval_input_buffer_simple_integer_v1_t.end.hpp │ │ │ │ ├── eval_input_buffer_simple_integer_v1_t.start.hpp │ │ │ │ ├── eval_input_buffer_simple_integer_v2_ex_t.end.hpp │ │ │ │ ├── eval_input_buffer_simple_integer_v2_ex_t.start.hpp │ │ │ │ ├── eval_input_buffer_simple_integer_v2_t.end.hpp │ │ │ │ ├── eval_input_buffer_simple_integer_v2_t.start.hpp │ │ │ │ ├── eval_input_buffer_simple_string_v1_ex_t.end.hpp │ │ │ │ ├── eval_input_buffer_simple_string_v1_ex_t.start.hpp │ │ │ │ ├── eval_input_buffer_simple_string_v1_t.end.hpp │ │ │ │ ├── eval_input_buffer_simple_string_v1_t.start.hpp │ │ │ │ ├── eval_input_buffer_simple_string_v2_ex_t.end.hpp │ │ │ │ ├── eval_input_buffer_simple_string_v2_ex_t.start.hpp │ │ │ │ ├── eval_input_buffer_simple_string_v2_t.end.hpp │ │ │ │ ├── eval_input_buffer_simple_string_v2_t.start.hpp │ │ │ │ ├── eval_input_buffer_v1_ex_t.end.hpp │ │ │ │ ├── eval_input_buffer_v1_ex_t.start.hpp │ │ │ │ ├── eval_input_buffer_v1_t.end.hpp │ │ │ │ ├── eval_input_buffer_v1_t.start.hpp │ │ │ │ ├── eval_input_buffer_v2_ex_t.end.hpp │ │ │ │ ├── eval_input_buffer_v2_ex_t.start.hpp │ │ │ │ ├── eval_input_buffer_v2_t.end.hpp │ │ │ │ ├── eval_input_buffer_v2_t.start.hpp │ │ │ │ ├── eval_output_buffer_v1_t.end.hpp │ │ │ │ ├── eval_output_buffer_v1_t.start.hpp │ │ │ │ ├── eval_output_buffer_v2_t.end.hpp │ │ │ │ ├── eval_output_buffer_v2_t.start.hpp │ │ │ │ ├── get_device_specific_data_t.end.hpp │ │ │ │ ├── get_device_specific_data_t.start.hpp │ │ │ │ ├── interface_standard2_t.end.hpp │ │ │ │ ├── interface_standard2_t.start.hpp │ │ │ │ ├── interface_standard_t.end.hpp │ │ │ │ ├── interface_standard_t.start.hpp │ │ │ │ ├── manipulate_global_lock_buffer_t.end.hpp │ │ │ │ ├── manipulate_global_lock_buffer_t.start.hpp │ │ │ │ ├── method_argument_v1_t.end.hpp │ │ │ │ ├── method_argument_v1_t.start.hpp │ │ │ │ ├── method_argument_v2_t.end.hpp │ │ │ │ └── method_argument_v2_t.start.hpp │ │ │ ├── manipulate_global_lock_buffer_t.hpp │ │ │ ├── method_argument_v1_t.hpp │ │ │ └── method_argument_v2_t.hpp │ │ ├── ae/ │ │ │ ├── api.hpp │ │ │ └── magic/ │ │ │ ├── api.end.hpp │ │ │ └── api.start.hpp │ │ ├── afd/ │ │ │ ├── api.hpp │ │ │ └── magic/ │ │ │ ├── api.end.hpp │ │ │ └── api.start.hpp │ │ ├── ahc/ │ │ │ ├── api.hpp │ │ │ ├── info_class_t.hpp │ │ │ ├── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ ├── api.start.hpp │ │ │ │ ├── main_statistics_t.end.hpp │ │ │ │ ├── main_statistics_t.start.hpp │ │ │ │ ├── service_clear_t.end.hpp │ │ │ │ ├── service_clear_t.start.hpp │ │ │ │ ├── service_data_t.end.hpp │ │ │ │ ├── service_data_t.start.hpp │ │ │ │ ├── service_datacache_t.end.hpp │ │ │ │ ├── service_datacache_t.start.hpp │ │ │ │ ├── service_dataquery_t.end.hpp │ │ │ │ ├── service_dataquery_t.start.hpp │ │ │ │ ├── service_hwid_query_t.end.hpp │ │ │ │ ├── service_hwid_query_t.start.hpp │ │ │ │ ├── service_init_process_data_t.end.hpp │ │ │ │ ├── service_init_process_data_t.start.hpp │ │ │ │ ├── service_lookup_cdb_t.end.hpp │ │ │ │ ├── service_lookup_cdb_t.start.hpp │ │ │ │ ├── service_lookup_t.end.hpp │ │ │ │ ├── service_lookup_t.start.hpp │ │ │ │ ├── service_remove_t.end.hpp │ │ │ │ ├── service_remove_t.start.hpp │ │ │ │ ├── service_update_t.end.hpp │ │ │ │ ├── service_update_t.start.hpp │ │ │ │ ├── statistics_t.end.hpp │ │ │ │ ├── statistics_t.start.hpp │ │ │ │ ├── store_statistics_t.end.hpp │ │ │ │ └── store_statistics_t.start.hpp │ │ │ ├── main_statistics_t.hpp │ │ │ ├── service_class_t.hpp │ │ │ ├── service_clear_t.hpp │ │ │ ├── service_data_t.hpp │ │ │ ├── service_datacache_t.hpp │ │ │ ├── service_dataquery_t.hpp │ │ │ ├── service_hwid_query_t.hpp │ │ │ ├── service_init_process_data_t.hpp │ │ │ ├── service_lookup_cdb_t.hpp │ │ │ ├── service_lookup_t.hpp │ │ │ ├── service_remove_t.hpp │ │ │ ├── service_update_t.hpp │ │ │ ├── statistics_t.hpp │ │ │ └── store_statistics_t.hpp │ │ ├── ahci/ │ │ │ ├── api.hpp │ │ │ └── magic/ │ │ │ ├── api.end.hpp │ │ │ └── api.start.hpp │ │ ├── alpc/ │ │ │ ├── api.hpp │ │ │ ├── basic_information_t.hpp │ │ │ ├── communication_info_t.hpp │ │ │ ├── completion_list_header_t.hpp │ │ │ ├── completion_list_state_t.hpp │ │ │ ├── completion_list_t.hpp │ │ │ ├── completion_packet_lookaside_entry_t.hpp │ │ │ ├── completion_packet_lookaside_t.hpp │ │ │ ├── context_attr_t.hpp │ │ │ ├── data_view_attr_t.hpp │ │ │ ├── direct_attr_t.hpp │ │ │ ├── dispatch_context_t.hpp │ │ │ ├── handle_attr32_t.hpp │ │ │ ├── handle_attr_t.hpp │ │ │ ├── handle_entry_t.hpp │ │ │ ├── handle_table_t.hpp │ │ │ ├── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ ├── api.start.hpp │ │ │ │ ├── basic_information_t.end.hpp │ │ │ │ ├── basic_information_t.start.hpp │ │ │ │ ├── communication_info_t.end.hpp │ │ │ │ ├── communication_info_t.start.hpp │ │ │ │ ├── completion_list_header_t.end.hpp │ │ │ │ ├── completion_list_header_t.start.hpp │ │ │ │ ├── completion_list_state_t.end.hpp │ │ │ │ ├── completion_list_state_t.start.hpp │ │ │ │ ├── completion_list_t.end.hpp │ │ │ │ ├── completion_list_t.start.hpp │ │ │ │ ├── completion_packet_lookaside_entry_t.end.hpp │ │ │ │ ├── completion_packet_lookaside_entry_t.start.hpp │ │ │ │ ├── completion_packet_lookaside_t.end.hpp │ │ │ │ ├── completion_packet_lookaside_t.start.hpp │ │ │ │ ├── context_attr_t.end.hpp │ │ │ │ ├── context_attr_t.start.hpp │ │ │ │ ├── data_view_attr_t.end.hpp │ │ │ │ ├── data_view_attr_t.start.hpp │ │ │ │ ├── direct_attr_t.end.hpp │ │ │ │ ├── direct_attr_t.start.hpp │ │ │ │ ├── dispatch_context_t.end.hpp │ │ │ │ ├── dispatch_context_t.start.hpp │ │ │ │ ├── handle_attr32_t.end.hpp │ │ │ │ ├── handle_attr32_t.start.hpp │ │ │ │ ├── handle_attr_t.end.hpp │ │ │ │ ├── handle_attr_t.start.hpp │ │ │ │ ├── handle_entry_t.end.hpp │ │ │ │ ├── handle_entry_t.start.hpp │ │ │ │ ├── handle_table_t.end.hpp │ │ │ │ ├── handle_table_t.start.hpp │ │ │ │ ├── message_attributes_t.end.hpp │ │ │ │ ├── message_attributes_t.start.hpp │ │ │ │ ├── message_handle_information_t.end.hpp │ │ │ │ ├── message_handle_information_t.start.hpp │ │ │ │ ├── port_associate_completion_port_t.end.hpp │ │ │ │ ├── port_associate_completion_port_t.start.hpp │ │ │ │ ├── port_attributes_t.end.hpp │ │ │ │ ├── port_attributes_t.start.hpp │ │ │ │ ├── port_callback_information_t.end.hpp │ │ │ │ ├── port_callback_information_t.start.hpp │ │ │ │ ├── port_completion_list_information_t.end.hpp │ │ │ │ ├── port_completion_list_information_t.start.hpp │ │ │ │ ├── port_message_zone_information_t.end.hpp │ │ │ │ ├── port_message_zone_information_t.start.hpp │ │ │ │ ├── port_t.end.hpp │ │ │ │ ├── port_t.start.hpp │ │ │ │ ├── process_context_t.end.hpp │ │ │ │ ├── process_context_t.start.hpp │ │ │ │ ├── security_attr_t.end.hpp │ │ │ │ ├── security_attr_t.start.hpp │ │ │ │ ├── server_information_t.end.hpp │ │ │ │ ├── server_information_t.start.hpp │ │ │ │ ├── server_session_information_t.end.hpp │ │ │ │ ├── server_session_information_t.start.hpp │ │ │ │ ├── token_attr_t.end.hpp │ │ │ │ ├── token_attr_t.start.hpp │ │ │ │ ├── work_on_behalf_attr_t.end.hpp │ │ │ │ ├── work_on_behalf_attr_t.start.hpp │ │ │ │ ├── work_on_behalf_ticket_t.end.hpp │ │ │ │ └── work_on_behalf_ticket_t.start.hpp │ │ │ ├── message_attributes_t.hpp │ │ │ ├── message_handle_information_t.hpp │ │ │ ├── message_information_class_t.hpp │ │ │ ├── port_associate_completion_port_t.hpp │ │ │ ├── port_attributes_t.hpp │ │ │ ├── port_callback_information_t.hpp │ │ │ ├── port_completion_list_information_t.hpp │ │ │ ├── port_information_class_t.hpp │ │ │ ├── port_message_zone_information_t.hpp │ │ │ ├── port_t.hpp │ │ │ ├── process_context_t.hpp │ │ │ ├── security_attr_t.hpp │ │ │ ├── server_information_t.hpp │ │ │ ├── server_session_information_t.hpp │ │ │ ├── token_attr_t.hpp │ │ │ ├── work_on_behalf_attr_t.hpp │ │ │ └── work_on_behalf_ticket_t.hpp │ │ ├── alpci/ │ │ │ ├── api.hpp │ │ │ └── magic/ │ │ │ ├── api.end.hpp │ │ │ └── api.start.hpp │ │ ├── alpcp/ │ │ │ ├── api.hpp │ │ │ └── magic/ │ │ │ ├── api.end.hpp │ │ │ └── api.start.hpp │ │ ├── apphelp/ │ │ │ ├── info_t.hpp │ │ │ └── magic/ │ │ │ ├── info_t.end.hpp │ │ │ └── info_t.start.hpp │ │ ├── arb/ │ │ │ ├── api.hpp │ │ │ └── magic/ │ │ │ ├── api.end.hpp │ │ │ └── api.start.hpp │ │ ├── arbiter/ │ │ │ ├── action_t.hpp │ │ │ ├── add_reserved_parameters_t.hpp │ │ │ ├── allocation_state_t.hpp │ │ │ ├── alternative_t.hpp │ │ │ ├── boot_allocation_parameters_t.hpp │ │ │ ├── conflict_info_t.hpp │ │ │ ├── instance_t.hpp │ │ │ ├── interface_t.hpp │ │ │ ├── list_entry_t.hpp │ │ │ ├── magic/ │ │ │ │ ├── add_reserved_parameters_t.end.hpp │ │ │ │ ├── add_reserved_parameters_t.start.hpp │ │ │ │ ├── allocation_state_t.end.hpp │ │ │ │ ├── allocation_state_t.start.hpp │ │ │ │ ├── alternative_t.end.hpp │ │ │ │ ├── alternative_t.start.hpp │ │ │ │ ├── boot_allocation_parameters_t.end.hpp │ │ │ │ ├── boot_allocation_parameters_t.start.hpp │ │ │ │ ├── conflict_info_t.end.hpp │ │ │ │ ├── conflict_info_t.start.hpp │ │ │ │ ├── instance_t.end.hpp │ │ │ │ ├── instance_t.start.hpp │ │ │ │ ├── interface_t.end.hpp │ │ │ │ ├── interface_t.start.hpp │ │ │ │ ├── list_entry_t.end.hpp │ │ │ │ ├── list_entry_t.start.hpp │ │ │ │ ├── ordering_list_t.end.hpp │ │ │ │ ├── ordering_list_t.start.hpp │ │ │ │ ├── ordering_t.end.hpp │ │ │ │ ├── ordering_t.start.hpp │ │ │ │ ├── parameters_t.end.hpp │ │ │ │ ├── parameters_t.start.hpp │ │ │ │ ├── query_allocated_resources_parameters_t.end.hpp │ │ │ │ ├── query_allocated_resources_parameters_t.start.hpp │ │ │ │ ├── query_arbitrate_parameters_t.end.hpp │ │ │ │ ├── query_arbitrate_parameters_t.start.hpp │ │ │ │ ├── query_conflict_parameters_t.end.hpp │ │ │ │ ├── query_conflict_parameters_t.start.hpp │ │ │ │ ├── retest_allocation_parameters_t.end.hpp │ │ │ │ ├── retest_allocation_parameters_t.start.hpp │ │ │ │ ├── test_allocation_parameters_t.end.hpp │ │ │ │ └── test_allocation_parameters_t.start.hpp │ │ │ ├── ordering_list_t.hpp │ │ │ ├── ordering_t.hpp │ │ │ ├── parameters_t.hpp │ │ │ ├── query_allocated_resources_parameters_t.hpp │ │ │ ├── query_arbitrate_parameters_t.hpp │ │ │ ├── query_conflict_parameters_t.hpp │ │ │ ├── request_source_t.hpp │ │ │ ├── result_t.hpp │ │ │ ├── retest_allocation_parameters_t.hpp │ │ │ └── test_allocation_parameters_t.hpp │ │ ├── arbp/ │ │ │ ├── api.hpp │ │ │ └── magic/ │ │ │ ├── api.end.hpp │ │ │ └── api.start.hpp │ │ ├── asi/ │ │ │ ├── api.hpp │ │ │ └── magic/ │ │ │ ├── api.end.hpp │ │ │ └── api.start.hpp │ │ ├── asl/ │ │ │ ├── api.hpp │ │ │ ├── attribute_index_t.hpp │ │ │ ├── attribute_t.hpp │ │ │ ├── attribute_type_t.hpp │ │ │ ├── critical_section_t.hpp │ │ │ ├── file_kind_detail_t.hpp │ │ │ ├── file_mapping_t.hpp │ │ │ ├── log_channel_t.hpp │ │ │ ├── log_global_logger_t.hpp │ │ │ ├── log_level_t.hpp │ │ │ ├── log_t.hpp │ │ │ ├── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ ├── api.start.hpp │ │ │ │ ├── attribute_t.end.hpp │ │ │ │ ├── attribute_t.start.hpp │ │ │ │ ├── critical_section_t.end.hpp │ │ │ │ ├── critical_section_t.start.hpp │ │ │ │ ├── file_mapping_t.end.hpp │ │ │ │ ├── file_mapping_t.start.hpp │ │ │ │ ├── log_channel_t.end.hpp │ │ │ │ ├── log_channel_t.start.hpp │ │ │ │ ├── log_global_logger_t.end.hpp │ │ │ │ ├── log_global_logger_t.start.hpp │ │ │ │ ├── log_t.end.hpp │ │ │ │ ├── log_t.start.hpp │ │ │ │ ├── string_hash_element_t.end.hpp │ │ │ │ ├── string_hash_element_t.start.hpp │ │ │ │ ├── string_hash_t.end.hpp │ │ │ │ ├── string_hash_t.start.hpp │ │ │ │ ├── telemetry_t.end.hpp │ │ │ │ └── telemetry_t.start.hpp │ │ │ ├── string_hash_element_t.hpp │ │ │ ├── string_hash_t.hpp │ │ │ ├── telemetry_level_t.hpp │ │ │ └── telemetry_t.hpp │ │ ├── aslp/ │ │ │ ├── api.hpp │ │ │ └── magic/ │ │ │ ├── api.end.hpp │ │ │ └── api.start.hpp │ │ ├── ata/ │ │ │ ├── api.hpp │ │ │ └── magic/ │ │ │ ├── api.end.hpp │ │ │ └── api.start.hpp │ │ ├── atapi/ │ │ │ ├── api.hpp │ │ │ └── magic/ │ │ │ ├── api.end.hpp │ │ │ └── api.start.hpp │ │ ├── authz/ │ │ │ ├── api.hpp │ │ │ └── magic/ │ │ │ ├── api.end.hpp │ │ │ └── api.start.hpp │ │ ├── bapd/ │ │ │ ├── api.hpp │ │ │ └── magic/ │ │ │ ├── api.end.hpp │ │ │ └── api.start.hpp │ │ ├── bapdp/ │ │ │ ├── api.hpp │ │ │ └── magic/ │ │ │ ├── api.end.hpp │ │ │ └── api.start.hpp │ │ ├── bcd/ │ │ │ ├── api.hpp │ │ │ └── magic/ │ │ │ ├── api.end.hpp │ │ │ └── api.start.hpp │ │ ├── bcp/ │ │ │ ├── api.hpp │ │ │ └── magic/ │ │ │ ├── api.end.hpp │ │ │ └── api.start.hpp │ │ ├── bg/ │ │ │ ├── api.hpp │ │ │ └── magic/ │ │ │ ├── api.end.hpp │ │ │ └── api.start.hpp │ │ ├── bgk/ │ │ │ ├── api.hpp │ │ │ └── magic/ │ │ │ ├── api.end.hpp │ │ │ └── api.start.hpp │ │ ├── bgkp/ │ │ │ ├── api.hpp │ │ │ └── magic/ │ │ │ ├── api.end.hpp │ │ │ └── api.start.hpp │ │ ├── bgp/ │ │ │ ├── api.hpp │ │ │ └── magic/ │ │ │ ├── api.end.hpp │ │ │ └── api.start.hpp │ │ ├── bi/ │ │ │ ├── api.hpp │ │ │ └── magic/ │ │ │ ├── api.end.hpp │ │ │ └── api.start.hpp │ │ ├── bip/ │ │ │ ├── api.hpp │ │ │ └── magic/ │ │ │ ├── api.end.hpp │ │ │ └── api.start.hpp │ │ ├── boot/ │ │ │ ├── api.hpp │ │ │ ├── area_info_t.hpp │ │ │ ├── entropy_ldr_result_t.hpp │ │ │ ├── entropy_nt_result_t.hpp │ │ │ ├── entropy_source_id_t.hpp │ │ │ ├── entropy_source_ldr_result_t.hpp │ │ │ ├── entropy_source_nt_result_t.hpp │ │ │ ├── entropy_source_result_code_t.hpp │ │ │ ├── entry_list_t.hpp │ │ │ ├── entry_t.hpp │ │ │ ├── firmware_ramdisk_info_t.hpp │ │ │ ├── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ ├── api.start.hpp │ │ │ │ ├── area_info_t.end.hpp │ │ │ │ ├── area_info_t.start.hpp │ │ │ │ ├── entropy_ldr_result_t.end.hpp │ │ │ │ ├── entropy_ldr_result_t.start.hpp │ │ │ │ ├── entropy_nt_result_t.end.hpp │ │ │ │ ├── entropy_nt_result_t.start.hpp │ │ │ │ ├── entropy_source_ldr_result_t.end.hpp │ │ │ │ ├── entropy_source_ldr_result_t.start.hpp │ │ │ │ ├── entropy_source_nt_result_t.end.hpp │ │ │ │ ├── entropy_source_nt_result_t.start.hpp │ │ │ │ ├── entry_list_t.end.hpp │ │ │ │ ├── entry_list_t.start.hpp │ │ │ │ ├── entry_t.end.hpp │ │ │ │ ├── entry_t.start.hpp │ │ │ │ ├── firmware_ramdisk_info_t.end.hpp │ │ │ │ ├── firmware_ramdisk_info_t.start.hpp │ │ │ │ ├── options_t.end.hpp │ │ │ │ ├── options_t.start.hpp │ │ │ │ ├── record_t.end.hpp │ │ │ │ └── record_t.start.hpp │ │ │ ├── options_t.hpp │ │ │ └── record_t.hpp │ │ ├── cc/ │ │ │ ├── api.hpp │ │ │ ├── async_read_context_t.hpp │ │ │ ├── error_callback_context_t.hpp │ │ │ ├── external_cache_info_t.hpp │ │ │ ├── file_sizes_t.hpp │ │ │ ├── flush_packet_t.hpp │ │ │ ├── lws_packet_t.hpp │ │ │ ├── lws_packet_type_t.hpp │ │ │ ├── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ ├── api.start.hpp │ │ │ │ ├── async_read_context_t.end.hpp │ │ │ │ ├── async_read_context_t.start.hpp │ │ │ │ ├── error_callback_context_t.end.hpp │ │ │ │ ├── error_callback_context_t.start.hpp │ │ │ │ ├── external_cache_info_t.end.hpp │ │ │ │ ├── external_cache_info_t.start.hpp │ │ │ │ ├── file_sizes_t.end.hpp │ │ │ │ ├── file_sizes_t.start.hpp │ │ │ │ ├── flush_packet_t.end.hpp │ │ │ │ ├── flush_packet_t.start.hpp │ │ │ │ ├── lws_packet_t.end.hpp │ │ │ │ ├── lws_packet_t.start.hpp │ │ │ │ ├── numa_node_t.end.hpp │ │ │ │ ├── numa_node_t.start.hpp │ │ │ │ ├── partition_t.end.hpp │ │ │ │ ├── partition_t.start.hpp │ │ │ │ ├── volume_telemetry_t.end.hpp │ │ │ │ └── volume_telemetry_t.start.hpp │ │ │ ├── numa_node_t.hpp │ │ │ ├── numa_type_t.hpp │ │ │ ├── partition_t.hpp │ │ │ └── volume_telemetry_t.hpp │ │ ├── ci/ │ │ │ ├── api.hpp │ │ │ ├── flip_present_history_token/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── flip_present_history_token_flip_manager/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── flip_present_history_token_redirected_flip/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── log_mmcss_start_t.hpp │ │ │ ├── log_mmcss_stop_t.hpp │ │ │ ├── log_scheduler_event_t.hpp │ │ │ ├── log_scheduler_sleep_response_t.hpp │ │ │ ├── log_scheduler_sleep_t.hpp │ │ │ ├── log_scheduler_wakeup_t.hpp │ │ │ ├── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ ├── api.start.hpp │ │ │ │ ├── log_mmcss_start_t.end.hpp │ │ │ │ ├── log_mmcss_start_t.start.hpp │ │ │ │ ├── log_mmcss_stop_t.end.hpp │ │ │ │ ├── log_mmcss_stop_t.start.hpp │ │ │ │ ├── log_scheduler_event_t.end.hpp │ │ │ │ ├── log_scheduler_event_t.start.hpp │ │ │ │ ├── log_scheduler_sleep_response_t.end.hpp │ │ │ │ ├── log_scheduler_sleep_response_t.start.hpp │ │ │ │ ├── log_scheduler_sleep_t.end.hpp │ │ │ │ ├── log_scheduler_sleep_t.start.hpp │ │ │ │ ├── log_scheduler_wakeup_t.end.hpp │ │ │ │ └── log_scheduler_wakeup_t.start.hpp │ │ │ ├── ngen_paths_t.hpp │ │ │ ├── windows_lockdown_mode_t.hpp │ │ │ └── windows_lockdown_restriction_t.hpp │ │ ├── cip/ │ │ │ ├── api.hpp │ │ │ └── magic/ │ │ │ ├── api.end.hpp │ │ │ └── api.start.hpp │ │ ├── civ/ │ │ │ ├── channel/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── deserializer/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── generic_serializer/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── mouse_serializer/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── pn_p_create_serializer/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── serializer/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ └── touch_serializer/ │ │ │ ├── api.hpp │ │ │ └── magic/ │ │ │ ├── api.end.hpp │ │ │ └── api.start.hpp │ │ ├── clfs/ │ │ │ ├── api.hpp │ │ │ ├── context_mode_t.hpp │ │ │ ├── iostats_class_t.hpp │ │ │ ├── log_archive_mode_t.hpp │ │ │ ├── log_name_information_t.hpp │ │ │ ├── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ ├── api.start.hpp │ │ │ │ ├── log_name_information_t.end.hpp │ │ │ │ ├── log_name_information_t.start.hpp │ │ │ │ ├── mgmt_client_registration_t.end.hpp │ │ │ │ ├── mgmt_client_registration_t.start.hpp │ │ │ │ ├── mgmt_notification_t.end.hpp │ │ │ │ ├── mgmt_notification_t.start.hpp │ │ │ │ ├── mgmt_policy_t.end.hpp │ │ │ │ ├── mgmt_policy_t.start.hpp │ │ │ │ ├── node_id_t.end.hpp │ │ │ │ ├── node_id_t.start.hpp │ │ │ │ ├── physical_lsn_information_t.end.hpp │ │ │ │ ├── physical_lsn_information_t.start.hpp │ │ │ │ ├── stream_id_information_t.end.hpp │ │ │ │ └── stream_id_information_t.start.hpp │ │ │ ├── mgmt_client_registration_t.hpp │ │ │ ├── mgmt_notification_t.hpp │ │ │ ├── mgmt_notification_type_t.hpp │ │ │ ├── mgmt_policy_t.hpp │ │ │ ├── mgmt_policy_type_t.hpp │ │ │ ├── node_id_t.hpp │ │ │ ├── physical_lsn_information_t.hpp │ │ │ └── stream_id_information_t.hpp │ │ ├── clip/ │ │ │ ├── api.hpp │ │ │ └── magic/ │ │ │ ├── api.end.hpp │ │ │ └── api.start.hpp │ │ ├── cls/ │ │ │ ├── archive_descriptor_t.hpp │ │ │ ├── container_information_t.hpp │ │ │ ├── context_mode_t.hpp │ │ │ ├── information_t.hpp │ │ │ ├── io_statistics_header_t.hpp │ │ │ ├── io_statistics_t.hpp │ │ │ ├── iostats_class_t.hpp │ │ │ ├── log_information_class_t.hpp │ │ │ ├── lsn_t.hpp │ │ │ ├── magic/ │ │ │ │ ├── archive_descriptor_t.end.hpp │ │ │ │ ├── archive_descriptor_t.start.hpp │ │ │ │ ├── container_information_t.end.hpp │ │ │ │ ├── container_information_t.start.hpp │ │ │ │ ├── information_t.end.hpp │ │ │ │ ├── information_t.start.hpp │ │ │ │ ├── io_statistics_header_t.end.hpp │ │ │ │ ├── io_statistics_header_t.start.hpp │ │ │ │ ├── io_statistics_t.end.hpp │ │ │ │ ├── io_statistics_t.start.hpp │ │ │ │ ├── lsn_t.end.hpp │ │ │ │ ├── lsn_t.start.hpp │ │ │ │ ├── scan_context_t.end.hpp │ │ │ │ ├── scan_context_t.start.hpp │ │ │ │ ├── write_entry_t.end.hpp │ │ │ │ └── write_entry_t.start.hpp │ │ │ ├── scan_context_t.hpp │ │ │ └── write_entry_t.hpp │ │ ├── cm/ │ │ │ ├── api.hpp │ │ │ ├── big_data_t.hpp │ │ │ ├── cached_value_index_t.hpp │ │ │ ├── cell_remap_block_t.hpp │ │ │ ├── component_hash_t.hpp │ │ │ ├── component_information_t.hpp │ │ │ ├── dirty_vector_log_entry_t.hpp │ │ │ ├── dirty_vector_log_t.hpp │ │ │ ├── dirty_vector_operation_t.hpp │ │ │ ├── disk_geometry_device_data_t.hpp │ │ │ ├── eisa_function_information_t.hpp │ │ │ ├── eisa_slot_information_t.hpp │ │ │ ├── error_control_type_t.hpp │ │ │ ├── extended_parameter_t.hpp │ │ │ ├── extended_parameter_type_t.hpp │ │ │ ├── fast_leaf_hint_t.hpp │ │ │ ├── floppy_device_data_t.hpp │ │ │ ├── full_resource_descriptor_t.hpp │ │ │ ├── hive_cache_oplock_event_type_t.hpp │ │ │ ├── hive_cache_oplock_file_type_t.hpp │ │ │ ├── index_hint_block_t.hpp │ │ │ ├── index_t.hpp │ │ │ ├── int13_drive_parameter_t.hpp │ │ │ ├── intent_lock_t.hpp │ │ │ ├── kcb_layer_info_t.hpp │ │ │ ├── kcb_uow_t.hpp │ │ │ ├── key_body_t.hpp │ │ │ ├── key_control_block_t.hpp │ │ │ ├── key_hash_t.hpp │ │ │ ├── key_hash_table_entry_t.hpp │ │ │ ├── key_index_t.hpp │ │ │ ├── key_node_t.hpp │ │ │ ├── key_reference_t.hpp │ │ │ ├── key_security_cache_entry_t.hpp │ │ │ ├── key_security_cache_t.hpp │ │ │ ├── key_security_t.hpp │ │ │ ├── key_value_t.hpp │ │ │ ├── keyboard_device_data_t.hpp │ │ │ ├── load_failure_type_t.hpp │ │ │ ├── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ ├── api.start.hpp │ │ │ │ ├── big_data_t.end.hpp │ │ │ │ ├── big_data_t.start.hpp │ │ │ │ ├── cached_value_index_t.end.hpp │ │ │ │ ├── cached_value_index_t.start.hpp │ │ │ │ ├── cell_remap_block_t.end.hpp │ │ │ │ ├── cell_remap_block_t.start.hpp │ │ │ │ ├── component_hash_t.end.hpp │ │ │ │ ├── component_hash_t.start.hpp │ │ │ │ ├── component_information_t.end.hpp │ │ │ │ ├── component_information_t.start.hpp │ │ │ │ ├── dirty_vector_log_entry_t.end.hpp │ │ │ │ ├── dirty_vector_log_entry_t.start.hpp │ │ │ │ ├── dirty_vector_log_t.end.hpp │ │ │ │ ├── dirty_vector_log_t.start.hpp │ │ │ │ ├── disk_geometry_device_data_t.end.hpp │ │ │ │ ├── disk_geometry_device_data_t.start.hpp │ │ │ │ ├── eisa_function_information_t.end.hpp │ │ │ │ ├── eisa_function_information_t.start.hpp │ │ │ │ ├── eisa_slot_information_t.end.hpp │ │ │ │ ├── eisa_slot_information_t.start.hpp │ │ │ │ ├── extended_parameter_t.end.hpp │ │ │ │ ├── extended_parameter_t.start.hpp │ │ │ │ ├── fast_leaf_hint_t.end.hpp │ │ │ │ ├── fast_leaf_hint_t.start.hpp │ │ │ │ ├── floppy_device_data_t.end.hpp │ │ │ │ ├── floppy_device_data_t.start.hpp │ │ │ │ ├── full_resource_descriptor_t.end.hpp │ │ │ │ ├── full_resource_descriptor_t.start.hpp │ │ │ │ ├── index_hint_block_t.end.hpp │ │ │ │ ├── index_hint_block_t.start.hpp │ │ │ │ ├── index_t.end.hpp │ │ │ │ ├── index_t.start.hpp │ │ │ │ ├── int13_drive_parameter_t.end.hpp │ │ │ │ ├── int13_drive_parameter_t.start.hpp │ │ │ │ ├── intent_lock_t.end.hpp │ │ │ │ ├── intent_lock_t.start.hpp │ │ │ │ ├── kcb_layer_info_t.end.hpp │ │ │ │ ├── kcb_layer_info_t.start.hpp │ │ │ │ ├── kcb_uow_t.end.hpp │ │ │ │ ├── kcb_uow_t.start.hpp │ │ │ │ ├── key_body_t.end.hpp │ │ │ │ ├── key_body_t.start.hpp │ │ │ │ ├── key_control_block_t.end.hpp │ │ │ │ ├── key_control_block_t.start.hpp │ │ │ │ ├── key_hash_t.end.hpp │ │ │ │ ├── key_hash_t.start.hpp │ │ │ │ ├── key_hash_table_entry_t.end.hpp │ │ │ │ ├── key_hash_table_entry_t.start.hpp │ │ │ │ ├── key_index_t.end.hpp │ │ │ │ ├── key_index_t.start.hpp │ │ │ │ ├── key_node_t.end.hpp │ │ │ │ ├── key_node_t.start.hpp │ │ │ │ ├── key_reference_t.end.hpp │ │ │ │ ├── key_reference_t.start.hpp │ │ │ │ ├── key_security_cache_entry_t.end.hpp │ │ │ │ ├── key_security_cache_entry_t.start.hpp │ │ │ │ ├── key_security_cache_t.end.hpp │ │ │ │ ├── key_security_cache_t.start.hpp │ │ │ │ ├── key_security_t.end.hpp │ │ │ │ ├── key_security_t.start.hpp │ │ │ │ ├── key_value_t.end.hpp │ │ │ │ ├── key_value_t.start.hpp │ │ │ │ ├── keyboard_device_data_t.end.hpp │ │ │ │ ├── keyboard_device_data_t.start.hpp │ │ │ │ ├── mca_pos_data_t.end.hpp │ │ │ │ ├── mca_pos_data_t.start.hpp │ │ │ │ ├── monitor_device_data_t.end.hpp │ │ │ │ ├── monitor_device_data_t.start.hpp │ │ │ │ ├── name_control_block_t.end.hpp │ │ │ │ ├── name_control_block_t.start.hpp │ │ │ │ ├── name_hash_t.end.hpp │ │ │ │ ├── name_hash_t.start.hpp │ │ │ │ ├── notify_block_t.end.hpp │ │ │ │ ├── notify_block_t.start.hpp │ │ │ │ ├── parse_debug_info_t.end.hpp │ │ │ │ ├── parse_debug_info_t.start.hpp │ │ │ │ ├── partial_resource_descriptor_t.end.hpp │ │ │ │ ├── partial_resource_descriptor_t.start.hpp │ │ │ │ ├── partial_resource_list_t.end.hpp │ │ │ │ ├── partial_resource_list_t.start.hpp │ │ │ │ ├── path_hash_t.end.hpp │ │ │ │ ├── path_hash_t.start.hpp │ │ │ │ ├── pccard_device_data_t.end.hpp │ │ │ │ ├── pccard_device_data_t.start.hpp │ │ │ │ ├── perf_counters_t.end.hpp │ │ │ │ ├── perf_counters_t.start.hpp │ │ │ │ ├── pnp_bios_device_node_t.end.hpp │ │ │ │ ├── pnp_bios_device_node_t.start.hpp │ │ │ │ ├── pnp_bios_installation_check_t.end.hpp │ │ │ │ ├── pnp_bios_installation_check_t.start.hpp │ │ │ │ ├── power_data_s_t.end.hpp │ │ │ │ ├── power_data_s_t.start.hpp │ │ │ │ ├── resource_list_t.end.hpp │ │ │ │ ├── resource_list_t.start.hpp │ │ │ │ ├── rm_t.end.hpp │ │ │ │ ├── rm_t.start.hpp │ │ │ │ ├── rom_block_t.end.hpp │ │ │ │ ├── rom_block_t.start.hpp │ │ │ │ ├── scsi_device_data_t.end.hpp │ │ │ │ ├── scsi_device_data_t.start.hpp │ │ │ │ ├── serial_device_data_t.end.hpp │ │ │ │ ├── serial_device_data_t.start.hpp │ │ │ │ ├── sonic_device_data_t.end.hpp │ │ │ │ ├── sonic_device_data_t.start.hpp │ │ │ │ ├── trans_ptr_t.end.hpp │ │ │ │ ├── trans_ptr_t.start.hpp │ │ │ │ ├── trans_t.end.hpp │ │ │ │ ├── trans_t.start.hpp │ │ │ │ ├── uow_key_state_modification_t.end.hpp │ │ │ │ ├── uow_key_state_modification_t.start.hpp │ │ │ │ ├── uow_set_sd_data_t.end.hpp │ │ │ │ ├── uow_set_sd_data_t.start.hpp │ │ │ │ ├── uow_set_value_key_data_t.end.hpp │ │ │ │ ├── uow_set_value_key_data_t.start.hpp │ │ │ │ ├── uow_set_value_list_data_t.end.hpp │ │ │ │ ├── uow_set_value_list_data_t.start.hpp │ │ │ │ ├── video_device_data_t.end.hpp │ │ │ │ ├── video_device_data_t.start.hpp │ │ │ │ ├── workitem_t.end.hpp │ │ │ │ └── workitem_t.start.hpp │ │ │ ├── mca_pos_data_t.hpp │ │ │ ├── monitor_device_data_t.hpp │ │ │ ├── name_control_block_t.hpp │ │ │ ├── name_hash_t.hpp │ │ │ ├── notify_block_t.hpp │ │ │ ├── parse_debug_info_t.hpp │ │ │ ├── partial_resource_descriptor_t.hpp │ │ │ ├── partial_resource_list_t.hpp │ │ │ ├── path_hash_t.hpp │ │ │ ├── pccard_device_data_t.hpp │ │ │ ├── perf_counters_t.hpp │ │ │ ├── pnp_bios_device_node_t.hpp │ │ │ ├── pnp_bios_installation_check_t.hpp │ │ │ ├── power_data_s_t.hpp │ │ │ ├── resource_list_t.hpp │ │ │ ├── rm_t.hpp │ │ │ ├── rom_block_t.hpp │ │ │ ├── scsi_device_data_t.hpp │ │ │ ├── serial_device_data_t.hpp │ │ │ ├── service_load_type_t.hpp │ │ │ ├── service_node_type_t.hpp │ │ │ ├── share_disposition_t.hpp │ │ │ ├── sonic_device_data_t.hpp │ │ │ ├── trans_ptr_t.hpp │ │ │ ├── trans_t.hpp │ │ │ ├── uow_key_state_modification_t.hpp │ │ │ ├── uow_set_sd_data_t.hpp │ │ │ ├── uow_set_value_key_data_t.hpp │ │ │ ├── uow_set_value_list_data_t.hpp │ │ │ ├── video_device_data_t.hpp │ │ │ └── workitem_t.hpp │ │ ├── cmp/ │ │ │ ├── api.hpp │ │ │ ├── copy_type_t.hpp │ │ │ ├── discard_and_replace_kcb_context_t.hpp │ │ │ ├── failure_injection_point_t.hpp │ │ │ ├── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ ├── api.start.hpp │ │ │ │ ├── discard_and_replace_kcb_context_t.end.hpp │ │ │ │ ├── discard_and_replace_kcb_context_t.start.hpp │ │ │ │ ├── offset_array_t.end.hpp │ │ │ │ ├── offset_array_t.start.hpp │ │ │ │ ├── volume_context_t.end.hpp │ │ │ │ ├── volume_context_t.start.hpp │ │ │ │ ├── volume_manager_t.end.hpp │ │ │ │ └── volume_manager_t.start.hpp │ │ │ ├── offset_array_t.hpp │ │ │ ├── volume_context_t.hpp │ │ │ └── volume_manager_t.hpp │ │ ├── csr/ │ │ │ ├── api.hpp │ │ │ └── magic/ │ │ │ ├── api.end.hpp │ │ │ └── api.start.hpp │ │ ├── csrp/ │ │ │ ├── api.hpp │ │ │ └── magic/ │ │ │ ├── api.end.hpp │ │ │ └── api.start.hpp │ │ ├── d3d/ │ │ │ └── ddi/ │ │ │ ├── allocationinfo2_t.hpp │ │ │ ├── allocationinfo_t.hpp │ │ │ ├── allocationlist_t.hpp │ │ │ ├── color_space_type_t.hpp │ │ │ ├── createcontextflags_t.hpp │ │ │ ├── createhwcontextflags_t.hpp │ │ │ ├── createhwqueueflags_t.hpp │ │ │ ├── destroypagingqueue_t.hpp │ │ │ ├── driverescape_translateallocationehandle_t.hpp │ │ │ ├── driverescape_translateresourcehandle_t.hpp │ │ │ ├── driverescapetype_t.hpp │ │ │ ├── dxgi_rgb_t.hpp │ │ │ ├── escapeflags_t.hpp │ │ │ ├── evict_flags_t.hpp │ │ │ ├── flipinterval_type_t.hpp │ │ │ ├── gamma_ramp_dxgi_1_t.hpp │ │ │ ├── gamma_ramp_rgb256x3x16_t.hpp │ │ │ ├── gammaramp_type_t.hpp │ │ │ ├── getresourcepresentprivatedriverdata_t.hpp │ │ │ ├── hdr_metadata_hdr10_t.hpp │ │ │ ├── hdr_metadata_hdr10plus_t.hpp │ │ │ ├── hdr_metadata_type_t.hpp │ │ │ ├── kerneloverlayinfo_t.hpp │ │ │ ├── magic/ │ │ │ │ ├── allocationinfo2_t.end.hpp │ │ │ │ ├── allocationinfo2_t.start.hpp │ │ │ │ ├── allocationinfo_t.end.hpp │ │ │ │ ├── allocationinfo_t.start.hpp │ │ │ │ ├── allocationlist_t.end.hpp │ │ │ │ ├── allocationlist_t.start.hpp │ │ │ │ ├── createcontextflags_t.end.hpp │ │ │ │ ├── createcontextflags_t.start.hpp │ │ │ │ ├── createhwcontextflags_t.end.hpp │ │ │ │ ├── createhwcontextflags_t.start.hpp │ │ │ │ ├── createhwqueueflags_t.end.hpp │ │ │ │ ├── createhwqueueflags_t.start.hpp │ │ │ │ ├── destroypagingqueue_t.end.hpp │ │ │ │ ├── destroypagingqueue_t.start.hpp │ │ │ │ ├── driverescape_translateallocationehandle_t.end.hpp │ │ │ │ ├── driverescape_translateallocationehandle_t.start.hpp │ │ │ │ ├── driverescape_translateresourcehandle_t.end.hpp │ │ │ │ ├── driverescape_translateresourcehandle_t.start.hpp │ │ │ │ ├── dxgi_rgb_t.end.hpp │ │ │ │ ├── dxgi_rgb_t.start.hpp │ │ │ │ ├── escapeflags_t.end.hpp │ │ │ │ ├── escapeflags_t.start.hpp │ │ │ │ ├── evict_flags_t.end.hpp │ │ │ │ ├── evict_flags_t.start.hpp │ │ │ │ ├── gamma_ramp_dxgi_1_t.end.hpp │ │ │ │ ├── gamma_ramp_dxgi_1_t.start.hpp │ │ │ │ ├── gamma_ramp_rgb256x3x16_t.end.hpp │ │ │ │ ├── gamma_ramp_rgb256x3x16_t.start.hpp │ │ │ │ ├── getresourcepresentprivatedriverdata_t.end.hpp │ │ │ │ ├── getresourcepresentprivatedriverdata_t.start.hpp │ │ │ │ ├── hdr_metadata_hdr10_t.end.hpp │ │ │ │ ├── hdr_metadata_hdr10_t.start.hpp │ │ │ │ ├── hdr_metadata_hdr10plus_t.end.hpp │ │ │ │ ├── hdr_metadata_hdr10plus_t.start.hpp │ │ │ │ ├── kerneloverlayinfo_t.end.hpp │ │ │ │ ├── kerneloverlayinfo_t.start.hpp │ │ │ │ ├── makeresident_flags_t.end.hpp │ │ │ │ ├── makeresident_flags_t.start.hpp │ │ │ │ ├── makeresident_t.end.hpp │ │ │ │ ├── makeresident_t.start.hpp │ │ │ │ ├── mapgpuvirtualaddress_t.end.hpp │ │ │ │ ├── mapgpuvirtualaddress_t.start.hpp │ │ │ │ ├── multisamplingmethod_t.end.hpp │ │ │ │ ├── multisamplingmethod_t.start.hpp │ │ │ │ ├── offer_flags_t.end.hpp │ │ │ │ ├── offer_flags_t.start.hpp │ │ │ │ ├── openallocationinfo2_t.end.hpp │ │ │ │ ├── openallocationinfo2_t.start.hpp │ │ │ │ ├── openallocationinfo_t.end.hpp │ │ │ │ ├── openallocationinfo_t.start.hpp │ │ │ │ ├── patchlocationlist_t.end.hpp │ │ │ │ ├── patchlocationlist_t.start.hpp │ │ │ │ ├── queryregistry_flags_t.end.hpp │ │ │ │ ├── queryregistry_flags_t.start.hpp │ │ │ │ ├── queryregistry_info_t.end.hpp │ │ │ │ ├── queryregistry_info_t.start.hpp │ │ │ │ ├── rational_t.end.hpp │ │ │ │ ├── rational_t.start.hpp │ │ │ │ ├── reservegpuvirtualaddress_t.end.hpp │ │ │ │ ├── reservegpuvirtualaddress_t.start.hpp │ │ │ │ ├── resourceflags2_t.end.hpp │ │ │ │ ├── resourceflags2_t.start.hpp │ │ │ │ ├── resourceflags_t.end.hpp │ │ │ │ ├── resourceflags_t.start.hpp │ │ │ │ ├── segmentpreference_t.end.hpp │ │ │ │ ├── segmentpreference_t.start.hpp │ │ │ │ ├── surfaceinfo_t.end.hpp │ │ │ │ ├── surfaceinfo_t.start.hpp │ │ │ │ ├── synchronizationobject_flags_t.end.hpp │ │ │ │ ├── synchronizationobject_flags_t.start.hpp │ │ │ │ ├── synchronizationobjectinfo2_t.end.hpp │ │ │ │ ├── synchronizationobjectinfo2_t.start.hpp │ │ │ │ ├── synchronizationobjectinfo_t.end.hpp │ │ │ │ ├── synchronizationobjectinfo_t.start.hpp │ │ │ │ ├── trimresidencyset_flags_t.end.hpp │ │ │ │ ├── trimresidencyset_flags_t.start.hpp │ │ │ │ ├── updateallocproperty_flags_t.end.hpp │ │ │ │ ├── updateallocproperty_flags_t.start.hpp │ │ │ │ ├── updateallocproperty_t.end.hpp │ │ │ │ ├── updateallocproperty_t.start.hpp │ │ │ │ ├── updategpuvirtualaddress_operation_t.end.hpp │ │ │ │ ├── updategpuvirtualaddress_operation_t.start.hpp │ │ │ │ ├── waitforsynchronizationobjectfromcpu_flags_t.end.hpp │ │ │ │ └── waitforsynchronizationobjectfromcpu_flags_t.start.hpp │ │ │ ├── makeresident_flags_t.hpp │ │ │ ├── makeresident_t.hpp │ │ │ ├── mapgpuvirtualaddress_t.hpp │ │ │ ├── multisamplingmethod_t.hpp │ │ │ ├── offer_flags_t.hpp │ │ │ ├── offer_priority_t.hpp │ │ │ ├── openallocationinfo2_t.hpp │ │ │ ├── openallocationinfo_t.hpp │ │ │ ├── output_wire_color_space_type_t.hpp │ │ │ ├── pagingqueue_priority_t.hpp │ │ │ ├── patchlocationlist_t.hpp │ │ │ ├── pool_t.hpp │ │ │ ├── queryregistry_flags_t.hpp │ │ │ ├── queryregistry_info_t.hpp │ │ │ ├── queryregistry_status_t.hpp │ │ │ ├── queryregistry_type_t.hpp │ │ │ ├── rational_t.hpp │ │ │ ├── reclaim_result_t.hpp │ │ │ ├── reservegpuvirtualaddress_t.hpp │ │ │ ├── resourceflags2_t.hpp │ │ │ ├── resourceflags_t.hpp │ │ │ ├── rotation_t.hpp │ │ │ ├── scanlineordering_t.hpp │ │ │ ├── segmentpreference_t.hpp │ │ │ ├── surfaceinfo_t.hpp │ │ │ ├── synchronizationobject_flags_t.hpp │ │ │ ├── synchronizationobject_type_t.hpp │ │ │ ├── synchronizationobjectinfo2_t.hpp │ │ │ ├── synchronizationobjectinfo_t.hpp │ │ │ ├── trimresidencyset_flags_t.hpp │ │ │ ├── updateallocproperty_flags_t.hpp │ │ │ ├── updateallocproperty_t.hpp │ │ │ ├── updategpuvirtualaddress_operation_t.hpp │ │ │ ├── updategpuvirtualaddress_operation_type_t.hpp │ │ │ ├── video_signal_scanline_ordering_t.hpp │ │ │ └── waitforsynchronizationobjectfromcpu_flags_t.hpp │ │ ├── d3dk/ │ │ │ ├── mdt/ │ │ │ │ ├── _2dregion_t.hpp │ │ │ │ ├── _3x4_colorspace_transform_t.hpp │ │ │ │ ├── api.hpp │ │ │ │ ├── color_basis_t.hpp │ │ │ │ ├── color_coeff_dynamic_ranges_t.hpp │ │ │ │ ├── colorspace_transform_matrix_v2_t.hpp │ │ │ │ ├── colorspace_transform_stage_control_t.hpp │ │ │ │ ├── compute_preemption_granularity_t.hpp │ │ │ │ ├── displaymode_flags_t.hpp │ │ │ │ ├── enumcofuncmodality_pivot_type_t.hpp │ │ │ │ ├── frequency_range_t.hpp │ │ │ │ ├── gamma_ramp_t.hpp │ │ │ │ ├── gdisurfacedata_t.hpp │ │ │ │ ├── gdisurfaceflags_t.hpp │ │ │ │ ├── gdisurfacetype_t.hpp │ │ │ │ ├── graphics_preemption_granularity_t.hpp │ │ │ │ ├── graphics_rendering_format_t.hpp │ │ │ │ ├── gtfcompliance_t.hpp │ │ │ │ ├── hmonitordescriptorset_t.hpp │ │ │ │ ├── hmonitorfrequencyrangeset_t.hpp │ │ │ │ ├── hmonitorsourcemodeset_t.hpp │ │ │ │ ├── hvideopresentsourceset_t.hpp │ │ │ │ ├── hvideopresenttargetset_t.hpp │ │ │ │ ├── hvidpn_t.hpp │ │ │ │ ├── hvidpnsourcemodeset_t.hpp │ │ │ │ ├── hvidpntargetmodeset_t.hpp │ │ │ │ ├── hvidpntopology_t.hpp │ │ │ │ ├── magic/ │ │ │ │ │ ├── _2dregion_t.end.hpp │ │ │ │ │ ├── _2dregion_t.start.hpp │ │ │ │ │ ├── _3x4_colorspace_transform_t.end.hpp │ │ │ │ │ ├── _3x4_colorspace_transform_t.start.hpp │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ ├── api.start.hpp │ │ │ │ │ ├── color_coeff_dynamic_ranges_t.end.hpp │ │ │ │ │ ├── color_coeff_dynamic_ranges_t.start.hpp │ │ │ │ │ ├── colorspace_transform_matrix_v2_t.end.hpp │ │ │ │ │ ├── colorspace_transform_matrix_v2_t.start.hpp │ │ │ │ │ ├── displaymode_flags_t.end.hpp │ │ │ │ │ ├── displaymode_flags_t.start.hpp │ │ │ │ │ ├── frequency_range_t.end.hpp │ │ │ │ │ ├── frequency_range_t.start.hpp │ │ │ │ │ ├── gamma_ramp_t.end.hpp │ │ │ │ │ ├── gamma_ramp_t.start.hpp │ │ │ │ │ ├── gdisurfacedata_t.end.hpp │ │ │ │ │ ├── gdisurfacedata_t.start.hpp │ │ │ │ │ ├── gdisurfaceflags_t.end.hpp │ │ │ │ │ ├── gdisurfaceflags_t.start.hpp │ │ │ │ │ ├── graphics_rendering_format_t.end.hpp │ │ │ │ │ ├── graphics_rendering_format_t.start.hpp │ │ │ │ │ ├── monitor_descriptor_t.end.hpp │ │ │ │ │ ├── monitor_descriptor_t.start.hpp │ │ │ │ │ ├── monitor_frequency_range_t.end.hpp │ │ │ │ │ ├── monitor_frequency_range_t.start.hpp │ │ │ │ │ ├── monitor_source_mode_t.end.hpp │ │ │ │ │ ├── monitor_source_mode_t.start.hpp │ │ │ │ │ ├── palettedata_t.end.hpp │ │ │ │ │ ├── palettedata_t.start.hpp │ │ │ │ │ ├── preemption_caps_t.end.hpp │ │ │ │ │ ├── preemption_caps_t.start.hpp │ │ │ │ │ ├── shadowsurfacedata_t.end.hpp │ │ │ │ │ ├── shadowsurfacedata_t.start.hpp │ │ │ │ │ ├── sharedprimarysurfacedata_t.end.hpp │ │ │ │ │ ├── sharedprimarysurfacedata_t.start.hpp │ │ │ │ │ ├── stagingsurfacedata_t.end.hpp │ │ │ │ │ ├── stagingsurfacedata_t.start.hpp │ │ │ │ │ ├── video_present_source_t.end.hpp │ │ │ │ │ ├── video_present_source_t.start.hpp │ │ │ │ │ ├── video_present_target_t.end.hpp │ │ │ │ │ ├── video_present_target_t.start.hpp │ │ │ │ │ ├── video_signal_info_t.end.hpp │ │ │ │ │ ├── video_signal_info_t.start.hpp │ │ │ │ │ ├── vidpn_hw_capability_t.end.hpp │ │ │ │ │ ├── vidpn_hw_capability_t.start.hpp │ │ │ │ │ ├── vidpn_present_path_copyprotection_support_t.end.hpp │ │ │ │ │ ├── vidpn_present_path_copyprotection_support_t.start.hpp │ │ │ │ │ ├── vidpn_present_path_copyprotection_t.end.hpp │ │ │ │ │ ├── vidpn_present_path_copyprotection_t.start.hpp │ │ │ │ │ ├── vidpn_present_path_rotation_support_t.end.hpp │ │ │ │ │ ├── vidpn_present_path_rotation_support_t.start.hpp │ │ │ │ │ ├── vidpn_present_path_scaling_support_t.end.hpp │ │ │ │ │ ├── vidpn_present_path_scaling_support_t.start.hpp │ │ │ │ │ ├── vidpn_present_path_t.end.hpp │ │ │ │ │ ├── vidpn_present_path_t.start.hpp │ │ │ │ │ ├── vidpn_present_path_transformation_t.end.hpp │ │ │ │ │ ├── vidpn_present_path_transformation_t.start.hpp │ │ │ │ │ ├── vidpn_source_mode_t.end.hpp │ │ │ │ │ ├── vidpn_source_mode_t.start.hpp │ │ │ │ │ ├── vidpn_target_mode_t.end.hpp │ │ │ │ │ ├── vidpn_target_mode_t.start.hpp │ │ │ │ │ ├── virtualgpusurfacedata_t.end.hpp │ │ │ │ │ ├── virtualgpusurfacedata_t.start.hpp │ │ │ │ │ ├── wire_format_and_preference_t.end.hpp │ │ │ │ │ └── wire_format_and_preference_t.start.hpp │ │ │ │ ├── mode_preference_t.hpp │ │ │ │ ├── mode_pruning_reason_t.hpp │ │ │ │ ├── monitor_capabilities_origin_t.hpp │ │ │ │ ├── monitor_connectivity_checks_t.hpp │ │ │ │ ├── monitor_descriptor_t.hpp │ │ │ │ ├── monitor_descriptor_type_t.hpp │ │ │ │ ├── monitor_frequency_range_constraint_t.hpp │ │ │ │ ├── monitor_frequency_range_t.hpp │ │ │ │ ├── monitor_orientation_awareness_t.hpp │ │ │ │ ├── monitor_orientation_t.hpp │ │ │ │ ├── monitor_source_mode_t.hpp │ │ │ │ ├── monitor_timing_type_t.hpp │ │ │ │ ├── palettedata_t.hpp │ │ │ │ ├── pixel_value_access_mode_t.hpp │ │ │ │ ├── preemption_caps_t.hpp │ │ │ │ ├── shadowsurfacedata_t.hpp │ │ │ │ ├── sharedprimarysurfacedata_t.hpp │ │ │ │ ├── stagingsurfacedata_t.hpp │ │ │ │ ├── standardallocation_type_t.hpp │ │ │ │ ├── text_rendering_format_t.hpp │ │ │ │ ├── video_output_technology_t.hpp │ │ │ │ ├── video_present_source_t.hpp │ │ │ │ ├── video_present_target_t.hpp │ │ │ │ ├── video_signal_info_t.hpp │ │ │ │ ├── video_signal_standard_t.hpp │ │ │ │ ├── vidpn_hw_capability_t.hpp │ │ │ │ ├── vidpn_present_path_content_t.hpp │ │ │ │ ├── vidpn_present_path_copyprotection_support_t.hpp │ │ │ │ ├── vidpn_present_path_copyprotection_t.hpp │ │ │ │ ├── vidpn_present_path_copyprotection_type_t.hpp │ │ │ │ ├── vidpn_present_path_importance_t.hpp │ │ │ │ ├── vidpn_present_path_rotation_support_t.hpp │ │ │ │ ├── vidpn_present_path_rotation_t.hpp │ │ │ │ ├── vidpn_present_path_scaling_support_t.hpp │ │ │ │ ├── vidpn_present_path_scaling_t.hpp │ │ │ │ ├── vidpn_present_path_t.hpp │ │ │ │ ├── vidpn_present_path_transformation_t.hpp │ │ │ │ ├── vidpn_source_mode_t.hpp │ │ │ │ ├── vidpn_source_mode_type_t.hpp │ │ │ │ ├── vidpn_target_mode_t.hpp │ │ │ │ ├── virtualgpusurfacedata_t.hpp │ │ │ │ └── wire_format_and_preference_t.hpp │ │ │ └── mt/ │ │ │ ├── acquirekeyedmutex2_t.hpp │ │ │ ├── acquirekeyedmutex_t.hpp │ │ │ ├── activate_specific_diag_escape_t.hpp │ │ │ ├── activate_specific_diag_type_t.hpp │ │ │ ├── adapter_perfdata_t.hpp │ │ │ ├── adapter_perfdatacaps_t.hpp │ │ │ ├── adapter_verifier_option_data_t.hpp │ │ │ ├── adapter_verifier_option_t.hpp │ │ │ ├── adapter_verifier_option_type_t.hpp │ │ │ ├── adapter_verifier_vidmm_flags_t.hpp │ │ │ ├── adapter_verifier_vidmm_trim_interval_t.hpp │ │ │ ├── adapteraddress_t.hpp │ │ │ ├── adapterinfo_t.hpp │ │ │ ├── adapterregistryinfo_t.hpp │ │ │ ├── adaptertype_t.hpp │ │ │ ├── adjustfullscreengamma_t.hpp │ │ │ ├── allocationresidencystatus_t.hpp │ │ │ ├── bddfallback_ctl_t.hpp │ │ │ ├── blocklist_info_t.hpp │ │ │ ├── bltmodel_presenthistorytoken_t.hpp │ │ │ ├── brightness_info_t.hpp │ │ │ ├── brightness_info_type_t.hpp │ │ │ ├── brightness_possible_levels_t.hpp │ │ │ ├── budgetchangenotification_t.hpp │ │ │ ├── changesurfacepointer_t.hpp │ │ │ ├── changevideommemoryreservation_t.hpp │ │ │ ├── check_multiplane_overlay_plane2_t.hpp │ │ │ ├── check_multiplane_overlay_plane3_t.hpp │ │ │ ├── check_multiplane_overlay_plane_t.hpp │ │ │ ├── check_multiplane_overlay_support_return_info_t.hpp │ │ │ ├── checkmonitorpowerstate_t.hpp │ │ │ ├── checkmultiplaneoverlaysupport2_t.hpp │ │ │ ├── checkmultiplaneoverlaysupport3_t.hpp │ │ │ ├── checkmultiplaneoverlaysupport_t.hpp │ │ │ ├── checkocclusion_t.hpp │ │ │ ├── checksharedresourceaccess_t.hpp │ │ │ ├── checkvidpnexclusiveownership_t.hpp │ │ │ ├── clienthint_t.hpp │ │ │ ├── closeadapter_t.hpp │ │ │ ├── composition_presenthistorytoken_t.hpp │ │ │ ├── configuresharedresource_t.hpp │ │ │ ├── cpdrivername_t.hpp │ │ │ ├── create_outputdupl_t.hpp │ │ │ ├── createallocation_t.hpp │ │ │ ├── createallocationflags_t.hpp │ │ │ ├── createcontext_t.hpp │ │ │ ├── createcontextvirtual_t.hpp │ │ │ ├── createdcfrommemory_t.hpp │ │ │ ├── createdevice_t.hpp │ │ │ ├── createdeviceflags_t.hpp │ │ │ ├── createhwcontext_t.hpp │ │ │ ├── createhwqueue_t.hpp │ │ │ ├── createkeyedmutex2_flags_t.hpp │ │ │ ├── createkeyedmutex2_t.hpp │ │ │ ├── createkeyedmutex_t.hpp │ │ │ ├── createoverlay_t.hpp │ │ │ ├── createpagingqueue_t.hpp │ │ │ ├── createprotectedsession_t.hpp │ │ │ ├── createstandardallocation_t.hpp │ │ │ ├── createstandardallocationflags_t.hpp │ │ │ ├── createsynchronizationobject2_t.hpp │ │ │ ├── createsynchronizationobject_t.hpp │ │ │ ├── currentdisplaymode_t.hpp │ │ │ ├── debug_snapshot_escape_t.hpp │ │ │ ├── defrag_escape_operation_t.hpp │ │ │ ├── destroy_outputdupl_t.hpp │ │ │ ├── destroyallocation2_t.hpp │ │ │ ├── destroyallocation_t.hpp │ │ │ ├── destroycontext_t.hpp │ │ │ ├── destroydcfrommemory_t.hpp │ │ │ ├── destroydevice_t.hpp │ │ │ ├── destroyhwcontext_t.hpp │ │ │ ├── destroyhwqueue_t.hpp │ │ │ ├── destroykeyedmutex_t.hpp │ │ │ ├── destroyoverlay_t.hpp │ │ │ ├── destroyprotectedsession_t.hpp │ │ │ ├── destroysynchronizationobject_t.hpp │ │ │ ├── device_error_reason_t.hpp │ │ │ ├── device_escape_t.hpp │ │ │ ├── device_ids_t.hpp │ │ │ ├── deviceescape_type_t.hpp │ │ │ ├── deviceexecution_state_t.hpp │ │ │ ├── devicepagefault_state_t.hpp │ │ │ ├── devicepresent_queue_state_t.hpp │ │ │ ├── devicepresent_state_dwm_t.hpp │ │ │ ├── devicepresent_state_t.hpp │ │ │ ├── devicereset_state_t.hpp │ │ │ ├── devicestate_type_t.hpp │ │ │ ├── directflip_support_t.hpp │ │ │ ├── dirtyregions_t.hpp │ │ │ ├── display_umd_filenameinfo_t.hpp │ │ │ ├── displaymode_t.hpp │ │ │ ├── displaymodelist_t.hpp │ │ │ ├── dlist_driver_name_t.hpp │ │ │ ├── dmm_escape_t.hpp │ │ │ ├── dmmescapetype_t.hpp │ │ │ ├── dod_set_dirtyrect_mode_t.hpp │ │ │ ├── driver_description_t.hpp │ │ │ ├── drivercaps_ext_t.hpp │ │ │ ├── enumadapters2_t.hpp │ │ │ ├── enumadapters3_t.hpp │ │ │ ├── enumadapters_filter_t.hpp │ │ │ ├── enumadapters_t.hpp │ │ │ ├── escape_pfn_control_command_t.hpp │ │ │ ├── escape_t.hpp │ │ │ ├── escapetype_t.hpp │ │ │ ├── evict_t.hpp │ │ │ ├── eviction_criteria_t.hpp │ │ │ ├── fence_presenthistorytoken_t.hpp │ │ │ ├── flipinfoflags_t.hpp │ │ │ ├── flipmanager_presenthistorytoken_t.hpp │ │ │ ├── flipmodel_independent_flip_stage_t.hpp │ │ │ ├── flipmodel_presenthistorytoken_t.hpp │ │ │ ├── flipmodel_presenthistorytokenflags_t.hpp │ │ │ ├── flipoverlay_t.hpp │ │ │ ├── flipqueueinfo_t.hpp │ │ │ ├── flushheaptransitions_t.hpp │ │ │ ├── freegpuvirtualaddress_t.hpp │ │ │ ├── gdimodel_presenthistorytoken_t.hpp │ │ │ ├── gdimodel_sysmem_presenthistorytoken_t.hpp │ │ │ ├── get_device_vidpn_ownership_info_t.hpp │ │ │ ├── get_gpummu_caps_t.hpp │ │ │ ├── get_multiplane_overlay_caps_t.hpp │ │ │ ├── get_post_composition_caps_t.hpp │ │ │ ├── get_pte_t.hpp │ │ │ ├── get_segment_caps_t.hpp │ │ │ ├── getallocationpriority_t.hpp │ │ │ ├── getcontextinprocessschedulingpriority_t.hpp │ │ │ ├── getcontextschedulingpriority_t.hpp │ │ │ ├── getdevicestate_t.hpp │ │ │ ├── getdisplaymodelist_t.hpp │ │ │ ├── getmultisamplemethodlist_t.hpp │ │ │ ├── getoverlaystate_t.hpp │ │ │ ├── getpresenthistory_t.hpp │ │ │ ├── getprocessdeviceremovalsupport_t.hpp │ │ │ ├── getruntimedata_t.hpp │ │ │ ├── getscanline_t.hpp │ │ │ ├── getsharedprimaryhandle_t.hpp │ │ │ ├── getsharedresourceadapterluid_t.hpp │ │ │ ├── getverticalblankevent_t.hpp │ │ │ ├── gpu_preference_query_state_t.hpp │ │ │ ├── gpu_preference_query_type_t.hpp │ │ │ ├── gpummu_caps_t.hpp │ │ │ ├── gpuversion_t.hpp │ │ │ ├── history_buffer_status_t.hpp │ │ │ ├── hwdrm_support_t.hpp │ │ │ ├── hybrid_list_t.hpp │ │ │ ├── independentflip_secondary_support_t.hpp │ │ │ ├── independentflip_support_t.hpp │ │ │ ├── invalidateactivevidpn_t.hpp │ │ │ ├── invalidatecache_t.hpp │ │ │ ├── isbaddriverforhwprotectiondisabled_t.hpp │ │ │ ├── kmd_driver_version_t.hpp │ │ │ ├── lock2_t.hpp │ │ │ ├── lock_t.hpp │ │ │ ├── magic/ │ │ │ │ ├── acquirekeyedmutex2_t.end.hpp │ │ │ │ ├── acquirekeyedmutex2_t.start.hpp │ │ │ │ ├── acquirekeyedmutex_t.end.hpp │ │ │ │ ├── acquirekeyedmutex_t.start.hpp │ │ │ │ ├── activate_specific_diag_escape_t.end.hpp │ │ │ │ ├── activate_specific_diag_escape_t.start.hpp │ │ │ │ ├── adapter_perfdata_t.end.hpp │ │ │ │ ├── adapter_perfdata_t.start.hpp │ │ │ │ ├── adapter_perfdatacaps_t.end.hpp │ │ │ │ ├── adapter_perfdatacaps_t.start.hpp │ │ │ │ ├── adapter_verifier_option_data_t.end.hpp │ │ │ │ ├── adapter_verifier_option_data_t.start.hpp │ │ │ │ ├── adapter_verifier_option_t.end.hpp │ │ │ │ ├── adapter_verifier_option_t.start.hpp │ │ │ │ ├── adapter_verifier_vidmm_flags_t.end.hpp │ │ │ │ ├── adapter_verifier_vidmm_flags_t.start.hpp │ │ │ │ ├── adapter_verifier_vidmm_trim_interval_t.end.hpp │ │ │ │ ├── adapter_verifier_vidmm_trim_interval_t.start.hpp │ │ │ │ ├── adapteraddress_t.end.hpp │ │ │ │ ├── adapteraddress_t.start.hpp │ │ │ │ ├── adapterinfo_t.end.hpp │ │ │ │ ├── adapterinfo_t.start.hpp │ │ │ │ ├── adapterregistryinfo_t.end.hpp │ │ │ │ ├── adapterregistryinfo_t.start.hpp │ │ │ │ ├── adaptertype_t.end.hpp │ │ │ │ ├── adaptertype_t.start.hpp │ │ │ │ ├── adjustfullscreengamma_t.end.hpp │ │ │ │ ├── adjustfullscreengamma_t.start.hpp │ │ │ │ ├── bddfallback_ctl_t.end.hpp │ │ │ │ ├── bddfallback_ctl_t.start.hpp │ │ │ │ ├── blocklist_info_t.end.hpp │ │ │ │ ├── blocklist_info_t.start.hpp │ │ │ │ ├── bltmodel_presenthistorytoken_t.end.hpp │ │ │ │ ├── bltmodel_presenthistorytoken_t.start.hpp │ │ │ │ ├── brightness_info_t.end.hpp │ │ │ │ ├── brightness_info_t.start.hpp │ │ │ │ ├── brightness_possible_levels_t.end.hpp │ │ │ │ ├── brightness_possible_levels_t.start.hpp │ │ │ │ ├── budgetchangenotification_t.end.hpp │ │ │ │ ├── budgetchangenotification_t.start.hpp │ │ │ │ ├── changesurfacepointer_t.end.hpp │ │ │ │ ├── changesurfacepointer_t.start.hpp │ │ │ │ ├── changevideommemoryreservation_t.end.hpp │ │ │ │ ├── changevideommemoryreservation_t.start.hpp │ │ │ │ ├── check_multiplane_overlay_plane2_t.end.hpp │ │ │ │ ├── check_multiplane_overlay_plane2_t.start.hpp │ │ │ │ ├── check_multiplane_overlay_plane3_t.end.hpp │ │ │ │ ├── check_multiplane_overlay_plane3_t.start.hpp │ │ │ │ ├── check_multiplane_overlay_plane_t.end.hpp │ │ │ │ ├── check_multiplane_overlay_plane_t.start.hpp │ │ │ │ ├── check_multiplane_overlay_support_return_info_t.end.hpp │ │ │ │ ├── check_multiplane_overlay_support_return_info_t.start.hpp │ │ │ │ ├── checkmonitorpowerstate_t.end.hpp │ │ │ │ ├── checkmonitorpowerstate_t.start.hpp │ │ │ │ ├── checkmultiplaneoverlaysupport2_t.end.hpp │ │ │ │ ├── checkmultiplaneoverlaysupport2_t.start.hpp │ │ │ │ ├── checkmultiplaneoverlaysupport3_t.end.hpp │ │ │ │ ├── checkmultiplaneoverlaysupport3_t.start.hpp │ │ │ │ ├── checkmultiplaneoverlaysupport_t.end.hpp │ │ │ │ ├── checkmultiplaneoverlaysupport_t.start.hpp │ │ │ │ ├── checkocclusion_t.end.hpp │ │ │ │ ├── checkocclusion_t.start.hpp │ │ │ │ ├── checksharedresourceaccess_t.end.hpp │ │ │ │ ├── checksharedresourceaccess_t.start.hpp │ │ │ │ ├── checkvidpnexclusiveownership_t.end.hpp │ │ │ │ ├── checkvidpnexclusiveownership_t.start.hpp │ │ │ │ ├── closeadapter_t.end.hpp │ │ │ │ ├── closeadapter_t.start.hpp │ │ │ │ ├── composition_presenthistorytoken_t.end.hpp │ │ │ │ ├── composition_presenthistorytoken_t.start.hpp │ │ │ │ ├── configuresharedresource_t.end.hpp │ │ │ │ ├── configuresharedresource_t.start.hpp │ │ │ │ ├── cpdrivername_t.end.hpp │ │ │ │ ├── cpdrivername_t.start.hpp │ │ │ │ ├── create_outputdupl_t.end.hpp │ │ │ │ ├── create_outputdupl_t.start.hpp │ │ │ │ ├── createallocation_t.end.hpp │ │ │ │ ├── createallocation_t.start.hpp │ │ │ │ ├── createallocationflags_t.end.hpp │ │ │ │ ├── createallocationflags_t.start.hpp │ │ │ │ ├── createcontext_t.end.hpp │ │ │ │ ├── createcontext_t.start.hpp │ │ │ │ ├── createcontextvirtual_t.end.hpp │ │ │ │ ├── createcontextvirtual_t.start.hpp │ │ │ │ ├── createdcfrommemory_t.end.hpp │ │ │ │ ├── createdcfrommemory_t.start.hpp │ │ │ │ ├── createdevice_t.end.hpp │ │ │ │ ├── createdevice_t.start.hpp │ │ │ │ ├── createdeviceflags_t.end.hpp │ │ │ │ ├── createdeviceflags_t.start.hpp │ │ │ │ ├── createhwcontext_t.end.hpp │ │ │ │ ├── createhwcontext_t.start.hpp │ │ │ │ ├── createhwqueue_t.end.hpp │ │ │ │ ├── createhwqueue_t.start.hpp │ │ │ │ ├── createkeyedmutex2_flags_t.end.hpp │ │ │ │ ├── createkeyedmutex2_flags_t.start.hpp │ │ │ │ ├── createkeyedmutex2_t.end.hpp │ │ │ │ ├── createkeyedmutex2_t.start.hpp │ │ │ │ ├── createkeyedmutex_t.end.hpp │ │ │ │ ├── createkeyedmutex_t.start.hpp │ │ │ │ ├── createoverlay_t.end.hpp │ │ │ │ ├── createoverlay_t.start.hpp │ │ │ │ ├── createpagingqueue_t.end.hpp │ │ │ │ ├── createpagingqueue_t.start.hpp │ │ │ │ ├── createprotectedsession_t.end.hpp │ │ │ │ ├── createprotectedsession_t.start.hpp │ │ │ │ ├── createstandardallocation_t.end.hpp │ │ │ │ ├── createstandardallocation_t.start.hpp │ │ │ │ ├── createstandardallocationflags_t.end.hpp │ │ │ │ ├── createstandardallocationflags_t.start.hpp │ │ │ │ ├── createsynchronizationobject2_t.end.hpp │ │ │ │ ├── createsynchronizationobject2_t.start.hpp │ │ │ │ ├── createsynchronizationobject_t.end.hpp │ │ │ │ ├── createsynchronizationobject_t.start.hpp │ │ │ │ ├── currentdisplaymode_t.end.hpp │ │ │ │ ├── currentdisplaymode_t.start.hpp │ │ │ │ ├── debug_snapshot_escape_t.end.hpp │ │ │ │ ├── debug_snapshot_escape_t.start.hpp │ │ │ │ ├── destroy_outputdupl_t.end.hpp │ │ │ │ ├── destroy_outputdupl_t.start.hpp │ │ │ │ ├── destroyallocation2_t.end.hpp │ │ │ │ ├── destroyallocation2_t.start.hpp │ │ │ │ ├── destroyallocation_t.end.hpp │ │ │ │ ├── destroyallocation_t.start.hpp │ │ │ │ ├── destroycontext_t.end.hpp │ │ │ │ ├── destroycontext_t.start.hpp │ │ │ │ ├── destroydcfrommemory_t.end.hpp │ │ │ │ ├── destroydcfrommemory_t.start.hpp │ │ │ │ ├── destroydevice_t.end.hpp │ │ │ │ ├── destroydevice_t.start.hpp │ │ │ │ ├── destroyhwcontext_t.end.hpp │ │ │ │ ├── destroyhwcontext_t.start.hpp │ │ │ │ ├── destroyhwqueue_t.end.hpp │ │ │ │ ├── destroyhwqueue_t.start.hpp │ │ │ │ ├── destroykeyedmutex_t.end.hpp │ │ │ │ ├── destroykeyedmutex_t.start.hpp │ │ │ │ ├── destroyoverlay_t.end.hpp │ │ │ │ ├── destroyoverlay_t.start.hpp │ │ │ │ ├── destroyprotectedsession_t.end.hpp │ │ │ │ ├── destroyprotectedsession_t.start.hpp │ │ │ │ ├── destroysynchronizationobject_t.end.hpp │ │ │ │ ├── destroysynchronizationobject_t.start.hpp │ │ │ │ ├── device_escape_t.end.hpp │ │ │ │ ├── device_escape_t.start.hpp │ │ │ │ ├── device_ids_t.end.hpp │ │ │ │ ├── device_ids_t.start.hpp │ │ │ │ ├── devicepagefault_state_t.end.hpp │ │ │ │ ├── devicepagefault_state_t.start.hpp │ │ │ │ ├── devicepresent_queue_state_t.end.hpp │ │ │ │ ├── devicepresent_queue_state_t.start.hpp │ │ │ │ ├── devicepresent_state_dwm_t.end.hpp │ │ │ │ ├── devicepresent_state_dwm_t.start.hpp │ │ │ │ ├── devicepresent_state_t.end.hpp │ │ │ │ ├── devicepresent_state_t.start.hpp │ │ │ │ ├── devicereset_state_t.end.hpp │ │ │ │ ├── devicereset_state_t.start.hpp │ │ │ │ ├── directflip_support_t.end.hpp │ │ │ │ ├── directflip_support_t.start.hpp │ │ │ │ ├── dirtyregions_t.end.hpp │ │ │ │ ├── dirtyregions_t.start.hpp │ │ │ │ ├── display_umd_filenameinfo_t.end.hpp │ │ │ │ ├── display_umd_filenameinfo_t.start.hpp │ │ │ │ ├── displaymode_t.end.hpp │ │ │ │ ├── displaymode_t.start.hpp │ │ │ │ ├── displaymodelist_t.end.hpp │ │ │ │ ├── displaymodelist_t.start.hpp │ │ │ │ ├── dlist_driver_name_t.end.hpp │ │ │ │ ├── dlist_driver_name_t.start.hpp │ │ │ │ ├── dmm_escape_t.end.hpp │ │ │ │ ├── dmm_escape_t.start.hpp │ │ │ │ ├── dod_set_dirtyrect_mode_t.end.hpp │ │ │ │ ├── dod_set_dirtyrect_mode_t.start.hpp │ │ │ │ ├── driver_description_t.end.hpp │ │ │ │ ├── driver_description_t.start.hpp │ │ │ │ ├── drivercaps_ext_t.end.hpp │ │ │ │ ├── drivercaps_ext_t.start.hpp │ │ │ │ ├── enumadapters2_t.end.hpp │ │ │ │ ├── enumadapters2_t.start.hpp │ │ │ │ ├── enumadapters3_t.end.hpp │ │ │ │ ├── enumadapters3_t.start.hpp │ │ │ │ ├── enumadapters_filter_t.end.hpp │ │ │ │ ├── enumadapters_filter_t.start.hpp │ │ │ │ ├── enumadapters_t.end.hpp │ │ │ │ ├── enumadapters_t.start.hpp │ │ │ │ ├── escape_t.end.hpp │ │ │ │ ├── escape_t.start.hpp │ │ │ │ ├── evict_t.end.hpp │ │ │ │ ├── evict_t.start.hpp │ │ │ │ ├── eviction_criteria_t.end.hpp │ │ │ │ ├── eviction_criteria_t.start.hpp │ │ │ │ ├── fence_presenthistorytoken_t.end.hpp │ │ │ │ ├── fence_presenthistorytoken_t.start.hpp │ │ │ │ ├── flipinfoflags_t.end.hpp │ │ │ │ ├── flipinfoflags_t.start.hpp │ │ │ │ ├── flipmanager_presenthistorytoken_t.end.hpp │ │ │ │ ├── flipmanager_presenthistorytoken_t.start.hpp │ │ │ │ ├── flipmodel_presenthistorytoken_t.end.hpp │ │ │ │ ├── flipmodel_presenthistorytoken_t.start.hpp │ │ │ │ ├── flipmodel_presenthistorytokenflags_t.end.hpp │ │ │ │ ├── flipmodel_presenthistorytokenflags_t.start.hpp │ │ │ │ ├── flipoverlay_t.end.hpp │ │ │ │ ├── flipoverlay_t.start.hpp │ │ │ │ ├── flipqueueinfo_t.end.hpp │ │ │ │ ├── flipqueueinfo_t.start.hpp │ │ │ │ ├── flushheaptransitions_t.end.hpp │ │ │ │ ├── flushheaptransitions_t.start.hpp │ │ │ │ ├── freegpuvirtualaddress_t.end.hpp │ │ │ │ ├── freegpuvirtualaddress_t.start.hpp │ │ │ │ ├── gdimodel_presenthistorytoken_t.end.hpp │ │ │ │ ├── gdimodel_presenthistorytoken_t.start.hpp │ │ │ │ ├── gdimodel_sysmem_presenthistorytoken_t.end.hpp │ │ │ │ ├── gdimodel_sysmem_presenthistorytoken_t.start.hpp │ │ │ │ ├── get_device_vidpn_ownership_info_t.end.hpp │ │ │ │ ├── get_device_vidpn_ownership_info_t.start.hpp │ │ │ │ ├── get_gpummu_caps_t.end.hpp │ │ │ │ ├── get_gpummu_caps_t.start.hpp │ │ │ │ ├── get_multiplane_overlay_caps_t.end.hpp │ │ │ │ ├── get_multiplane_overlay_caps_t.start.hpp │ │ │ │ ├── get_post_composition_caps_t.end.hpp │ │ │ │ ├── get_post_composition_caps_t.start.hpp │ │ │ │ ├── get_pte_t.end.hpp │ │ │ │ ├── get_pte_t.start.hpp │ │ │ │ ├── get_segment_caps_t.end.hpp │ │ │ │ ├── get_segment_caps_t.start.hpp │ │ │ │ ├── getallocationpriority_t.end.hpp │ │ │ │ ├── getallocationpriority_t.start.hpp │ │ │ │ ├── getcontextinprocessschedulingpriority_t.end.hpp │ │ │ │ ├── getcontextinprocessschedulingpriority_t.start.hpp │ │ │ │ ├── getcontextschedulingpriority_t.end.hpp │ │ │ │ ├── getcontextschedulingpriority_t.start.hpp │ │ │ │ ├── getdevicestate_t.end.hpp │ │ │ │ ├── getdevicestate_t.start.hpp │ │ │ │ ├── getdisplaymodelist_t.end.hpp │ │ │ │ ├── getdisplaymodelist_t.start.hpp │ │ │ │ ├── getmultisamplemethodlist_t.end.hpp │ │ │ │ ├── getmultisamplemethodlist_t.start.hpp │ │ │ │ ├── getoverlaystate_t.end.hpp │ │ │ │ ├── getoverlaystate_t.start.hpp │ │ │ │ ├── getpresenthistory_t.end.hpp │ │ │ │ ├── getpresenthistory_t.start.hpp │ │ │ │ ├── getprocessdeviceremovalsupport_t.end.hpp │ │ │ │ ├── getprocessdeviceremovalsupport_t.start.hpp │ │ │ │ ├── getruntimedata_t.end.hpp │ │ │ │ ├── getruntimedata_t.start.hpp │ │ │ │ ├── getscanline_t.end.hpp │ │ │ │ ├── getscanline_t.start.hpp │ │ │ │ ├── getsharedprimaryhandle_t.end.hpp │ │ │ │ ├── getsharedprimaryhandle_t.start.hpp │ │ │ │ ├── getsharedresourceadapterluid_t.end.hpp │ │ │ │ ├── getsharedresourceadapterluid_t.start.hpp │ │ │ │ ├── getverticalblankevent_t.end.hpp │ │ │ │ ├── getverticalblankevent_t.start.hpp │ │ │ │ ├── gpummu_caps_t.end.hpp │ │ │ │ ├── gpummu_caps_t.start.hpp │ │ │ │ ├── gpuversion_t.end.hpp │ │ │ │ ├── gpuversion_t.start.hpp │ │ │ │ ├── history_buffer_status_t.end.hpp │ │ │ │ ├── history_buffer_status_t.start.hpp │ │ │ │ ├── hwdrm_support_t.end.hpp │ │ │ │ ├── hwdrm_support_t.start.hpp │ │ │ │ ├── hybrid_list_t.end.hpp │ │ │ │ ├── hybrid_list_t.start.hpp │ │ │ │ ├── independentflip_secondary_support_t.end.hpp │ │ │ │ ├── independentflip_secondary_support_t.start.hpp │ │ │ │ ├── independentflip_support_t.end.hpp │ │ │ │ ├── independentflip_support_t.start.hpp │ │ │ │ ├── invalidateactivevidpn_t.end.hpp │ │ │ │ ├── invalidateactivevidpn_t.start.hpp │ │ │ │ ├── invalidatecache_t.end.hpp │ │ │ │ ├── invalidatecache_t.start.hpp │ │ │ │ ├── isbaddriverforhwprotectiondisabled_t.end.hpp │ │ │ │ ├── isbaddriverforhwprotectiondisabled_t.start.hpp │ │ │ │ ├── kmd_driver_version_t.end.hpp │ │ │ │ ├── kmd_driver_version_t.start.hpp │ │ │ │ ├── lock2_t.end.hpp │ │ │ │ ├── lock2_t.start.hpp │ │ │ │ ├── lock_t.end.hpp │ │ │ │ ├── lock_t.start.hpp │ │ │ │ ├── markdeviceaserror_t.end.hpp │ │ │ │ ├── markdeviceaserror_t.start.hpp │ │ │ │ ├── miracast_display_device_caps_t.end.hpp │ │ │ │ ├── miracast_display_device_caps_t.start.hpp │ │ │ │ ├── miracast_display_device_status_t.end.hpp │ │ │ │ ├── miracast_display_device_status_t.start.hpp │ │ │ │ ├── miracast_display_stop_sessions_t.end.hpp │ │ │ │ ├── miracast_display_stop_sessions_t.start.hpp │ │ │ │ ├── miracastcompaniondrivername_t.end.hpp │ │ │ │ ├── miracastcompaniondrivername_t.start.hpp │ │ │ │ ├── move_rect_t.end.hpp │ │ │ │ ├── move_rect_t.start.hpp │ │ │ │ ├── mpo3ddi_support_t.end.hpp │ │ │ │ ├── mpo3ddi_support_t.start.hpp │ │ │ │ ├── mpokernelcaps_support_t.end.hpp │ │ │ │ ├── mpokernelcaps_support_t.start.hpp │ │ │ │ ├── multiplane_overlay2_t.end.hpp │ │ │ │ ├── multiplane_overlay2_t.start.hpp │ │ │ │ ├── multiplane_overlay3_t.end.hpp │ │ │ │ ├── multiplane_overlay3_t.start.hpp │ │ │ │ ├── multiplane_overlay_attributes2_t.end.hpp │ │ │ │ ├── multiplane_overlay_attributes2_t.start.hpp │ │ │ │ ├── multiplane_overlay_attributes3_t.end.hpp │ │ │ │ ├── multiplane_overlay_attributes3_t.start.hpp │ │ │ │ ├── multiplane_overlay_attributes_t.end.hpp │ │ │ │ ├── multiplane_overlay_attributes_t.start.hpp │ │ │ │ ├── multiplane_overlay_caps_t.end.hpp │ │ │ │ ├── multiplane_overlay_caps_t.start.hpp │ │ │ │ ├── multiplane_overlay_post_composition_flags_t.end.hpp │ │ │ │ ├── multiplane_overlay_post_composition_flags_t.start.hpp │ │ │ │ ├── multiplane_overlay_post_composition_t.end.hpp │ │ │ │ ├── multiplane_overlay_post_composition_t.start.hpp │ │ │ │ ├── multiplane_overlay_post_composition_with_source_t.end.hpp │ │ │ │ ├── multiplane_overlay_post_composition_with_source_t.start.hpp │ │ │ │ ├── multiplane_overlay_t.end.hpp │ │ │ │ ├── multiplane_overlay_t.start.hpp │ │ │ │ ├── multiplaneoverlay_decode_support_t.end.hpp │ │ │ │ ├── multiplaneoverlay_decode_support_t.start.hpp │ │ │ │ ├── multiplaneoverlay_hud_support_t.end.hpp │ │ │ │ ├── multiplaneoverlay_hud_support_t.start.hpp │ │ │ │ ├── multiplaneoverlay_secondary_support_t.end.hpp │ │ │ │ ├── multiplaneoverlay_secondary_support_t.start.hpp │ │ │ │ ├── multiplaneoverlay_stretch_support_t.end.hpp │ │ │ │ ├── multiplaneoverlay_stretch_support_t.start.hpp │ │ │ │ ├── multiplaneoverlay_support_t.end.hpp │ │ │ │ ├── multiplaneoverlay_support_t.start.hpp │ │ │ │ ├── multisamplemethod_t.end.hpp │ │ │ │ ├── multisamplemethod_t.start.hpp │ │ │ │ ├── node_perfdata_t.end.hpp │ │ │ │ ├── node_perfdata_t.start.hpp │ │ │ │ ├── nodemetadata_t.end.hpp │ │ │ │ ├── nodemetadata_t.start.hpp │ │ │ │ ├── offer_flags_t.end.hpp │ │ │ │ ├── offer_flags_t.start.hpp │ │ │ │ ├── offerallocations_t.end.hpp │ │ │ │ ├── offerallocations_t.start.hpp │ │ │ │ ├── openadapterfromdevicename_t.end.hpp │ │ │ │ ├── openadapterfromdevicename_t.start.hpp │ │ │ │ ├── openadapterfromgdidisplayname_t.end.hpp │ │ │ │ ├── openadapterfromgdidisplayname_t.start.hpp │ │ │ │ ├── openadapterfromhdc_t.end.hpp │ │ │ │ ├── openadapterfromhdc_t.start.hpp │ │ │ │ ├── openadapterfromluid_t.end.hpp │ │ │ │ ├── openadapterfromluid_t.start.hpp │ │ │ │ ├── openglinfo_t.end.hpp │ │ │ │ ├── openglinfo_t.start.hpp │ │ │ │ ├── openkeyedmutex2_t.end.hpp │ │ │ │ ├── openkeyedmutex2_t.start.hpp │ │ │ │ ├── openkeyedmutex_t.end.hpp │ │ │ │ ├── openkeyedmutex_t.start.hpp │ │ │ │ ├── openkeyedmutexfromnthandle_t.end.hpp │ │ │ │ ├── openkeyedmutexfromnthandle_t.start.hpp │ │ │ │ ├── opennthandlefromname_t.end.hpp │ │ │ │ ├── opennthandlefromname_t.start.hpp │ │ │ │ ├── openprotectedsessionfromnthandle_t.end.hpp │ │ │ │ ├── openprotectedsessionfromnthandle_t.start.hpp │ │ │ │ ├── openresource_t.end.hpp │ │ │ │ ├── openresource_t.start.hpp │ │ │ │ ├── openresourcefromnthandle_t.end.hpp │ │ │ │ ├── openresourcefromnthandle_t.start.hpp │ │ │ │ ├── opensynchronizationobject_t.end.hpp │ │ │ │ ├── opensynchronizationobject_t.start.hpp │ │ │ │ ├── opensyncobjectfromnthandle2_t.end.hpp │ │ │ │ ├── opensyncobjectfromnthandle2_t.start.hpp │ │ │ │ ├── opensyncobjectfromnthandle_t.end.hpp │ │ │ │ ├── opensyncobjectfromnthandle_t.start.hpp │ │ │ │ ├── opensyncobjectnthandlefromname_t.end.hpp │ │ │ │ ├── opensyncobjectnthandlefromname_t.start.hpp │ │ │ │ ├── outdupl_pointer_shape_info_t.end.hpp │ │ │ │ ├── outdupl_pointer_shape_info_t.start.hpp │ │ │ │ ├── outputdupl_frameinfo_t.end.hpp │ │ │ │ ├── outputdupl_frameinfo_t.start.hpp │ │ │ │ ├── outputdupl_get_frameinfo_t.end.hpp │ │ │ │ ├── outputdupl_get_frameinfo_t.start.hpp │ │ │ │ ├── outputdupl_get_pointer_shape_data_t.end.hpp │ │ │ │ ├── outputdupl_get_pointer_shape_data_t.start.hpp │ │ │ │ ├── outputdupl_keyedmutex_t.end.hpp │ │ │ │ ├── outputdupl_keyedmutex_t.start.hpp │ │ │ │ ├── outputdupl_metadata_t.end.hpp │ │ │ │ ├── outputdupl_metadata_t.start.hpp │ │ │ │ ├── outputdupl_pointer_position_t.end.hpp │ │ │ │ ├── outputdupl_pointer_position_t.start.hpp │ │ │ │ ├── outputdupl_release_frame_t.end.hpp │ │ │ │ ├── outputdupl_release_frame_t.start.hpp │ │ │ │ ├── outputdupl_snapshot_t.end.hpp │ │ │ │ ├── outputdupl_snapshot_t.start.hpp │ │ │ │ ├── outputduplcontextscount_t.end.hpp │ │ │ │ ├── outputduplcontextscount_t.start.hpp │ │ │ │ ├── outputduplcreationflags_t.end.hpp │ │ │ │ ├── outputduplcreationflags_t.start.hpp │ │ │ │ ├── outputduplpresent_t.end.hpp │ │ │ │ ├── outputduplpresent_t.start.hpp │ │ │ │ ├── outputduplpresentflags_t.end.hpp │ │ │ │ ├── outputduplpresentflags_t.start.hpp │ │ │ │ ├── outputduplpresenttohwqueue_t.end.hpp │ │ │ │ ├── outputduplpresenttohwqueue_t.start.hpp │ │ │ │ ├── page_table_level_desc_t.end.hpp │ │ │ │ ├── page_table_level_desc_t.start.hpp │ │ │ │ ├── panelfitter_support_t.end.hpp │ │ │ │ ├── panelfitter_support_t.start.hpp │ │ │ │ ├── paravirtualization_t.end.hpp │ │ │ │ ├── paravirtualization_t.start.hpp │ │ │ │ ├── physical_adapter_count_t.end.hpp │ │ │ │ ├── physical_adapter_count_t.start.hpp │ │ │ │ ├── pindirectflipresources_t.end.hpp │ │ │ │ ├── pindirectflipresources_t.start.hpp │ │ │ │ ├── plane_specific_input_flags_t.end.hpp │ │ │ │ ├── plane_specific_input_flags_t.start.hpp │ │ │ │ ├── plane_specific_output_flags_t.end.hpp │ │ │ │ ├── plane_specific_output_flags_t.start.hpp │ │ │ │ ├── polldisplaychildren_t.end.hpp │ │ │ │ ├── polldisplaychildren_t.start.hpp │ │ │ │ ├── present_display_only_flags_t.end.hpp │ │ │ │ ├── present_display_only_flags_t.start.hpp │ │ │ │ ├── present_multiplane_overlay2_t.end.hpp │ │ │ │ ├── present_multiplane_overlay2_t.start.hpp │ │ │ │ ├── present_multiplane_overlay3_t.end.hpp │ │ │ │ ├── present_multiplane_overlay3_t.start.hpp │ │ │ │ ├── present_multiplane_overlay_flags_t.end.hpp │ │ │ │ ├── present_multiplane_overlay_flags_t.start.hpp │ │ │ │ ├── present_multiplane_overlay_t.end.hpp │ │ │ │ ├── present_multiplane_overlay_t.start.hpp │ │ │ │ ├── present_redirected_t.end.hpp │ │ │ │ ├── present_redirected_t.start.hpp │ │ │ │ ├── present_redirecteds_flags_t.end.hpp │ │ │ │ ├── present_redirecteds_flags_t.start.hpp │ │ │ │ ├── present_rgns_t.end.hpp │ │ │ │ ├── present_rgns_t.start.hpp │ │ │ │ ├── present_stats_dwm_t.end.hpp │ │ │ │ ├── present_stats_dwm_t.start.hpp │ │ │ │ ├── present_stats_t.end.hpp │ │ │ │ ├── present_stats_t.start.hpp │ │ │ │ ├── present_t.end.hpp │ │ │ │ ├── present_t.start.hpp │ │ │ │ ├── presentflags_t.end.hpp │ │ │ │ ├── presentflags_t.start.hpp │ │ │ │ ├── presenthistorytoken_t.end.hpp │ │ │ │ ├── presenthistorytoken_t.start.hpp │ │ │ │ ├── process_verifier_option_data_t.end.hpp │ │ │ │ ├── process_verifier_option_data_t.start.hpp │ │ │ │ ├── process_verifier_option_t.end.hpp │ │ │ │ ├── process_verifier_option_t.start.hpp │ │ │ │ ├── process_verifier_vidmm_flags_t.end.hpp │ │ │ │ ├── process_verifier_vidmm_flags_t.start.hpp │ │ │ │ ├── process_verifier_vidmm_restrict_budget_t.end.hpp │ │ │ │ ├── process_verifier_vidmm_restrict_budget_t.start.hpp │ │ │ │ ├── query_adapter_unique_guid_t.end.hpp │ │ │ │ ├── query_adapter_unique_guid_t.start.hpp │ │ │ │ ├── query_device_ids_t.end.hpp │ │ │ │ ├── query_device_ids_t.start.hpp │ │ │ │ ├── query_gpummu_caps_t.end.hpp │ │ │ │ ├── query_gpummu_caps_t.start.hpp │ │ │ │ ├── query_miracast_driver_type_t.end.hpp │ │ │ │ ├── query_miracast_driver_type_t.start.hpp │ │ │ │ ├── query_physical_adapter_pnp_key_t.end.hpp │ │ │ │ ├── query_physical_adapter_pnp_key_t.start.hpp │ │ │ │ ├── query_scanout_caps_t.end.hpp │ │ │ │ ├── query_scanout_caps_t.start.hpp │ │ │ │ ├── queryadapterinfo_t.end.hpp │ │ │ │ ├── queryadapterinfo_t.start.hpp │ │ │ │ ├── queryallocationresidency_t.end.hpp │ │ │ │ ├── queryallocationresidency_t.start.hpp │ │ │ │ ├── queryclockcalibration_t.end.hpp │ │ │ │ ├── queryclockcalibration_t.start.hpp │ │ │ │ ├── queryfseblock_t.end.hpp │ │ │ │ ├── queryfseblock_t.start.hpp │ │ │ │ ├── queryfseflags_t.end.hpp │ │ │ │ ├── queryfseflags_t.start.hpp │ │ │ │ ├── queryprocessofferinfo_t.end.hpp │ │ │ │ ├── queryprocessofferinfo_t.start.hpp │ │ │ │ ├── queryprotectedsessioninfofromnthandle_t.end.hpp │ │ │ │ ├── queryprotectedsessioninfofromnthandle_t.start.hpp │ │ │ │ ├── queryprotectedsessionstatus_t.end.hpp │ │ │ │ ├── queryprotectedsessionstatus_t.start.hpp │ │ │ │ ├── queryremotevidpnsourcefromgdidisplayname_t.end.hpp │ │ │ │ ├── queryremotevidpnsourcefromgdidisplayname_t.start.hpp │ │ │ │ ├── queryresourceinfo_t.end.hpp │ │ │ │ ├── queryresourceinfo_t.start.hpp │ │ │ │ ├── queryresourceinfofromnthandle_t.end.hpp │ │ │ │ ├── queryresourceinfofromnthandle_t.start.hpp │ │ │ │ ├── querystatistics_t.end.hpp │ │ │ │ ├── querystatistics_t.start.hpp │ │ │ │ ├── queryvideomemoryinfo_t.end.hpp │ │ │ │ ├── queryvideomemoryinfo_t.start.hpp │ │ │ │ ├── queryvidpnexclusiveownership_t.end.hpp │ │ │ │ ├── queryvidpnexclusiveownership_t.start.hpp │ │ │ │ ├── reclaimallocations2_t.end.hpp │ │ │ │ ├── reclaimallocations2_t.start.hpp │ │ │ │ ├── reclaimallocations_t.end.hpp │ │ │ │ ├── reclaimallocations_t.start.hpp │ │ │ │ ├── registerbudgetchangenotification_t.end.hpp │ │ │ │ ├── registerbudgetchangenotification_t.start.hpp │ │ │ │ ├── registertrimnotification_t.end.hpp │ │ │ │ ├── registertrimnotification_t.start.hpp │ │ │ │ ├── releasekeyedmutex2_t.end.hpp │ │ │ │ ├── releasekeyedmutex2_t.start.hpp │ │ │ │ ├── releasekeyedmutex_t.end.hpp │ │ │ │ ├── releasekeyedmutex_t.start.hpp │ │ │ │ ├── render_t.end.hpp │ │ │ │ ├── render_t.start.hpp │ │ │ │ ├── renderflags_t.end.hpp │ │ │ │ ├── renderflags_t.start.hpp │ │ │ │ ├── request_machine_crash_escape_t.end.hpp │ │ │ │ ├── request_machine_crash_escape_t.start.hpp │ │ │ │ ├── scatterblt_t.end.hpp │ │ │ │ ├── scatterblt_t.start.hpp │ │ │ │ ├── scatterblts_t.end.hpp │ │ │ │ ├── scatterblts_t.start.hpp │ │ │ │ ├── segment_caps_t.end.hpp │ │ │ │ ├── segment_caps_t.start.hpp │ │ │ │ ├── segmentgroupsizeinfo_t.end.hpp │ │ │ │ ├── segmentgroupsizeinfo_t.start.hpp │ │ │ │ ├── segmentsizeinfo_t.end.hpp │ │ │ │ ├── segmentsizeinfo_t.start.hpp │ │ │ │ ├── set_colorspace_transform_t.end.hpp │ │ │ │ ├── set_colorspace_transform_t.start.hpp │ │ │ │ ├── setallocationpriority_t.end.hpp │ │ │ │ ├── setallocationpriority_t.start.hpp │ │ │ │ ├── setcontextinprocessschedulingpriority_t.end.hpp │ │ │ │ ├── setcontextinprocessschedulingpriority_t.start.hpp │ │ │ │ ├── setcontextschedulingpriority_t.end.hpp │ │ │ │ ├── setcontextschedulingpriority_t.start.hpp │ │ │ │ ├── setdisplaymode_flags_t.end.hpp │ │ │ │ ├── setdisplaymode_flags_t.start.hpp │ │ │ │ ├── setdisplaymode_t.end.hpp │ │ │ │ ├── setdisplaymode_t.start.hpp │ │ │ │ ├── setdisplayprivatedriverformat_t.end.hpp │ │ │ │ ├── setdisplayprivatedriverformat_t.start.hpp │ │ │ │ ├── setfseblock_t.end.hpp │ │ │ │ ├── setfseblock_t.start.hpp │ │ │ │ ├── setfseblockflags_t.end.hpp │ │ │ │ ├── setfseblockflags_t.start.hpp │ │ │ │ ├── setgammaramp_t.end.hpp │ │ │ │ ├── setgammaramp_t.start.hpp │ │ │ │ ├── sethwprotectionteardownrecovery_t.end.hpp │ │ │ │ ├── sethwprotectionteardownrecovery_t.start.hpp │ │ │ │ ├── setqueuedlimit_t.end.hpp │ │ │ │ ├── setqueuedlimit_t.start.hpp │ │ │ │ ├── setstablepowerstate_t.end.hpp │ │ │ │ ├── setstablepowerstate_t.start.hpp │ │ │ │ ├── setsyncrefreshcountwaittarget_t.end.hpp │ │ │ │ ├── setsyncrefreshcountwaittarget_t.start.hpp │ │ │ │ ├── setvidpnsourcehwprotection_t.end.hpp │ │ │ │ ├── setvidpnsourcehwprotection_t.start.hpp │ │ │ │ ├── setvidpnsourceowner1_t.end.hpp │ │ │ │ ├── setvidpnsourceowner1_t.start.hpp │ │ │ │ ├── setvidpnsourceowner2_t.end.hpp │ │ │ │ ├── setvidpnsourceowner2_t.start.hpp │ │ │ │ ├── setvidpnsourceowner_t.end.hpp │ │ │ │ ├── setvidpnsourceowner_t.start.hpp │ │ │ │ ├── sharedprimarylocknotification_t.end.hpp │ │ │ │ ├── sharedprimarylocknotification_t.start.hpp │ │ │ │ ├── sharedprimaryunlocknotification_t.end.hpp │ │ │ │ ├── sharedprimaryunlocknotification_t.start.hpp │ │ │ │ ├── signalsynchronizationobject2_t.end.hpp │ │ │ │ ├── signalsynchronizationobject2_t.start.hpp │ │ │ │ ├── signalsynchronizationobject_t.end.hpp │ │ │ │ ├── signalsynchronizationobject_t.start.hpp │ │ │ │ ├── signalsynchronizationobjectfromcpu_t.end.hpp │ │ │ │ ├── signalsynchronizationobjectfromcpu_t.start.hpp │ │ │ │ ├── signalsynchronizationobjectfromgpu2_t.end.hpp │ │ │ │ ├── signalsynchronizationobjectfromgpu2_t.start.hpp │ │ │ │ ├── signalsynchronizationobjectfromgpu_t.end.hpp │ │ │ │ ├── signalsynchronizationobjectfromgpu_t.start.hpp │ │ │ │ ├── standardallocation_existingheap_t.end.hpp │ │ │ │ ├── standardallocation_existingheap_t.start.hpp │ │ │ │ ├── submitcommand_t.end.hpp │ │ │ │ ├── submitcommand_t.start.hpp │ │ │ │ ├── submitcommandflags_t.end.hpp │ │ │ │ ├── submitcommandflags_t.start.hpp │ │ │ │ ├── submitcommandtohwqueue_t.end.hpp │ │ │ │ ├── submitcommandtohwqueue_t.start.hpp │ │ │ │ ├── submitpresentblttohwqueue_t.end.hpp │ │ │ │ ├── submitpresentblttohwqueue_t.start.hpp │ │ │ │ ├── submitpresenttohwqueue_t.end.hpp │ │ │ │ ├── submitpresenttohwqueue_t.start.hpp │ │ │ │ ├── submitsignalsyncobjectstohwqueue_t.end.hpp │ │ │ │ ├── submitsignalsyncobjectstohwqueue_t.start.hpp │ │ │ │ ├── submitwaitforsyncobjectstohwqueue_t.end.hpp │ │ │ │ ├── submitwaitforsyncobjectstohwqueue_t.start.hpp │ │ │ │ ├── surfacecomplete_presenthistorytoken_t.end.hpp │ │ │ │ ├── surfacecomplete_presenthistorytoken_t.start.hpp │ │ │ │ ├── tdrdbgctrl_escape_t.end.hpp │ │ │ │ ├── tdrdbgctrl_escape_t.start.hpp │ │ │ │ ├── trackedworkload_support_t.end.hpp │ │ │ │ ├── trackedworkload_support_t.start.hpp │ │ │ │ ├── trimnotification_t.end.hpp │ │ │ │ ├── trimnotification_t.start.hpp │ │ │ │ ├── trimprocesscommitment_flags_t.end.hpp │ │ │ │ ├── trimprocesscommitment_flags_t.start.hpp │ │ │ │ ├── trimprocesscommitment_t.end.hpp │ │ │ │ ├── trimprocesscommitment_t.start.hpp │ │ │ │ ├── umd_driver_version_t.end.hpp │ │ │ │ ├── umd_driver_version_t.start.hpp │ │ │ │ ├── umdfilenameinfo_t.end.hpp │ │ │ │ ├── umdfilenameinfo_t.start.hpp │ │ │ │ ├── unlock2_t.end.hpp │ │ │ │ ├── unlock2_t.start.hpp │ │ │ │ ├── unlock_t.end.hpp │ │ │ │ ├── unlock_t.start.hpp │ │ │ │ ├── unpindirectflipresources_t.end.hpp │ │ │ │ ├── unpindirectflipresources_t.start.hpp │ │ │ │ ├── unregisterbudgetchangenotification_t.end.hpp │ │ │ │ ├── unregisterbudgetchangenotification_t.start.hpp │ │ │ │ ├── unregistertrimnotification_t.end.hpp │ │ │ │ ├── unregistertrimnotification_t.start.hpp │ │ │ │ ├── updategpuvirtualaddress_t.end.hpp │ │ │ │ ├── updategpuvirtualaddress_t.start.hpp │ │ │ │ ├── updateoverlay_t.end.hpp │ │ │ │ ├── updateoverlay_t.start.hpp │ │ │ │ ├── va_range_desc_t.end.hpp │ │ │ │ ├── va_range_desc_t.start.hpp │ │ │ │ ├── vad_desc_t.end.hpp │ │ │ │ ├── vad_desc_t.start.hpp │ │ │ │ ├── vidmm_escape_t.end.hpp │ │ │ │ ├── vidmm_escape_t.start.hpp │ │ │ │ ├── vidpnsourceowner_flags_t.end.hpp │ │ │ │ ├── vidpnsourceowner_flags_t.start.hpp │ │ │ │ ├── vidsch_escape_t.end.hpp │ │ │ │ ├── vidsch_escape_t.start.hpp │ │ │ │ ├── virtualaddressflags_t.end.hpp │ │ │ │ ├── virtualaddressflags_t.start.hpp │ │ │ │ ├── virtualaddressinfo_t.end.hpp │ │ │ │ ├── virtualaddressinfo_t.start.hpp │ │ │ │ ├── waitforidle_t.end.hpp │ │ │ │ ├── waitforidle_t.start.hpp │ │ │ │ ├── waitforsynchronizationobject2_t.end.hpp │ │ │ │ ├── waitforsynchronizationobject2_t.start.hpp │ │ │ │ ├── waitforsynchronizationobject_t.end.hpp │ │ │ │ ├── waitforsynchronizationobject_t.start.hpp │ │ │ │ ├── waitforsynchronizationobjectfromcpu_t.end.hpp │ │ │ │ ├── waitforsynchronizationobjectfromcpu_t.start.hpp │ │ │ │ ├── waitforsynchronizationobjectfromgpu_t.end.hpp │ │ │ │ ├── waitforsynchronizationobjectfromgpu_t.start.hpp │ │ │ │ ├── waitforverticalblankevent2_t.end.hpp │ │ │ │ ├── waitforverticalblankevent2_t.start.hpp │ │ │ │ ├── waitforverticalblankevent_t.end.hpp │ │ │ │ ├── waitforverticalblankevent_t.start.hpp │ │ │ │ ├── wddm_1_2_caps_t.end.hpp │ │ │ │ ├── wddm_1_2_caps_t.start.hpp │ │ │ │ ├── wddm_1_3_caps_t.end.hpp │ │ │ │ ├── wddm_1_3_caps_t.start.hpp │ │ │ │ ├── wddm_2_0_caps_t.end.hpp │ │ │ │ ├── wddm_2_0_caps_t.start.hpp │ │ │ │ ├── wddm_2_7_caps_t.end.hpp │ │ │ │ ├── wddm_2_7_caps_t.start.hpp │ │ │ │ ├── workingsetflags_t.end.hpp │ │ │ │ ├── workingsetflags_t.start.hpp │ │ │ │ ├── workingsetinfo_t.end.hpp │ │ │ │ ├── workingsetinfo_t.start.hpp │ │ │ │ ├── xbox_t.end.hpp │ │ │ │ └── xbox_t.start.hpp │ │ │ ├── markdeviceaserror_t.hpp │ │ │ ├── memory_segment_group_t.hpp │ │ │ ├── miracast_display_device_caps_t.hpp │ │ │ ├── miracast_display_device_status_t.hpp │ │ │ ├── miracast_display_stop_sessions_t.hpp │ │ │ ├── miracast_driver_type_t.hpp │ │ │ ├── miracastcompaniondrivername_t.hpp │ │ │ ├── move_rect_t.hpp │ │ │ ├── mpo3ddi_support_t.hpp │ │ │ ├── mpokernelcaps_support_t.hpp │ │ │ ├── multiplane_overlay2_t.hpp │ │ │ ├── multiplane_overlay3_t.hpp │ │ │ ├── multiplane_overlay_attributes2_t.hpp │ │ │ ├── multiplane_overlay_attributes3_t.hpp │ │ │ ├── multiplane_overlay_attributes_t.hpp │ │ │ ├── multiplane_overlay_blend_t.hpp │ │ │ ├── multiplane_overlay_caps_t.hpp │ │ │ ├── multiplane_overlay_flags_t.hpp │ │ │ ├── multiplane_overlay_post_composition_flags_t.hpp │ │ │ ├── multiplane_overlay_post_composition_t.hpp │ │ │ ├── multiplane_overlay_post_composition_with_source_t.hpp │ │ │ ├── multiplane_overlay_stereo_format_t.hpp │ │ │ ├── multiplane_overlay_t.hpp │ │ │ ├── multiplane_overlay_video_frame_format_t.hpp │ │ │ ├── multiplane_overlay_y_cb_cr_flags_t.hpp │ │ │ ├── multiplaneoverlay_decode_support_t.hpp │ │ │ ├── multiplaneoverlay_hud_support_t.hpp │ │ │ ├── multiplaneoverlay_secondary_support_t.hpp │ │ │ ├── multiplaneoverlay_stretch_support_t.hpp │ │ │ ├── multiplaneoverlay_support_t.hpp │ │ │ ├── multisamplemethod_t.hpp │ │ │ ├── node_perfdata_t.hpp │ │ │ ├── nodemetadata_t.hpp │ │ │ ├── offer_flags_t.hpp │ │ │ ├── offer_priority_t.hpp │ │ │ ├── offerallocations_t.hpp │ │ │ ├── openadapterfromdevicename_t.hpp │ │ │ ├── openadapterfromgdidisplayname_t.hpp │ │ │ ├── openadapterfromhdc_t.hpp │ │ │ ├── openadapterfromluid_t.hpp │ │ │ ├── openglinfo_t.hpp │ │ │ ├── openkeyedmutex2_t.hpp │ │ │ ├── openkeyedmutex_t.hpp │ │ │ ├── openkeyedmutexfromnthandle_t.hpp │ │ │ ├── opennthandlefromname_t.hpp │ │ │ ├── openprotectedsessionfromnthandle_t.hpp │ │ │ ├── openresource_t.hpp │ │ │ ├── openresourcefromnthandle_t.hpp │ │ │ ├── opensynchronizationobject_t.hpp │ │ │ ├── opensyncobjectfromnthandle2_t.hpp │ │ │ ├── opensyncobjectfromnthandle_t.hpp │ │ │ ├── opensyncobjectnthandlefromname_t.hpp │ │ │ ├── outdupl_pointer_shape_info_t.hpp │ │ │ ├── outdupl_pointer_shape_type_t.hpp │ │ │ ├── outputdupl_frameinfo_t.hpp │ │ │ ├── outputdupl_get_frameinfo_t.hpp │ │ │ ├── outputdupl_get_pointer_shape_data_t.hpp │ │ │ ├── outputdupl_keyedmutex_t.hpp │ │ │ ├── outputdupl_metadata_t.hpp │ │ │ ├── outputdupl_metadatatype_t.hpp │ │ │ ├── outputdupl_pointer_position_t.hpp │ │ │ ├── outputdupl_release_frame_t.hpp │ │ │ ├── outputdupl_snapshot_t.hpp │ │ │ ├── outputduplcontextscount_t.hpp │ │ │ ├── outputduplcreationflags_t.hpp │ │ │ ├── outputduplpresent_t.hpp │ │ │ ├── outputduplpresentflags_t.hpp │ │ │ ├── outputduplpresenttohwqueue_t.hpp │ │ │ ├── page_table_level_desc_t.hpp │ │ │ ├── panelfitter_support_t.hpp │ │ │ ├── paravirtualization_t.hpp │ │ │ ├── physical_adapter_count_t.hpp │ │ │ ├── pindirectflipresources_t.hpp │ │ │ ├── plane_specific_input_flags_t.hpp │ │ │ ├── plane_specific_output_flags_t.hpp │ │ │ ├── pnp_key_type_t.hpp │ │ │ ├── polldisplaychildren_t.hpp │ │ │ ├── present_display_only_flags_t.hpp │ │ │ ├── present_model_t.hpp │ │ │ ├── present_multiplane_overlay2_t.hpp │ │ │ ├── present_multiplane_overlay3_t.hpp │ │ │ ├── present_multiplane_overlay_flags_t.hpp │ │ │ ├── present_multiplane_overlay_t.hpp │ │ │ ├── present_redirected_t.hpp │ │ │ ├── present_redirecteds_flags_t.hpp │ │ │ ├── present_rgns_t.hpp │ │ │ ├── present_stats_dwm_t.hpp │ │ │ ├── present_stats_t.hpp │ │ │ ├── present_t.hpp │ │ │ ├── presentflags_t.hpp │ │ │ ├── presenthistorytoken_t.hpp │ │ │ ├── process_verifier_option_data_t.hpp │ │ │ ├── process_verifier_option_t.hpp │ │ │ ├── process_verifier_option_type_t.hpp │ │ │ ├── process_verifier_vidmm_flags_t.hpp │ │ │ ├── process_verifier_vidmm_restrict_budget_t.hpp │ │ │ ├── protected_session_status_t.hpp │ │ │ ├── query_adapter_unique_guid_t.hpp │ │ │ ├── query_device_ids_t.hpp │ │ │ ├── query_gpummu_caps_t.hpp │ │ │ ├── query_miracast_driver_type_t.hpp │ │ │ ├── query_physical_adapter_pnp_key_t.hpp │ │ │ ├── query_scanout_caps_t.hpp │ │ │ ├── queryadapterinfo_t.hpp │ │ │ ├── queryallocationresidency_t.hpp │ │ │ ├── queryclockcalibration_t.hpp │ │ │ ├── queryfseblock_t.hpp │ │ │ ├── queryfseflags_t.hpp │ │ │ ├── queryprocessofferinfo_t.hpp │ │ │ ├── queryprotectedsessioninfofromnthandle_t.hpp │ │ │ ├── queryprotectedsessionstatus_t.hpp │ │ │ ├── queryremotevidpnsourcefromgdidisplayname_t.hpp │ │ │ ├── queryresourceinfo_t.hpp │ │ │ ├── queryresourceinfofromnthandle_t.hpp │ │ │ ├── queryresult_preemption_attempt_result_t.hpp │ │ │ ├── querystatistics_allocation_priority_class_t.hpp │ │ │ ├── querystatistics_dma_packet_type_t.hpp │ │ │ ├── querystatistics_query_node_t.hpp │ │ │ ├── querystatistics_query_segment_t.hpp │ │ │ ├── querystatistics_query_vidpnsource_t.hpp │ │ │ ├── querystatistics_queue_packet_type_t.hpp │ │ │ ├── querystatistics_result_t.hpp │ │ │ ├── querystatistics_t.hpp │ │ │ ├── querystatistics_type_t.hpp │ │ │ ├── queryvideomemoryinfo_t.hpp │ │ │ ├── queryvidpnexclusiveownership_t.hpp │ │ │ ├── queuedlimit_type_t.hpp │ │ │ ├── reclaimallocations2_t.hpp │ │ │ ├── reclaimallocations_t.hpp │ │ │ ├── registerbudgetchangenotification_t.hpp │ │ │ ├── registertrimnotification_t.hpp │ │ │ ├── releasekeyedmutex2_t.hpp │ │ │ ├── releasekeyedmutex_t.hpp │ │ │ ├── render_t.hpp │ │ │ ├── renderflags_t.hpp │ │ │ ├── request_machine_crash_escape_t.hpp │ │ │ ├── scatterblt_t.hpp │ │ │ ├── scatterblts_t.hpp │ │ │ ├── schedulingpriorityclass_t.hpp │ │ │ ├── segment_caps_t.hpp │ │ │ ├── segmentgroupsizeinfo_t.hpp │ │ │ ├── segmentsizeinfo_t.hpp │ │ │ ├── set_colorspace_transform_t.hpp │ │ │ ├── setallocationpriority_t.hpp │ │ │ ├── setcontextinprocessschedulingpriority_t.hpp │ │ │ ├── setcontextschedulingpriority_t.hpp │ │ │ ├── setdisplaymode_flags_t.hpp │ │ │ ├── setdisplaymode_t.hpp │ │ │ ├── setdisplayprivatedriverformat_t.hpp │ │ │ ├── setfseblock_t.hpp │ │ │ ├── setfseblockflags_t.hpp │ │ │ ├── setgammaramp_t.hpp │ │ │ ├── sethwprotectionteardownrecovery_t.hpp │ │ │ ├── setqueuedlimit_t.hpp │ │ │ ├── setstablepowerstate_t.hpp │ │ │ ├── setsyncrefreshcountwaittarget_t.hpp │ │ │ ├── setvidpnsourcehwprotection_t.hpp │ │ │ ├── setvidpnsourceowner1_t.hpp │ │ │ ├── setvidpnsourceowner2_t.hpp │ │ │ ├── setvidpnsourceowner_t.hpp │ │ │ ├── sharedprimarylocknotification_t.hpp │ │ │ ├── sharedprimaryunlocknotification_t.hpp │ │ │ ├── signalsynchronizationobject2_t.hpp │ │ │ ├── signalsynchronizationobject_t.hpp │ │ │ ├── signalsynchronizationobjectfromcpu_t.hpp │ │ │ ├── signalsynchronizationobjectfromgpu2_t.hpp │ │ │ ├── signalsynchronizationobjectfromgpu_t.hpp │ │ │ ├── standardallocation_existingheap_t.hpp │ │ │ ├── standardallocationtype_t.hpp │ │ │ ├── submitcommand_t.hpp │ │ │ ├── submitcommandflags_t.hpp │ │ │ ├── submitcommandtohwqueue_t.hpp │ │ │ ├── submitpresentblttohwqueue_t.hpp │ │ │ ├── submitpresenttohwqueue_t.hpp │ │ │ ├── submitsignalsyncobjectstohwqueue_t.hpp │ │ │ ├── submitwaitforsyncobjectstohwqueue_t.hpp │ │ │ ├── surfacecomplete_presenthistorytoken_t.hpp │ │ │ ├── tdrdbgctrl_escape_t.hpp │ │ │ ├── tdrdbgctrltype_t.hpp │ │ │ ├── trackedworkload_support_t.hpp │ │ │ ├── trimnotification_t.hpp │ │ │ ├── trimprocesscommitment_flags_t.hpp │ │ │ ├── trimprocesscommitment_t.hpp │ │ │ ├── umd_driver_version_t.hpp │ │ │ ├── umdfilenameinfo_t.hpp │ │ │ ├── unlock2_t.hpp │ │ │ ├── unlock_t.hpp │ │ │ ├── unpindirectflipresources_t.hpp │ │ │ ├── unregisterbudgetchangenotification_t.hpp │ │ │ ├── unregistertrimnotification_t.hpp │ │ │ ├── updategpuvirtualaddress_t.hpp │ │ │ ├── updateoverlay_t.hpp │ │ │ ├── va_range_desc_t.hpp │ │ │ ├── vad_desc_t.hpp │ │ │ ├── vad_escape_command_t.hpp │ │ │ ├── verifier_option_mode_t.hpp │ │ │ ├── vidmm_escape_t.hpp │ │ │ ├── vidmmescapetype_t.hpp │ │ │ ├── vidpnsourceowner_flags_t.hpp │ │ │ ├── vidpnsourceowner_type_t.hpp │ │ │ ├── vidsch_escape_t.hpp │ │ │ ├── vidschescapetype_t.hpp │ │ │ ├── virtualaddressflags_t.hpp │ │ │ ├── virtualaddressinfo_t.hpp │ │ │ ├── waitforidle_t.hpp │ │ │ ├── waitforsynchronizationobject2_t.hpp │ │ │ ├── waitforsynchronizationobject_t.hpp │ │ │ ├── waitforsynchronizationobjectfromcpu_t.hpp │ │ │ ├── waitforsynchronizationobjectfromgpu_t.hpp │ │ │ ├── waitforverticalblankevent2_t.hpp │ │ │ ├── waitforverticalblankevent_t.hpp │ │ │ ├── wddm_1_2_caps_t.hpp │ │ │ ├── wddm_1_3_caps_t.hpp │ │ │ ├── wddm_2_0_caps_t.hpp │ │ │ ├── wddm_2_7_caps_t.hpp │ │ │ ├── workingsetflags_t.hpp │ │ │ ├── workingsetinfo_t.hpp │ │ │ └── xbox_t.hpp │ │ ├── dbg/ │ │ │ ├── api.hpp │ │ │ ├── log_reason_t.hpp │ │ │ ├── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ └── state_t.hpp │ │ ├── dbgk/ │ │ │ ├── api.hpp │ │ │ ├── livedump_callback_routine_t.hpp │ │ │ ├── livedump_flags_t.hpp │ │ │ ├── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ ├── api.start.hpp │ │ │ │ ├── livedump_flags_t.end.hpp │ │ │ │ ├── livedump_flags_t.start.hpp │ │ │ │ ├── silostate_t.end.hpp │ │ │ │ └── silostate_t.start.hpp │ │ │ └── silostate_t.hpp │ │ ├── dbgkd/ │ │ │ ├── any_control_set_t.hpp │ │ │ ├── breakpointex_t.hpp │ │ │ ├── context_ex_t.hpp │ │ │ ├── continue2_t.hpp │ │ │ ├── continue_t.hpp │ │ │ ├── debug_data_header64_t.hpp │ │ │ ├── fill_memory_t.hpp │ │ │ ├── get_context_t.hpp │ │ │ ├── get_internal_breakpoint32_t.hpp │ │ │ ├── get_internal_breakpoint64_t.hpp │ │ │ ├── get_set_bus_data_t.hpp │ │ │ ├── get_version32_t.hpp │ │ │ ├── get_version64_t.hpp │ │ │ ├── load_symbols32_t.hpp │ │ │ ├── load_symbols64_t.hpp │ │ │ ├── magic/ │ │ │ │ ├── any_control_set_t.end.hpp │ │ │ │ ├── any_control_set_t.start.hpp │ │ │ │ ├── breakpointex_t.end.hpp │ │ │ │ ├── breakpointex_t.start.hpp │ │ │ │ ├── context_ex_t.end.hpp │ │ │ │ ├── context_ex_t.start.hpp │ │ │ │ ├── continue2_t.end.hpp │ │ │ │ ├── continue2_t.start.hpp │ │ │ │ ├── continue_t.end.hpp │ │ │ │ ├── continue_t.start.hpp │ │ │ │ ├── debug_data_header64_t.end.hpp │ │ │ │ ├── debug_data_header64_t.start.hpp │ │ │ │ ├── fill_memory_t.end.hpp │ │ │ │ ├── fill_memory_t.start.hpp │ │ │ │ ├── get_internal_breakpoint32_t.end.hpp │ │ │ │ ├── get_internal_breakpoint32_t.start.hpp │ │ │ │ ├── get_internal_breakpoint64_t.end.hpp │ │ │ │ ├── get_internal_breakpoint64_t.start.hpp │ │ │ │ ├── get_set_bus_data_t.end.hpp │ │ │ │ ├── get_set_bus_data_t.start.hpp │ │ │ │ ├── get_version32_t.end.hpp │ │ │ │ ├── get_version32_t.start.hpp │ │ │ │ ├── get_version64_t.end.hpp │ │ │ │ ├── get_version64_t.start.hpp │ │ │ │ ├── load_symbols32_t.end.hpp │ │ │ │ ├── load_symbols32_t.start.hpp │ │ │ │ ├── load_symbols64_t.end.hpp │ │ │ │ ├── load_symbols64_t.start.hpp │ │ │ │ ├── manipulate_state32_t.end.hpp │ │ │ │ ├── manipulate_state32_t.start.hpp │ │ │ │ ├── manipulate_state64_t.end.hpp │ │ │ │ ├── manipulate_state64_t.start.hpp │ │ │ │ ├── query_memory_t.end.hpp │ │ │ │ ├── query_memory_t.start.hpp │ │ │ │ ├── query_special_calls_t.end.hpp │ │ │ │ ├── query_special_calls_t.start.hpp │ │ │ │ ├── read_memory32_t.end.hpp │ │ │ │ ├── read_memory32_t.start.hpp │ │ │ │ ├── read_memory64_t.end.hpp │ │ │ │ ├── read_memory64_t.start.hpp │ │ │ │ ├── read_write_io32_t.end.hpp │ │ │ │ ├── read_write_io32_t.start.hpp │ │ │ │ ├── read_write_io64_t.end.hpp │ │ │ │ ├── read_write_io64_t.start.hpp │ │ │ │ ├── read_write_io_extended32_t.end.hpp │ │ │ │ ├── read_write_io_extended32_t.start.hpp │ │ │ │ ├── read_write_io_extended64_t.end.hpp │ │ │ │ ├── read_write_io_extended64_t.start.hpp │ │ │ │ ├── read_write_msr_t.end.hpp │ │ │ │ ├── read_write_msr_t.start.hpp │ │ │ │ ├── restore_breakpoint_t.end.hpp │ │ │ │ ├── restore_breakpoint_t.start.hpp │ │ │ │ ├── search_memory_t.end.hpp │ │ │ │ ├── search_memory_t.start.hpp │ │ │ │ ├── set_context_t.end.hpp │ │ │ │ ├── set_context_t.start.hpp │ │ │ │ ├── set_internal_breakpoint32_t.end.hpp │ │ │ │ ├── set_internal_breakpoint32_t.start.hpp │ │ │ │ ├── set_internal_breakpoint64_t.end.hpp │ │ │ │ ├── set_internal_breakpoint64_t.start.hpp │ │ │ │ ├── set_special_call32_t.end.hpp │ │ │ │ ├── set_special_call32_t.start.hpp │ │ │ │ ├── set_special_call64_t.end.hpp │ │ │ │ ├── set_special_call64_t.start.hpp │ │ │ │ ├── switch_partition_t.end.hpp │ │ │ │ ├── switch_partition_t.start.hpp │ │ │ │ ├── write_breakpoint32_t.end.hpp │ │ │ │ ├── write_breakpoint32_t.start.hpp │ │ │ │ ├── write_breakpoint64_t.end.hpp │ │ │ │ ├── write_breakpoint64_t.start.hpp │ │ │ │ ├── write_custom_breakpoint_t.end.hpp │ │ │ │ ├── write_custom_breakpoint_t.start.hpp │ │ │ │ ├── write_memory32_t.end.hpp │ │ │ │ ├── write_memory32_t.start.hpp │ │ │ │ ├── write_memory64_t.end.hpp │ │ │ │ └── write_memory64_t.start.hpp │ │ │ ├── manipulate_state32_t.hpp │ │ │ ├── manipulate_state64_t.hpp │ │ │ ├── query_memory_t.hpp │ │ │ ├── query_special_calls_t.hpp │ │ │ ├── read_memory32_t.hpp │ │ │ ├── read_memory64_t.hpp │ │ │ ├── read_write_io32_t.hpp │ │ │ ├── read_write_io64_t.hpp │ │ │ ├── read_write_io_extended32_t.hpp │ │ │ ├── read_write_io_extended64_t.hpp │ │ │ ├── read_write_msr_t.hpp │ │ │ ├── restore_breakpoint_t.hpp │ │ │ ├── search_memory_t.hpp │ │ │ ├── set_context_t.hpp │ │ │ ├── set_internal_breakpoint32_t.hpp │ │ │ ├── set_internal_breakpoint64_t.hpp │ │ │ ├── set_special_call32_t.hpp │ │ │ ├── set_special_call64_t.hpp │ │ │ ├── switch_partition_t.hpp │ │ │ ├── write_breakpoint32_t.hpp │ │ │ ├── write_breakpoint64_t.hpp │ │ │ ├── write_custom_breakpoint_t.hpp │ │ │ ├── write_memory32_t.hpp │ │ │ └── write_memory64_t.hpp │ │ ├── dbgkm/ │ │ │ ├── create_process_t.hpp │ │ │ ├── create_thread_t.hpp │ │ │ ├── exception32_t.hpp │ │ │ ├── exception64_t.hpp │ │ │ ├── exception_t.hpp │ │ │ ├── exit_process_t.hpp │ │ │ ├── exit_thread_t.hpp │ │ │ ├── load_dll_t.hpp │ │ │ ├── magic/ │ │ │ │ ├── create_process_t.end.hpp │ │ │ │ ├── create_process_t.start.hpp │ │ │ │ ├── create_thread_t.end.hpp │ │ │ │ ├── create_thread_t.start.hpp │ │ │ │ ├── exception32_t.end.hpp │ │ │ │ ├── exception32_t.start.hpp │ │ │ │ ├── exception64_t.end.hpp │ │ │ │ ├── exception64_t.start.hpp │ │ │ │ ├── exception_t.end.hpp │ │ │ │ ├── exception_t.start.hpp │ │ │ │ ├── exit_process_t.end.hpp │ │ │ │ ├── exit_process_t.start.hpp │ │ │ │ ├── exit_thread_t.end.hpp │ │ │ │ ├── exit_thread_t.start.hpp │ │ │ │ ├── load_dll_t.end.hpp │ │ │ │ ├── load_dll_t.start.hpp │ │ │ │ ├── unload_dll_t.end.hpp │ │ │ │ └── unload_dll_t.start.hpp │ │ │ └── unload_dll_t.hpp │ │ ├── dbgkp/ │ │ │ ├── api.hpp │ │ │ ├── error_port_t.hpp │ │ │ └── magic/ │ │ │ ├── api.end.hpp │ │ │ └── api.start.hpp │ │ ├── dbgp/ │ │ │ ├── api.hpp │ │ │ └── magic/ │ │ │ ├── api.end.hpp │ │ │ └── api.start.hpp │ │ ├── devpkey/ │ │ │ ├── api.hpp │ │ │ └── magic/ │ │ │ ├── api.end.hpp │ │ │ └── api.start.hpp │ │ ├── disk/ │ │ │ ├── api.hpp │ │ │ └── magic/ │ │ │ ├── api.end.hpp │ │ │ └── api.start.hpp │ │ ├── dma/ │ │ │ ├── adapter_info_crashdump_t.hpp │ │ │ ├── adapter_info_t.hpp │ │ │ ├── adapter_info_v1_t.hpp │ │ │ ├── adapter_t.hpp │ │ │ ├── api.hpp │ │ │ ├── common_buffer_entry_t.hpp │ │ │ ├── common_buffer_extended_configuration_access_type_t.hpp │ │ │ ├── common_buffer_extended_configuration_t.hpp │ │ │ ├── common_buffer_extended_configuration_type_t.hpp │ │ │ ├── common_buffer_vector_t.hpp │ │ │ ├── completion_status_t.hpp │ │ │ ├── configuration_byte0_t.hpp │ │ │ ├── configuration_byte1_t.hpp │ │ │ ├── function_table_t.hpp │ │ │ ├── interrupt_type_t.hpp │ │ │ ├── iommu_interface_ex_t.hpp │ │ │ ├── iommu_interface_t.hpp │ │ │ ├── iommu_interface_v1_t.hpp │ │ │ ├── iommu_interface_v2_t.hpp │ │ │ ├── magic/ │ │ │ │ ├── adapter_info_crashdump_t.end.hpp │ │ │ │ ├── adapter_info_crashdump_t.start.hpp │ │ │ │ ├── adapter_info_t.end.hpp │ │ │ │ ├── adapter_info_t.start.hpp │ │ │ │ ├── adapter_info_v1_t.end.hpp │ │ │ │ ├── adapter_info_v1_t.start.hpp │ │ │ │ ├── adapter_t.end.hpp │ │ │ │ ├── adapter_t.start.hpp │ │ │ │ ├── api.end.hpp │ │ │ │ ├── api.start.hpp │ │ │ │ ├── common_buffer_entry_t.end.hpp │ │ │ │ ├── common_buffer_entry_t.start.hpp │ │ │ │ ├── common_buffer_extended_configuration_t.end.hpp │ │ │ │ ├── common_buffer_extended_configuration_t.start.hpp │ │ │ │ ├── common_buffer_vector_t.end.hpp │ │ │ │ ├── common_buffer_vector_t.start.hpp │ │ │ │ ├── configuration_byte0_t.end.hpp │ │ │ │ ├── configuration_byte0_t.start.hpp │ │ │ │ ├── configuration_byte1_t.end.hpp │ │ │ │ ├── configuration_byte1_t.start.hpp │ │ │ │ ├── function_table_t.end.hpp │ │ │ │ ├── function_table_t.start.hpp │ │ │ │ ├── iommu_interface_ex_t.end.hpp │ │ │ │ ├── iommu_interface_ex_t.start.hpp │ │ │ │ ├── iommu_interface_t.end.hpp │ │ │ │ ├── iommu_interface_t.start.hpp │ │ │ │ ├── iommu_interface_v1_t.end.hpp │ │ │ │ ├── iommu_interface_v1_t.start.hpp │ │ │ │ ├── iommu_interface_v2_t.end.hpp │ │ │ │ ├── iommu_interface_v2_t.start.hpp │ │ │ │ ├── operations_t.end.hpp │ │ │ │ ├── operations_t.start.hpp │ │ │ │ ├── request_line_binding_description_t.end.hpp │ │ │ │ ├── request_line_binding_description_t.start.hpp │ │ │ │ ├── scatter_gather_list_t.end.hpp │ │ │ │ ├── scatter_gather_list_t.start.hpp │ │ │ │ ├── transfer_context_t.end.hpp │ │ │ │ ├── transfer_context_t.start.hpp │ │ │ │ ├── transfer_context_v1_t.end.hpp │ │ │ │ ├── transfer_context_v1_t.start.hpp │ │ │ │ ├── transfer_info_t.end.hpp │ │ │ │ ├── transfer_info_t.start.hpp │ │ │ │ ├── transfer_info_v1_t.end.hpp │ │ │ │ ├── transfer_info_v1_t.start.hpp │ │ │ │ ├── transfer_info_v2_t.end.hpp │ │ │ │ └── transfer_info_v2_t.start.hpp │ │ │ ├── operations_t.hpp │ │ │ ├── parameters_t.hpp │ │ │ ├── request_line_binding_description_t.hpp │ │ │ ├── scatter_gather_list_t.hpp │ │ │ ├── speed_t.hpp │ │ │ ├── transfer_context_t.hpp │ │ │ ├── transfer_context_v1_t.hpp │ │ │ ├── transfer_info_t.hpp │ │ │ ├── transfer_info_v1_t.hpp │ │ │ ├── transfer_info_v2_t.hpp │ │ │ └── width_t.hpp │ │ ├── dmar/ │ │ │ ├── api.hpp │ │ │ ├── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ └── page_table_state_t.hpp │ │ ├── dmm/ │ │ │ ├── api.hpp │ │ │ ├── client_type_t.hpp │ │ │ ├── cofuncpathsmodality_serialization_t.hpp │ │ │ ├── commitvidpnrequest_diaginfo_t.hpp │ │ │ ├── commitvidpnrequest_serialization_t.hpp │ │ │ ├── commitvidpnrequestset_serialization_t.hpp │ │ │ ├── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ ├── api.start.hpp │ │ │ │ ├── cofuncpathsmodality_serialization_t.end.hpp │ │ │ │ ├── cofuncpathsmodality_serialization_t.start.hpp │ │ │ │ ├── commitvidpnrequest_diaginfo_t.end.hpp │ │ │ │ ├── commitvidpnrequest_diaginfo_t.start.hpp │ │ │ │ ├── commitvidpnrequest_serialization_t.end.hpp │ │ │ │ ├── commitvidpnrequest_serialization_t.start.hpp │ │ │ │ ├── commitvidpnrequestset_serialization_t.end.hpp │ │ │ │ ├── commitvidpnrequestset_serialization_t.start.hpp │ │ │ │ ├── monitor_serialization_t.end.hpp │ │ │ │ ├── monitor_serialization_t.start.hpp │ │ │ │ ├── monitor_source_mode_serialization_t.end.hpp │ │ │ │ ├── monitor_source_mode_serialization_t.start.hpp │ │ │ │ ├── monitordescriptor_serialization_t.end.hpp │ │ │ │ ├── monitordescriptor_serialization_t.start.hpp │ │ │ │ ├── monitordescriptorset_serialization_t.end.hpp │ │ │ │ ├── monitordescriptorset_serialization_t.start.hpp │ │ │ │ ├── monitorfrequencyrangeset_serialization_t.end.hpp │ │ │ │ ├── monitorfrequencyrangeset_serialization_t.start.hpp │ │ │ │ ├── monitorsourcemodeset_serialization_t.end.hpp │ │ │ │ ├── monitorsourcemodeset_serialization_t.start.hpp │ │ │ │ ├── vidpn_serialization_t.end.hpp │ │ │ │ ├── vidpn_serialization_t.start.hpp │ │ │ │ ├── vidpnpathandtargetmode_serialization_t.end.hpp │ │ │ │ ├── vidpnpathandtargetmode_serialization_t.start.hpp │ │ │ │ ├── vidpnpathandtargetmodeset_serialization_t.end.hpp │ │ │ │ ├── vidpnpathandtargetmodeset_serialization_t.start.hpp │ │ │ │ ├── vidpnpathsfromsource_serialization_t.end.hpp │ │ │ │ ├── vidpnpathsfromsource_serialization_t.start.hpp │ │ │ │ ├── vidpnset_serialization_t.end.hpp │ │ │ │ ├── vidpnset_serialization_t.start.hpp │ │ │ │ ├── vidpntargetmodeset_serialization_t.end.hpp │ │ │ │ └── vidpntargetmodeset_serialization_t.start.hpp │ │ │ ├── mode_pruning_algorithm_t.hpp │ │ │ ├── monitor_presence_event_type_t.hpp │ │ │ ├── monitor_serialization_t.hpp │ │ │ ├── monitor_source_mode_serialization_t.hpp │ │ │ ├── monitordescriptor_serialization_t.hpp │ │ │ ├── monitordescriptorset_serialization_t.hpp │ │ │ ├── monitorfrequencyrangeset_serialization_t.hpp │ │ │ ├── monitorsourcemodeset_serialization_t.hpp │ │ │ ├── vidpn_monitor_type_t.hpp │ │ │ ├── vidpn_serialization_t.hpp │ │ │ ├── vidpnchange_type_t.hpp │ │ │ ├── vidpnpathandtargetmode_serialization_t.hpp │ │ │ ├── vidpnpathandtargetmodeset_serialization_t.hpp │ │ │ ├── vidpnpathsfromsource_serialization_t.hpp │ │ │ ├── vidpnset_serialization_t.hpp │ │ │ └── vidpntargetmodeset_serialization_t.hpp │ │ ├── dmr/ │ │ │ ├── api.hpp │ │ │ └── magic/ │ │ │ ├── api.end.hpp │ │ │ └── api.start.hpp │ │ ├── dmrp/ │ │ │ ├── api.hpp │ │ │ └── magic/ │ │ │ ├── api.end.hpp │ │ │ └── api.start.hpp │ │ ├── drv/ │ │ │ ├── api.hpp │ │ │ ├── extension_t.hpp │ │ │ └── magic/ │ │ │ ├── api.end.hpp │ │ │ ├── api.start.hpp │ │ │ ├── extension_t.end.hpp │ │ │ └── extension_t.start.hpp │ │ ├── drvp/ │ │ │ ├── api.hpp │ │ │ └── magic/ │ │ │ ├── api.end.hpp │ │ │ └── api.start.hpp │ │ ├── dwm/ │ │ │ ├── api.hpp │ │ │ ├── hit_test_leave_enter_crit/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ └── magic/ │ │ │ ├── api.end.hpp │ │ │ └── api.start.hpp │ │ ├── dxgi/ │ │ │ ├── adapter_enum_module_data/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── api.hpp │ │ │ ├── atl/ │ │ │ │ ├── api.hpp │ │ │ │ ├── c_atl_base_module/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_atl_com_module/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_atl_module/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_com_critical_section/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_com_multi_thread_model_no_cs/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_com_object_root_base/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── auto_hrgn/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── auto_hsdb/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── auto_unbind_from_dwm/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── c_closest_mm_helper/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── c_critical_section/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── c_destruction_notifier/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── c_driver_block_list/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── c_dxgi_etw_profile_pair/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── c_lazy_module/ │ │ │ │ ├── api.hpp │ │ │ │ ├── d_composition_info/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── c_lock_owner/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── c_locked_dll_globals/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── c_locked_factory_child/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── c_module/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── c_paper_white_brightness_listener/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── c_private_data/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── c_public_use_count_watcher/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── c_registry_watcher/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── c_source_bits/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── c_source_bits_dib_section/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── c_source_bits_existing_dxgi_surface/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── c_telemetry_helper/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── c_thread_lock/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── cd3d11_format_helper/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── cd3d12_device/ │ │ │ │ ├── api.hpp │ │ │ │ ├── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ └── s_per_queue_type_data/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── cd3d12_fence/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── cd3d12_resource/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── cd3dx12_blend_desc/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── cddi_primary_desc/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── cdxg_kernel_enumeration/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── cdxgi_adapter/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── cdxgi_base_adapter/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── cdxgi_color_space_helper/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── cdxgi_enumerated_mode/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── cdxgi_factory/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── cdxgi_format/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── cdxgi_indirect_swap_chain/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── cdxgi_lightweight_device/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── cdxgi_mode_desc/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── cdxgi_mutex_in_separate_thread/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── cdxgi_output/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── cdxgi_output_duplication/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── cdxgi_surface_dib_section/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── cdxgi_swap_chain/ │ │ │ │ ├── api.hpp │ │ │ │ ├── c_prep_win32_sentinel/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── cross_adapter_fence/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ └── proxy_flip_info/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── cdxgi_swap_chain_application_class/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── cdxgi_swap_chain_dwm_legacy/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── cdxgi_swap_chain_wrapper/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── cdxgi_telemetry_helper/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── cdxgihmd_emulated_output/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── cetw_event_create_dxgi_factory/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── cetw_event_idxgi_adapter_check_interface_support/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── cetw_event_idxgi_factory_create_software_adapter/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── cetw_event_idxgi_factory_create_swap_chain/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── cetw_event_idxgi_factory_enum_adapters/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── cetw_event_idxgi_factory_get_window_association/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── cetw_event_idxgi_factory_make_window_association/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── cetw_event_idxgi_output_find_closest_matching_mode/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── cetw_event_idxgi_output_get_display_mode_list/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── cetw_event_idxgi_output_get_display_surface_data/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── cetw_event_idxgi_output_get_frame_statistics/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── cetw_event_idxgi_output_get_gamma_control/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── cetw_event_idxgi_output_get_gamma_control_capabilities/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── cetw_event_idxgi_output_release_ownership/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── cetw_event_idxgi_output_set_display_surface/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── cetw_event_idxgi_output_set_gamma_control/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── cetw_event_idxgi_output_take_ownership/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── cetw_event_idxgi_swap_chain_get_containing_output/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── cetw_event_idxgi_swap_chain_get_desc/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── cetw_event_idxgi_swap_chain_get_frame_statistics/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── cetw_event_idxgi_swap_chain_get_fullscreen_state/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── cetw_event_idxgi_swap_chain_resize_buffers/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── cetw_event_idxgi_swap_chain_resize_target/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── cetw_event_idxgi_swap_chain_set_fullscreen_state/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── chdr_converter/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── chdr_converter_dx11/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── chdr_converter_dx12/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── color_space_type_t.hpp │ │ │ ├── com_error/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── ddi/ │ │ │ │ └── cb/ │ │ │ │ ├── magic/ │ │ │ │ │ ├── present_multiplane_overlay1_t.end.hpp │ │ │ │ │ ├── present_multiplane_overlay1_t.start.hpp │ │ │ │ │ ├── present_multiplane_overlay_t.end.hpp │ │ │ │ │ ├── present_multiplane_overlay_t.start.hpp │ │ │ │ │ ├── present_t.end.hpp │ │ │ │ │ ├── present_t.start.hpp │ │ │ │ │ ├── submitpresentblttohwqueue_t.end.hpp │ │ │ │ │ ├── submitpresentblttohwqueue_t.start.hpp │ │ │ │ │ ├── submitpresenttohwqueue_t.end.hpp │ │ │ │ │ └── submitpresenttohwqueue_t.start.hpp │ │ │ │ ├── present_multiplane_overlay1_t.hpp │ │ │ │ ├── present_multiplane_overlay_t.hpp │ │ │ │ ├── present_t.hpp │ │ │ │ ├── submitpresentblttohwqueue_t.hpp │ │ │ │ └── submitpresenttohwqueue_t.hpp │ │ │ ├── ddi_arg_blt1_t.hpp │ │ │ ├── ddi_arg_blt_flags_t.hpp │ │ │ ├── ddi_arg_blt_t.hpp │ │ │ ├── ddi_arg_checkmultiplaneoverlaycolorspacesupport_t.hpp │ │ │ ├── ddi_arg_checkmultiplaneoverlaysupport_t.hpp │ │ │ ├── ddi_arg_checkpresentdurationsupport_t.hpp │ │ │ ├── ddi_arg_get_gamma_control_caps_t.hpp │ │ │ ├── ddi_arg_getmultiplaneoverlaycaps_t.hpp │ │ │ ├── ddi_arg_getmultiplaneoverlaygroupcaps_t.hpp │ │ │ ├── ddi_arg_offerresources1_t.hpp │ │ │ ├── ddi_arg_offerresources_t.hpp │ │ │ ├── ddi_arg_present1_t.hpp │ │ │ ├── ddi_arg_present_t.hpp │ │ │ ├── ddi_arg_presentmultiplaneoverlay1_t.hpp │ │ │ ├── ddi_arg_presentmultiplaneoverlay_t.hpp │ │ │ ├── ddi_arg_presentsurface_t.hpp │ │ │ ├── ddi_arg_queryresourceresidency_t.hpp │ │ │ ├── ddi_arg_reclaimresources1_t.hpp │ │ │ ├── ddi_arg_reclaimresources_t.hpp │ │ │ ├── ddi_arg_resolvesharedresource_t.hpp │ │ │ ├── ddi_arg_rotate_resource_identities_t.hpp │ │ │ ├── ddi_arg_set_gamma_control_t.hpp │ │ │ ├── ddi_arg_setdisplaymode_t.hpp │ │ │ ├── ddi_arg_setresourcepriority_t.hpp │ │ │ ├── ddi_arg_trimresidencyset_t.hpp │ │ │ ├── ddi_base_args_t.hpp │ │ │ ├── ddi_base_callbacks_t.hpp │ │ │ ├── ddi_base_functions_t.hpp │ │ │ ├── ddi_check_multiplaneoverlaysupport_plane_info_t.hpp │ │ │ ├── ddi_flip_interval_type_t.hpp │ │ │ ├── ddi_mode_desc_t.hpp │ │ │ ├── ddi_mode_rotation_t.hpp │ │ │ ├── ddi_mode_scaling_t.hpp │ │ │ ├── ddi_mode_scanline_order_t.hpp │ │ │ ├── ddi_multiplane_overlay_attributes1_t.hpp │ │ │ ├── ddi_multiplane_overlay_attributes_t.hpp │ │ │ ├── ddi_multiplane_overlay_blend_t.hpp │ │ │ ├── ddi_multiplane_overlay_caps_t.hpp │ │ │ ├── ddi_multiplane_overlay_feature_caps_t.hpp │ │ │ ├── ddi_multiplane_overlay_flags_t.hpp │ │ │ ├── ddi_multiplane_overlay_group_caps_t.hpp │ │ │ ├── ddi_multiplane_overlay_stereo_caps_t.hpp │ │ │ ├── ddi_multiplane_overlay_stereo_flip_mode_t.hpp │ │ │ ├── ddi_multiplane_overlay_stereo_format_t.hpp │ │ │ ├── ddi_multiplane_overlay_stretch_quality_t.hpp │ │ │ ├── ddi_multiplane_overlay_video_frame_format_t.hpp │ │ │ ├── ddi_multiplane_overlay_y_cb_cr_flags_t.hpp │ │ │ ├── ddi_present_flags_t.hpp │ │ │ ├── ddi_present_multiplane_overlay1_t.hpp │ │ │ ├── ddi_present_multiplane_overlay_t.hpp │ │ │ ├── ddi_primary_desc_t.hpp │ │ │ ├── ddi_rational_t.hpp │ │ │ ├── ddi_residency_t.hpp │ │ │ ├── direct_x_database_helper_telemetry/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── enum_adapter_by_gpu_preference_info/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── exception/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── float16/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── format_t.hpp │ │ │ ├── fullscreen_present_info/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── game_config_store/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── gamma_control_capabilities_t.hpp │ │ │ ├── gamma_control_t.hpp │ │ │ ├── gdi_thunks/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── gpm_helper/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── jpeg_ac_huffman_table_t.hpp │ │ │ ├── jpeg_dc_huffman_table_t.hpp │ │ │ ├── jpeg_quantization_table_t.hpp │ │ │ ├── lock_owner_lock/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── log_marker_helper/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ ├── api.start.hpp │ │ │ │ ├── ddi_arg_blt1_t.end.hpp │ │ │ │ ├── ddi_arg_blt1_t.start.hpp │ │ │ │ ├── ddi_arg_blt_flags_t.end.hpp │ │ │ │ ├── ddi_arg_blt_flags_t.start.hpp │ │ │ │ ├── ddi_arg_blt_t.end.hpp │ │ │ │ ├── ddi_arg_blt_t.start.hpp │ │ │ │ ├── ddi_arg_checkmultiplaneoverlaycolorspacesupport_t.end.hpp │ │ │ │ ├── ddi_arg_checkmultiplaneoverlaycolorspacesupport_t.start.hpp │ │ │ │ ├── ddi_arg_checkmultiplaneoverlaysupport_t.end.hpp │ │ │ │ ├── ddi_arg_checkmultiplaneoverlaysupport_t.start.hpp │ │ │ │ ├── ddi_arg_checkpresentdurationsupport_t.end.hpp │ │ │ │ ├── ddi_arg_checkpresentdurationsupport_t.start.hpp │ │ │ │ ├── ddi_arg_get_gamma_control_caps_t.end.hpp │ │ │ │ ├── ddi_arg_get_gamma_control_caps_t.start.hpp │ │ │ │ ├── ddi_arg_getmultiplaneoverlaycaps_t.end.hpp │ │ │ │ ├── ddi_arg_getmultiplaneoverlaycaps_t.start.hpp │ │ │ │ ├── ddi_arg_getmultiplaneoverlaygroupcaps_t.end.hpp │ │ │ │ ├── ddi_arg_getmultiplaneoverlaygroupcaps_t.start.hpp │ │ │ │ ├── ddi_arg_offerresources1_t.end.hpp │ │ │ │ ├── ddi_arg_offerresources1_t.start.hpp │ │ │ │ ├── ddi_arg_offerresources_t.end.hpp │ │ │ │ ├── ddi_arg_offerresources_t.start.hpp │ │ │ │ ├── ddi_arg_present1_t.end.hpp │ │ │ │ ├── ddi_arg_present1_t.start.hpp │ │ │ │ ├── ddi_arg_present_t.end.hpp │ │ │ │ ├── ddi_arg_present_t.start.hpp │ │ │ │ ├── ddi_arg_presentmultiplaneoverlay1_t.end.hpp │ │ │ │ ├── ddi_arg_presentmultiplaneoverlay1_t.start.hpp │ │ │ │ ├── ddi_arg_presentmultiplaneoverlay_t.end.hpp │ │ │ │ ├── ddi_arg_presentmultiplaneoverlay_t.start.hpp │ │ │ │ ├── ddi_arg_presentsurface_t.end.hpp │ │ │ │ ├── ddi_arg_presentsurface_t.start.hpp │ │ │ │ ├── ddi_arg_queryresourceresidency_t.end.hpp │ │ │ │ ├── ddi_arg_queryresourceresidency_t.start.hpp │ │ │ │ ├── ddi_arg_reclaimresources1_t.end.hpp │ │ │ │ ├── ddi_arg_reclaimresources1_t.start.hpp │ │ │ │ ├── ddi_arg_reclaimresources_t.end.hpp │ │ │ │ ├── ddi_arg_reclaimresources_t.start.hpp │ │ │ │ ├── ddi_arg_resolvesharedresource_t.end.hpp │ │ │ │ ├── ddi_arg_resolvesharedresource_t.start.hpp │ │ │ │ ├── ddi_arg_rotate_resource_identities_t.end.hpp │ │ │ │ ├── ddi_arg_rotate_resource_identities_t.start.hpp │ │ │ │ ├── ddi_arg_set_gamma_control_t.end.hpp │ │ │ │ ├── ddi_arg_set_gamma_control_t.start.hpp │ │ │ │ ├── ddi_arg_setdisplaymode_t.end.hpp │ │ │ │ ├── ddi_arg_setdisplaymode_t.start.hpp │ │ │ │ ├── ddi_arg_setresourcepriority_t.end.hpp │ │ │ │ ├── ddi_arg_setresourcepriority_t.start.hpp │ │ │ │ ├── ddi_arg_trimresidencyset_t.end.hpp │ │ │ │ ├── ddi_arg_trimresidencyset_t.start.hpp │ │ │ │ ├── ddi_base_args_t.end.hpp │ │ │ │ ├── ddi_base_args_t.start.hpp │ │ │ │ ├── ddi_base_callbacks_t.end.hpp │ │ │ │ ├── ddi_base_callbacks_t.start.hpp │ │ │ │ ├── ddi_base_functions_t.end.hpp │ │ │ │ ├── ddi_base_functions_t.start.hpp │ │ │ │ ├── ddi_check_multiplaneoverlaysupport_plane_info_t.end.hpp │ │ │ │ ├── ddi_check_multiplaneoverlaysupport_plane_info_t.start.hpp │ │ │ │ ├── ddi_mode_desc_t.end.hpp │ │ │ │ ├── ddi_mode_desc_t.start.hpp │ │ │ │ ├── ddi_multiplane_overlay_attributes1_t.end.hpp │ │ │ │ ├── ddi_multiplane_overlay_attributes1_t.start.hpp │ │ │ │ ├── ddi_multiplane_overlay_attributes_t.end.hpp │ │ │ │ ├── ddi_multiplane_overlay_attributes_t.start.hpp │ │ │ │ ├── ddi_multiplane_overlay_caps_t.end.hpp │ │ │ │ ├── ddi_multiplane_overlay_caps_t.start.hpp │ │ │ │ ├── ddi_multiplane_overlay_group_caps_t.end.hpp │ │ │ │ ├── ddi_multiplane_overlay_group_caps_t.start.hpp │ │ │ │ ├── ddi_present_flags_t.end.hpp │ │ │ │ ├── ddi_present_flags_t.start.hpp │ │ │ │ ├── ddi_present_multiplane_overlay1_t.end.hpp │ │ │ │ ├── ddi_present_multiplane_overlay1_t.start.hpp │ │ │ │ ├── ddi_present_multiplane_overlay_t.end.hpp │ │ │ │ ├── ddi_present_multiplane_overlay_t.start.hpp │ │ │ │ ├── ddi_primary_desc_t.end.hpp │ │ │ │ ├── ddi_primary_desc_t.start.hpp │ │ │ │ ├── ddi_rational_t.end.hpp │ │ │ │ ├── ddi_rational_t.start.hpp │ │ │ │ ├── gamma_control_capabilities_t.end.hpp │ │ │ │ ├── gamma_control_capabilities_t.start.hpp │ │ │ │ ├── gamma_control_t.end.hpp │ │ │ │ ├── gamma_control_t.start.hpp │ │ │ │ ├── jpeg_ac_huffman_table_t.end.hpp │ │ │ │ ├── jpeg_ac_huffman_table_t.start.hpp │ │ │ │ ├── jpeg_dc_huffman_table_t.end.hpp │ │ │ │ ├── jpeg_dc_huffman_table_t.start.hpp │ │ │ │ ├── jpeg_quantization_table_t.end.hpp │ │ │ │ ├── jpeg_quantization_table_t.start.hpp │ │ │ │ ├── mode_desc_t.end.hpp │ │ │ │ ├── mode_desc_t.start.hpp │ │ │ │ ├── rational_t.end.hpp │ │ │ │ ├── rational_t.start.hpp │ │ │ │ ├── rgb_t.end.hpp │ │ │ │ ├── rgb_t.start.hpp │ │ │ │ ├── sample_desc_t.end.hpp │ │ │ │ └── sample_desc_t.start.hpp │ │ │ ├── microsoft/ │ │ │ │ └── wrl/ │ │ │ │ ├── details/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ ├── magic/ │ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ │ └── api.start.hpp │ │ │ │ │ └── module_base/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── ftm_base/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ └── wrappers/ │ │ │ │ └── h_string_reference/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── mode_desc_t.hpp │ │ │ ├── mode_rotation_t.hpp │ │ │ ├── mode_scaling_t.hpp │ │ │ ├── mode_scanline_order_t.hpp │ │ │ ├── notification_registry/ │ │ │ │ ├── api.hpp │ │ │ │ ├── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ └── notification_record/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── occlusion_factory_data/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── occlusion_module_data/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── output_enumerator/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── per_app_user_settings_helper/ │ │ │ │ ├── api.hpp │ │ │ │ ├── auto_string/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── proxy_window/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── rational_t.hpp │ │ │ ├── render_pass_dx11/ │ │ │ │ └── c_render_pass_quad/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── render_pass_dx12/ │ │ │ │ ├── c3d_lut_builder_dx12/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_grfx_pipeline_state/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_render_pass_quad/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ └── waitable_fence/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── rgb_t.hpp │ │ │ ├── s_adapter_desc/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── s_guid/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── s_output_desc/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── safe_handle/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── sample_desc_t.hpp │ │ │ ├── scoped_d3d12_internal_device_child_creation/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── std/ │ │ │ │ ├── api.hpp │ │ │ │ ├── bad_function_call/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── error_category/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── generic_error_category/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── iostream_error_category/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ └── system_error_category/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── stereo_factory_data/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── stereo_module_data/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── unique_hmodule/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── wil/ │ │ │ │ ├── api.hpp │ │ │ │ ├── details/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ ├── enabled_state_manager/ │ │ │ │ │ │ ├── api.hpp │ │ │ │ │ │ └── magic/ │ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ │ └── api.start.hpp │ │ │ │ │ ├── feature_logging/ │ │ │ │ │ │ ├── api.hpp │ │ │ │ │ │ └── magic/ │ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ │ └── api.start.hpp │ │ │ │ │ ├── feature_state_manager/ │ │ │ │ │ │ ├── api.hpp │ │ │ │ │ │ └── magic/ │ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ │ └── api.start.hpp │ │ │ │ │ ├── in1diag3/ │ │ │ │ │ │ ├── api.hpp │ │ │ │ │ │ └── magic/ │ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ │ └── api.start.hpp │ │ │ │ │ ├── magic/ │ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ │ └── api.start.hpp │ │ │ │ │ ├── shared_buffer/ │ │ │ │ │ │ ├── api.hpp │ │ │ │ │ │ └── magic/ │ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ │ └── api.start.hpp │ │ │ │ │ └── thread_failure_callback_holder/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── details_abi/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ ├── feature_state_data/ │ │ │ │ │ │ ├── api.hpp │ │ │ │ │ │ └── magic/ │ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ │ └── api.start.hpp │ │ │ │ │ ├── heap_buffer/ │ │ │ │ │ │ ├── api.hpp │ │ │ │ │ │ └── magic/ │ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ │ └── api.start.hpp │ │ │ │ │ ├── magic/ │ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ │ └── api.start.hpp │ │ │ │ │ ├── raw_usage_index/ │ │ │ │ │ │ ├── api.hpp │ │ │ │ │ │ └── magic/ │ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ │ └── api.start.hpp │ │ │ │ │ ├── semaphore_value/ │ │ │ │ │ │ ├── api.hpp │ │ │ │ │ │ └── magic/ │ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ │ └── api.start.hpp │ │ │ │ │ ├── subscription_list/ │ │ │ │ │ │ ├── api.hpp │ │ │ │ │ │ └── magic/ │ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ │ └── api.start.hpp │ │ │ │ │ ├── thread_local_data/ │ │ │ │ │ │ ├── api.hpp │ │ │ │ │ │ └── magic/ │ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ │ └── api.start.hpp │ │ │ │ │ ├── thread_local_failure_info/ │ │ │ │ │ │ ├── api.hpp │ │ │ │ │ │ └── magic/ │ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ │ └── api.start.hpp │ │ │ │ │ ├── usage_index_property/ │ │ │ │ │ │ ├── api.hpp │ │ │ │ │ │ └── magic/ │ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ │ └── api.start.hpp │ │ │ │ │ └── usage_indexes/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── result_exception/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── stored_failure_info/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ └── trace_logging_provider/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ └── window_class/ │ │ │ ├── api.hpp │ │ │ └── magic/ │ │ │ ├── api.end.hpp │ │ │ └── api.start.hpp │ │ ├── dxgk/ │ │ │ ├── active_vidpn_invalidation_reason_t.hpp │ │ │ ├── adapter_display/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── adapter_perfdata_t.hpp │ │ │ ├── adapter_perfdatacaps_t.hpp │ │ │ ├── adapter_render/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── adapterownertracker/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── agp_interface_t.hpp │ │ │ ├── allocationinfo_t.hpp │ │ │ ├── allocationinfoflags_t.hpp │ │ │ ├── allocationinfoflags_wddm2_0_t.hpp │ │ │ ├── allocationlist_t.hpp │ │ │ ├── allocationusagehint_t.hpp │ │ │ ├── allocationusageinfo1_t.hpp │ │ │ ├── api.hpp │ │ │ ├── apply_permission_within_this_scope/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── arg/ │ │ │ │ ├── acquireswizzlingrange_t.hpp │ │ │ │ ├── beginexclusiveaccess_t.hpp │ │ │ │ ├── buildpagingbuffer_t.hpp │ │ │ │ ├── cancelcommand_t.hpp │ │ │ │ ├── cb/ │ │ │ │ │ ├── allocatecontiguousmemory_t.hpp │ │ │ │ │ ├── allocatepagesformdl_t.hpp │ │ │ │ │ ├── createcontextallocation_t.hpp │ │ │ │ │ ├── enumhandlechildren_t.hpp │ │ │ │ │ ├── freecontiguousmemory_t.hpp │ │ │ │ │ ├── freepagesfrommdl_t.hpp │ │ │ │ │ ├── getcaptureaddress_t.hpp │ │ │ │ │ ├── gethandledata_t.hpp │ │ │ │ │ ├── invalidatehwcontext_t.hpp │ │ │ │ │ ├── isfeatureenabled_t.hpp │ │ │ │ │ ├── magic/ │ │ │ │ │ │ ├── allocatecontiguousmemory_t.end.hpp │ │ │ │ │ │ ├── allocatecontiguousmemory_t.start.hpp │ │ │ │ │ │ ├── allocatepagesformdl_t.end.hpp │ │ │ │ │ │ ├── allocatepagesformdl_t.start.hpp │ │ │ │ │ │ ├── createcontextallocation_t.end.hpp │ │ │ │ │ │ ├── createcontextallocation_t.start.hpp │ │ │ │ │ │ ├── enumhandlechildren_t.end.hpp │ │ │ │ │ │ ├── enumhandlechildren_t.start.hpp │ │ │ │ │ │ ├── freecontiguousmemory_t.end.hpp │ │ │ │ │ │ ├── freecontiguousmemory_t.start.hpp │ │ │ │ │ │ ├── freepagesfrommdl_t.end.hpp │ │ │ │ │ │ ├── freepagesfrommdl_t.start.hpp │ │ │ │ │ │ ├── getcaptureaddress_t.end.hpp │ │ │ │ │ │ ├── getcaptureaddress_t.start.hpp │ │ │ │ │ │ ├── gethandledata_t.end.hpp │ │ │ │ │ │ ├── gethandledata_t.start.hpp │ │ │ │ │ │ ├── invalidatehwcontext_t.end.hpp │ │ │ │ │ │ ├── invalidatehwcontext_t.start.hpp │ │ │ │ │ │ ├── isfeatureenabled_t.end.hpp │ │ │ │ │ │ ├── isfeatureenabled_t.start.hpp │ │ │ │ │ │ ├── mapcontextallocation_t.end.hpp │ │ │ │ │ │ ├── mapcontextallocation_t.start.hpp │ │ │ │ │ │ ├── mapframebufferpointer_t.end.hpp │ │ │ │ │ │ ├── mapframebufferpointer_t.start.hpp │ │ │ │ │ │ ├── mapmdltoiommu_t.end.hpp │ │ │ │ │ │ ├── mapmdltoiommu_t.start.hpp │ │ │ │ │ │ ├── notify_interrupt_data_t.end.hpp │ │ │ │ │ │ ├── notify_interrupt_data_t.start.hpp │ │ │ │ │ │ ├── pinframebufferforsave_t.end.hpp │ │ │ │ │ │ ├── pinframebufferforsave_t.start.hpp │ │ │ │ │ │ ├── present_displayonly_progress_t.end.hpp │ │ │ │ │ │ ├── present_displayonly_progress_t.start.hpp │ │ │ │ │ │ ├── protectedsessionstatus_t.end.hpp │ │ │ │ │ │ ├── protectedsessionstatus_t.start.hpp │ │ │ │ │ │ ├── releasehandledata_t.end.hpp │ │ │ │ │ │ ├── releasehandledata_t.start.hpp │ │ │ │ │ │ ├── reservegpuvirtualaddressrange_t.end.hpp │ │ │ │ │ │ ├── reservegpuvirtualaddressrange_t.start.hpp │ │ │ │ │ │ ├── savememoryforhotupdate_t.end.hpp │ │ │ │ │ │ ├── savememoryforhotupdate_t.start.hpp │ │ │ │ │ │ ├── signalevent_t.end.hpp │ │ │ │ │ │ ├── signalevent_t.start.hpp │ │ │ │ │ │ ├── unmapframebufferpointer_t.end.hpp │ │ │ │ │ │ ├── unmapframebufferpointer_t.start.hpp │ │ │ │ │ │ ├── unmapmdlfromiommu_t.end.hpp │ │ │ │ │ │ ├── unmapmdlfromiommu_t.start.hpp │ │ │ │ │ │ ├── unpinframebufferforsave_t.end.hpp │ │ │ │ │ │ ├── unpinframebufferforsave_t.start.hpp │ │ │ │ │ │ ├── updatecontextallocation_t.end.hpp │ │ │ │ │ │ └── updatecontextallocation_t.start.hpp │ │ │ │ │ ├── mapcontextallocation_t.hpp │ │ │ │ │ ├── mapframebufferpointer_t.hpp │ │ │ │ │ ├── mapmdltoiommu_t.hpp │ │ │ │ │ ├── notify_interrupt_data_t.hpp │ │ │ │ │ ├── pinframebufferforsave_t.hpp │ │ │ │ │ ├── present_displayonly_progress_t.hpp │ │ │ │ │ ├── protectedsessionstatus_t.hpp │ │ │ │ │ ├── releasehandledata_t.hpp │ │ │ │ │ ├── reservegpuvirtualaddressrange_t.hpp │ │ │ │ │ ├── savememoryforhotupdate_t.hpp │ │ │ │ │ ├── signalevent_t.hpp │ │ │ │ │ ├── unmapframebufferpointer_t.hpp │ │ │ │ │ ├── unmapmdlfromiommu_t.hpp │ │ │ │ │ ├── unpinframebufferforsave_t.hpp │ │ │ │ │ └── updatecontextallocation_t.hpp │ │ │ │ ├── checkmultiplaneoverlaysupport2_t.hpp │ │ │ │ ├── checkmultiplaneoverlaysupport3_t.hpp │ │ │ │ ├── checkmultiplaneoverlaysupport_t.hpp │ │ │ │ ├── closeallocation_t.hpp │ │ │ │ ├── collectdbginfo_ext_t.hpp │ │ │ │ ├── collectdbginfo_t.hpp │ │ │ │ ├── collectdiagnosticinfo_t.hpp │ │ │ │ ├── commitvidpn_flags_t.hpp │ │ │ │ ├── commitvidpn_t.hpp │ │ │ │ ├── controldiagnosticreporting_t.hpp │ │ │ │ ├── controlinterrupt2_t.hpp │ │ │ │ ├── controlinterrupt3_t.hpp │ │ │ │ ├── controlmodebehavior_t.hpp │ │ │ │ ├── createallocation_t.hpp │ │ │ │ ├── createcontext_t.hpp │ │ │ │ ├── createdevice_t.hpp │ │ │ │ ├── createhwcontext_t.hpp │ │ │ │ ├── createhwqueue_t.hpp │ │ │ │ ├── createoverlay_t.hpp │ │ │ │ ├── createperiodicframenotification_t.hpp │ │ │ │ ├── createprocess_t.hpp │ │ │ │ ├── createprotectedsession_t.hpp │ │ │ │ ├── createvirtualgpu_t.hpp │ │ │ │ ├── describeallocation_t.hpp │ │ │ │ ├── destroyallocation_t.hpp │ │ │ │ ├── destroyperiodicframenotification_t.hpp │ │ │ │ ├── destroyvirtualgpu_t.hpp │ │ │ │ ├── displaydetectcontrol_t.hpp │ │ │ │ ├── displaystate_intrusive_t.hpp │ │ │ │ ├── dpauxiotransmission_t.hpp │ │ │ │ ├── dpi2ciotransmission_t.hpp │ │ │ │ ├── dpsbmtransmission_t.hpp │ │ │ │ ├── endexclusiveaccess_t.hpp │ │ │ │ ├── enumvidpncofuncmodality_t.hpp │ │ │ │ ├── escape_t.hpp │ │ │ │ ├── flipoverlay_t.hpp │ │ │ │ ├── formathistorybuffer_t.hpp │ │ │ │ ├── getbackingresource_t.hpp │ │ │ │ ├── getdevicelocation_t.hpp │ │ │ │ ├── getdisplaystate_intrusive_t.hpp │ │ │ │ ├── getdisplaystate_nonintrusive_t.hpp │ │ │ │ ├── getdpaddress_t.hpp │ │ │ │ ├── getgpuengines_t.hpp │ │ │ │ ├── getgpupartitioninfo_t.hpp │ │ │ │ ├── getmmiorangecount_t.hpp │ │ │ │ ├── getmmioranges_t.hpp │ │ │ │ ├── getmultiplaneoverlaycaps_t.hpp │ │ │ │ ├── getpostcompositioncaps_t.hpp │ │ │ │ ├── getresourceforbar_t.hpp │ │ │ │ ├── getrootpagetablesize_t.hpp │ │ │ │ ├── getscanline_t.hpp │ │ │ │ ├── getstandardallocationdriverdata_t.hpp │ │ │ │ ├── getvendoranddevice_t.hpp │ │ │ │ ├── getvirtualgpuinfo_t.hpp │ │ │ │ ├── getvirtualgpuprofile_t.hpp │ │ │ │ ├── historybufferprecision_t.hpp │ │ │ │ ├── issupportedvidpn_t.hpp │ │ │ │ ├── magic/ │ │ │ │ │ ├── acquireswizzlingrange_t.end.hpp │ │ │ │ │ ├── acquireswizzlingrange_t.start.hpp │ │ │ │ │ ├── buildpagingbuffer_t.end.hpp │ │ │ │ │ ├── buildpagingbuffer_t.start.hpp │ │ │ │ │ ├── cancelcommand_t.end.hpp │ │ │ │ │ ├── cancelcommand_t.start.hpp │ │ │ │ │ ├── checkmultiplaneoverlaysupport2_t.end.hpp │ │ │ │ │ ├── checkmultiplaneoverlaysupport2_t.start.hpp │ │ │ │ │ ├── checkmultiplaneoverlaysupport3_t.end.hpp │ │ │ │ │ ├── checkmultiplaneoverlaysupport3_t.start.hpp │ │ │ │ │ ├── checkmultiplaneoverlaysupport_t.end.hpp │ │ │ │ │ ├── checkmultiplaneoverlaysupport_t.start.hpp │ │ │ │ │ ├── closeallocation_t.end.hpp │ │ │ │ │ ├── closeallocation_t.start.hpp │ │ │ │ │ ├── collectdbginfo_ext_t.end.hpp │ │ │ │ │ ├── collectdbginfo_ext_t.start.hpp │ │ │ │ │ ├── collectdbginfo_t.end.hpp │ │ │ │ │ ├── collectdbginfo_t.start.hpp │ │ │ │ │ ├── collectdiagnosticinfo_t.end.hpp │ │ │ │ │ ├── collectdiagnosticinfo_t.start.hpp │ │ │ │ │ ├── commitvidpn_flags_t.end.hpp │ │ │ │ │ ├── commitvidpn_flags_t.start.hpp │ │ │ │ │ ├── commitvidpn_t.end.hpp │ │ │ │ │ ├── commitvidpn_t.start.hpp │ │ │ │ │ ├── controldiagnosticreporting_t.end.hpp │ │ │ │ │ ├── controldiagnosticreporting_t.start.hpp │ │ │ │ │ ├── controlinterrupt2_t.end.hpp │ │ │ │ │ ├── controlinterrupt2_t.start.hpp │ │ │ │ │ ├── controlinterrupt3_t.end.hpp │ │ │ │ │ ├── controlinterrupt3_t.start.hpp │ │ │ │ │ ├── controlmodebehavior_t.end.hpp │ │ │ │ │ ├── controlmodebehavior_t.start.hpp │ │ │ │ │ ├── createallocation_t.end.hpp │ │ │ │ │ ├── createallocation_t.start.hpp │ │ │ │ │ ├── createcontext_t.end.hpp │ │ │ │ │ ├── createcontext_t.start.hpp │ │ │ │ │ ├── createdevice_t.end.hpp │ │ │ │ │ ├── createdevice_t.start.hpp │ │ │ │ │ ├── createhwcontext_t.end.hpp │ │ │ │ │ ├── createhwcontext_t.start.hpp │ │ │ │ │ ├── createhwqueue_t.end.hpp │ │ │ │ │ ├── createhwqueue_t.start.hpp │ │ │ │ │ ├── createoverlay_t.end.hpp │ │ │ │ │ ├── createoverlay_t.start.hpp │ │ │ │ │ ├── createperiodicframenotification_t.end.hpp │ │ │ │ │ ├── createperiodicframenotification_t.start.hpp │ │ │ │ │ ├── createprocess_t.end.hpp │ │ │ │ │ ├── createprocess_t.start.hpp │ │ │ │ │ ├── createprotectedsession_t.end.hpp │ │ │ │ │ ├── createprotectedsession_t.start.hpp │ │ │ │ │ ├── createvirtualgpu_t.end.hpp │ │ │ │ │ ├── createvirtualgpu_t.start.hpp │ │ │ │ │ ├── describeallocation_t.end.hpp │ │ │ │ │ ├── describeallocation_t.start.hpp │ │ │ │ │ ├── destroyallocation_t.end.hpp │ │ │ │ │ ├── destroyallocation_t.start.hpp │ │ │ │ │ ├── destroyperiodicframenotification_t.end.hpp │ │ │ │ │ ├── destroyperiodicframenotification_t.start.hpp │ │ │ │ │ ├── destroyvirtualgpu_t.end.hpp │ │ │ │ │ ├── destroyvirtualgpu_t.start.hpp │ │ │ │ │ ├── displaydetectcontrol_t.end.hpp │ │ │ │ │ ├── displaydetectcontrol_t.start.hpp │ │ │ │ │ ├── displaystate_intrusive_t.end.hpp │ │ │ │ │ ├── displaystate_intrusive_t.start.hpp │ │ │ │ │ ├── dpauxiotransmission_t.end.hpp │ │ │ │ │ ├── dpauxiotransmission_t.start.hpp │ │ │ │ │ ├── dpi2ciotransmission_t.end.hpp │ │ │ │ │ ├── dpi2ciotransmission_t.start.hpp │ │ │ │ │ ├── dpsbmtransmission_t.end.hpp │ │ │ │ │ ├── dpsbmtransmission_t.start.hpp │ │ │ │ │ ├── enumvidpncofuncmodality_t.end.hpp │ │ │ │ │ ├── enumvidpncofuncmodality_t.start.hpp │ │ │ │ │ ├── escape_t.end.hpp │ │ │ │ │ ├── escape_t.start.hpp │ │ │ │ │ ├── flipoverlay_t.end.hpp │ │ │ │ │ ├── flipoverlay_t.start.hpp │ │ │ │ │ ├── formathistorybuffer_t.end.hpp │ │ │ │ │ ├── formathistorybuffer_t.start.hpp │ │ │ │ │ ├── getbackingresource_t.end.hpp │ │ │ │ │ ├── getbackingresource_t.start.hpp │ │ │ │ │ ├── getdevicelocation_t.end.hpp │ │ │ │ │ ├── getdevicelocation_t.start.hpp │ │ │ │ │ ├── getdisplaystate_intrusive_t.end.hpp │ │ │ │ │ ├── getdisplaystate_intrusive_t.start.hpp │ │ │ │ │ ├── getdisplaystate_nonintrusive_t.end.hpp │ │ │ │ │ ├── getdisplaystate_nonintrusive_t.start.hpp │ │ │ │ │ ├── getdpaddress_t.end.hpp │ │ │ │ │ ├── getdpaddress_t.start.hpp │ │ │ │ │ ├── getgpuengines_t.end.hpp │ │ │ │ │ ├── getgpuengines_t.start.hpp │ │ │ │ │ ├── getgpupartitioninfo_t.end.hpp │ │ │ │ │ ├── getgpupartitioninfo_t.start.hpp │ │ │ │ │ ├── getmmiorangecount_t.end.hpp │ │ │ │ │ ├── getmmiorangecount_t.start.hpp │ │ │ │ │ ├── getmmioranges_t.end.hpp │ │ │ │ │ ├── getmmioranges_t.start.hpp │ │ │ │ │ ├── getmultiplaneoverlaycaps_t.end.hpp │ │ │ │ │ ├── getmultiplaneoverlaycaps_t.start.hpp │ │ │ │ │ ├── getpostcompositioncaps_t.end.hpp │ │ │ │ │ ├── getpostcompositioncaps_t.start.hpp │ │ │ │ │ ├── getresourceforbar_t.end.hpp │ │ │ │ │ ├── getresourceforbar_t.start.hpp │ │ │ │ │ ├── getrootpagetablesize_t.end.hpp │ │ │ │ │ ├── getrootpagetablesize_t.start.hpp │ │ │ │ │ ├── getscanline_t.end.hpp │ │ │ │ │ ├── getscanline_t.start.hpp │ │ │ │ │ ├── getstandardallocationdriverdata_t.end.hpp │ │ │ │ │ ├── getstandardallocationdriverdata_t.start.hpp │ │ │ │ │ ├── getvendoranddevice_t.end.hpp │ │ │ │ │ ├── getvendoranddevice_t.start.hpp │ │ │ │ │ ├── getvirtualgpuinfo_t.end.hpp │ │ │ │ │ ├── getvirtualgpuinfo_t.start.hpp │ │ │ │ │ ├── getvirtualgpuprofile_t.end.hpp │ │ │ │ │ ├── getvirtualgpuprofile_t.start.hpp │ │ │ │ │ ├── historybufferprecision_t.end.hpp │ │ │ │ │ ├── historybufferprecision_t.start.hpp │ │ │ │ │ ├── issupportedvidpn_t.end.hpp │ │ │ │ │ ├── issupportedvidpn_t.start.hpp │ │ │ │ │ ├── mapcpuhostaperture_t.end.hpp │ │ │ │ │ ├── mapcpuhostaperture_t.start.hpp │ │ │ │ │ ├── openallocation_t.end.hpp │ │ │ │ │ ├── openallocation_t.start.hpp │ │ │ │ │ ├── patch_t.end.hpp │ │ │ │ │ ├── patch_t.start.hpp │ │ │ │ │ ├── postmultiplaneoverlaypresent_t.end.hpp │ │ │ │ │ ├── postmultiplaneoverlaypresent_t.start.hpp │ │ │ │ │ ├── preemptcommand_t.end.hpp │ │ │ │ │ ├── preemptcommand_t.start.hpp │ │ │ │ │ ├── present_displayonly_t.end.hpp │ │ │ │ │ ├── present_displayonly_t.start.hpp │ │ │ │ │ ├── present_t.end.hpp │ │ │ │ │ ├── present_t.start.hpp │ │ │ │ │ ├── queryadapterinfo_t.end.hpp │ │ │ │ │ ├── queryadapterinfo_t.start.hpp │ │ │ │ │ ├── queryconnectionchange_t.end.hpp │ │ │ │ │ ├── queryconnectionchange_t.start.hpp │ │ │ │ │ ├── querycurrentfence_t.end.hpp │ │ │ │ │ ├── querycurrentfence_t.start.hpp │ │ │ │ │ ├── querydependentenginegroup_t.end.hpp │ │ │ │ │ ├── querydependentenginegroup_t.start.hpp │ │ │ │ │ ├── querydiagnostictypessupport_t.end.hpp │ │ │ │ │ ├── querydiagnostictypessupport_t.start.hpp │ │ │ │ │ ├── querydpcaps_t.end.hpp │ │ │ │ │ ├── querydpcaps_t.start.hpp │ │ │ │ │ ├── queryenginestatus_t.end.hpp │ │ │ │ │ ├── queryenginestatus_t.start.hpp │ │ │ │ │ ├── querymitigatedrangecount_t.end.hpp │ │ │ │ │ ├── querymitigatedrangecount_t.start.hpp │ │ │ │ │ ├── querymitigatedranges_t.end.hpp │ │ │ │ │ ├── querymitigatedranges_t.start.hpp │ │ │ │ │ ├── queryprobedbars_t.end.hpp │ │ │ │ │ ├── queryprobedbars_t.start.hpp │ │ │ │ │ ├── queryvidpnhwcapability_t.end.hpp │ │ │ │ │ ├── queryvidpnhwcapability_t.start.hpp │ │ │ │ │ ├── queryvirtualfunctionluid_t.end.hpp │ │ │ │ │ ├── queryvirtualfunctionluid_t.start.hpp │ │ │ │ │ ├── readvirtualfunctionconfig_t.end.hpp │ │ │ │ │ ├── readvirtualfunctionconfig_t.start.hpp │ │ │ │ │ ├── readvirtualfunctionconfigblock_t.end.hpp │ │ │ │ │ ├── readvirtualfunctionconfigblock_t.start.hpp │ │ │ │ │ ├── recommendfunctionalvidpn_t.end.hpp │ │ │ │ │ ├── recommendfunctionalvidpn_t.start.hpp │ │ │ │ │ ├── recommendmonitormodes_t.end.hpp │ │ │ │ │ ├── recommendmonitormodes_t.start.hpp │ │ │ │ │ ├── recommendvidpntopology_t.end.hpp │ │ │ │ │ ├── recommendvidpntopology_t.start.hpp │ │ │ │ │ ├── releaseswizzlingrange_t.end.hpp │ │ │ │ │ ├── releaseswizzlingrange_t.start.hpp │ │ │ │ │ ├── render_t.end.hpp │ │ │ │ │ ├── render_t.start.hpp │ │ │ │ │ ├── rendergdi_t.end.hpp │ │ │ │ │ ├── rendergdi_t.start.hpp │ │ │ │ │ ├── resetengine_t.end.hpp │ │ │ │ │ ├── resetengine_t.start.hpp │ │ │ │ │ ├── resethwengine_t.end.hpp │ │ │ │ │ ├── resethwengine_t.start.hpp │ │ │ │ │ ├── resetvirtualfunction_t.end.hpp │ │ │ │ │ ├── resetvirtualfunction_t.start.hpp │ │ │ │ │ ├── restorememoryforhotupdate_t.end.hpp │ │ │ │ │ ├── restorememoryforhotupdate_t.start.hpp │ │ │ │ │ ├── resumecontext_t.end.hpp │ │ │ │ │ ├── resumecontext_t.start.hpp │ │ │ │ │ ├── resumehwengine_t.end.hpp │ │ │ │ │ ├── resumehwengine_t.start.hpp │ │ │ │ │ ├── resumevirtualgpu_t.end.hpp │ │ │ │ │ ├── resumevirtualgpu_t.start.hpp │ │ │ │ │ ├── savememoryforhotupdate_t.end.hpp │ │ │ │ │ ├── savememoryforhotupdate_t.start.hpp │ │ │ │ │ ├── setcontextschedulingproperties_t.end.hpp │ │ │ │ │ ├── setcontextschedulingproperties_t.start.hpp │ │ │ │ │ ├── setdisplayprivatedriverformat_t.end.hpp │ │ │ │ │ ├── setdisplayprivatedriverformat_t.start.hpp │ │ │ │ │ ├── setgpupartitioncount_t.end.hpp │ │ │ │ │ ├── setgpupartitioncount_t.start.hpp │ │ │ │ │ ├── setpalette_t.end.hpp │ │ │ │ │ ├── setpalette_t.start.hpp │ │ │ │ │ ├── setpointerposition_t.end.hpp │ │ │ │ │ ├── setpointerposition_t.start.hpp │ │ │ │ │ ├── setpointershape_t.end.hpp │ │ │ │ │ ├── setpointershape_t.start.hpp │ │ │ │ │ ├── setrootpagetable_t.end.hpp │ │ │ │ │ ├── setrootpagetable_t.start.hpp │ │ │ │ │ ├── setschedulinglogbuffer_t.end.hpp │ │ │ │ │ ├── setschedulinglogbuffer_t.start.hpp │ │ │ │ │ ├── setstablepowerstate_t.end.hpp │ │ │ │ │ ├── setstablepowerstate_t.start.hpp │ │ │ │ │ ├── settargetadjustedcolorimetry2_t.end.hpp │ │ │ │ │ ├── settargetadjustedcolorimetry2_t.start.hpp │ │ │ │ │ ├── settargetanalogcopyprotection_t.end.hpp │ │ │ │ │ ├── settargetanalogcopyprotection_t.start.hpp │ │ │ │ │ ├── settargetcontenttype_t.end.hpp │ │ │ │ │ ├── settargetcontenttype_t.start.hpp │ │ │ │ │ ├── settargetgamma_t.end.hpp │ │ │ │ │ ├── settargetgamma_t.start.hpp │ │ │ │ │ ├── settimingsfromvidpn_t.end.hpp │ │ │ │ │ ├── settimingsfromvidpn_t.start.hpp │ │ │ │ │ ├── settrackedworkloadpowerlevel_t.end.hpp │ │ │ │ │ ├── settrackedworkloadpowerlevel_t.start.hpp │ │ │ │ │ ├── setupprioritybands_t.end.hpp │ │ │ │ │ ├── setupprioritybands_t.start.hpp │ │ │ │ │ ├── setvideoprotectedregion_t.end.hpp │ │ │ │ │ ├── setvideoprotectedregion_t.start.hpp │ │ │ │ │ ├── setvidpnsourceaddress_t.end.hpp │ │ │ │ │ ├── setvidpnsourceaddress_t.start.hpp │ │ │ │ │ ├── setvidpnsourceaddresswithmultiplaneoverlay2_t.end.hpp │ │ │ │ │ ├── setvidpnsourceaddresswithmultiplaneoverlay2_t.start.hpp │ │ │ │ │ ├── setvidpnsourceaddresswithmultiplaneoverlay3_t.end.hpp │ │ │ │ │ ├── setvidpnsourceaddresswithmultiplaneoverlay3_t.start.hpp │ │ │ │ │ ├── setvidpnsourceaddresswithmultiplaneoverlay_t.end.hpp │ │ │ │ │ ├── setvidpnsourceaddresswithmultiplaneoverlay_t.start.hpp │ │ │ │ │ ├── setvidpnsourcevisibility_t.end.hpp │ │ │ │ │ ├── setvidpnsourcevisibility_t.start.hpp │ │ │ │ │ ├── setvirtualfunctionpowerstate_t.end.hpp │ │ │ │ │ ├── setvirtualfunctionpowerstate_t.start.hpp │ │ │ │ │ ├── setvirtualgpuresources_t.end.hpp │ │ │ │ │ ├── setvirtualgpuresources_t.start.hpp │ │ │ │ │ ├── setvirtualgpuvmbus_t.end.hpp │ │ │ │ │ ├── setvirtualgpuvmbus_t.start.hpp │ │ │ │ │ ├── setvirtualmachinedata_t.end.hpp │ │ │ │ │ ├── setvirtualmachinedata_t.start.hpp │ │ │ │ │ ├── signalmonitoredfence_t.end.hpp │ │ │ │ │ ├── signalmonitoredfence_t.start.hpp │ │ │ │ │ ├── stopcapture_t.end.hpp │ │ │ │ │ ├── stopcapture_t.start.hpp │ │ │ │ │ ├── submitcommand_t.end.hpp │ │ │ │ │ ├── submitcommand_t.start.hpp │ │ │ │ │ ├── submitcommandtohwqueue_t.end.hpp │ │ │ │ │ ├── submitcommandtohwqueue_t.start.hpp │ │ │ │ │ ├── submitcommandvirtual_t.end.hpp │ │ │ │ │ ├── submitcommandvirtual_t.start.hpp │ │ │ │ │ ├── suspendcontext_t.end.hpp │ │ │ │ │ ├── suspendcontext_t.start.hpp │ │ │ │ │ ├── suspendvirtualgpu_t.end.hpp │ │ │ │ │ ├── suspendvirtualgpu_t.start.hpp │ │ │ │ │ ├── switchtohwcontextlist_t.end.hpp │ │ │ │ │ ├── switchtohwcontextlist_t.start.hpp │ │ │ │ │ ├── system_display_enable_flags_t.end.hpp │ │ │ │ │ ├── system_display_enable_flags_t.start.hpp │ │ │ │ │ ├── unmapcpuhostaperture_t.end.hpp │ │ │ │ │ ├── unmapcpuhostaperture_t.start.hpp │ │ │ │ │ ├── updateactivevidpnpresentpath_t.end.hpp │ │ │ │ │ ├── updateactivevidpnpresentpath_t.start.hpp │ │ │ │ │ ├── updatehwcontextstate_t.end.hpp │ │ │ │ │ ├── updatehwcontextstate_t.start.hpp │ │ │ │ │ ├── updatemonitorlinkinfo_t.end.hpp │ │ │ │ │ ├── updatemonitorlinkinfo_t.start.hpp │ │ │ │ │ ├── updateoverlay_t.end.hpp │ │ │ │ │ ├── updateoverlay_t.start.hpp │ │ │ │ │ ├── validatesubmitcommand_t.end.hpp │ │ │ │ │ ├── validatesubmitcommand_t.start.hpp │ │ │ │ │ ├── validateupdateallocproperty_t.end.hpp │ │ │ │ │ ├── validateupdateallocproperty_t.start.hpp │ │ │ │ │ ├── writevirtualfunctionconfig_t.end.hpp │ │ │ │ │ ├── writevirtualfunctionconfig_t.start.hpp │ │ │ │ │ ├── writevirtualfunctionconfigblock_t.end.hpp │ │ │ │ │ └── writevirtualfunctionconfigblock_t.start.hpp │ │ │ │ ├── mapcpuhostaperture_t.hpp │ │ │ │ ├── openallocation_t.hpp │ │ │ │ ├── patch_t.hpp │ │ │ │ ├── postmultiplaneoverlaypresent_t.hpp │ │ │ │ ├── preemptcommand_t.hpp │ │ │ │ ├── present_displayonly_t.hpp │ │ │ │ ├── present_t.hpp │ │ │ │ ├── queryadapterinfo_t.hpp │ │ │ │ ├── queryconnectionchange_t.hpp │ │ │ │ ├── querycurrentfence_t.hpp │ │ │ │ ├── querydependentenginegroup_t.hpp │ │ │ │ ├── querydiagnostictypessupport_t.hpp │ │ │ │ ├── querydpcaps_t.hpp │ │ │ │ ├── queryenginestatus_t.hpp │ │ │ │ ├── querymitigatedrangecount_t.hpp │ │ │ │ ├── querymitigatedranges_t.hpp │ │ │ │ ├── queryprobedbars_t.hpp │ │ │ │ ├── queryvidpnhwcapability_t.hpp │ │ │ │ ├── queryvirtualfunctionluid_t.hpp │ │ │ │ ├── readvirtualfunctionconfig_t.hpp │ │ │ │ ├── readvirtualfunctionconfigblock_t.hpp │ │ │ │ ├── recommendfunctionalvidpn_t.hpp │ │ │ │ ├── recommendmonitormodes_t.hpp │ │ │ │ ├── recommendvidpntopology_t.hpp │ │ │ │ ├── releaseswizzlingrange_t.hpp │ │ │ │ ├── render_t.hpp │ │ │ │ ├── rendergdi_t.hpp │ │ │ │ ├── resetengine_t.hpp │ │ │ │ ├── resethwengine_t.hpp │ │ │ │ ├── resetvirtualfunction_t.hpp │ │ │ │ ├── restorememoryforhotupdate_t.hpp │ │ │ │ ├── resumecontext_t.hpp │ │ │ │ ├── resumehwengine_t.hpp │ │ │ │ ├── resumevirtualgpu_t.hpp │ │ │ │ ├── savememoryforhotupdate_t.hpp │ │ │ │ ├── setcontextschedulingproperties_t.hpp │ │ │ │ ├── setdisplayprivatedriverformat_t.hpp │ │ │ │ ├── setgpupartitioncount_t.hpp │ │ │ │ ├── setpalette_t.hpp │ │ │ │ ├── setpointerposition_t.hpp │ │ │ │ ├── setpointershape_t.hpp │ │ │ │ ├── setrootpagetable_t.hpp │ │ │ │ ├── setschedulinglogbuffer_t.hpp │ │ │ │ ├── setstablepowerstate_t.hpp │ │ │ │ ├── settargetadjustedcolorimetry2_t.hpp │ │ │ │ ├── settargetanalogcopyprotection_t.hpp │ │ │ │ ├── settargetcontenttype_t.hpp │ │ │ │ ├── settargetgamma_t.hpp │ │ │ │ ├── settimingsfromvidpn_t.hpp │ │ │ │ ├── settrackedworkloadpowerlevel_t.hpp │ │ │ │ ├── setupprioritybands_t.hpp │ │ │ │ ├── setvideoprotectedregion_t.hpp │ │ │ │ ├── setvidpnsourceaddress_t.hpp │ │ │ │ ├── setvidpnsourceaddresswithmultiplaneoverlay2_t.hpp │ │ │ │ ├── setvidpnsourceaddresswithmultiplaneoverlay3_t.hpp │ │ │ │ ├── setvidpnsourceaddresswithmultiplaneoverlay_t.hpp │ │ │ │ ├── setvidpnsourcevisibility_t.hpp │ │ │ │ ├── setvirtualfunctionpowerstate_t.hpp │ │ │ │ ├── setvirtualgpuresources_t.hpp │ │ │ │ ├── setvirtualgpuvmbus_t.hpp │ │ │ │ ├── setvirtualmachinedata_t.hpp │ │ │ │ ├── signalmonitoredfence_t.hpp │ │ │ │ ├── stopcapture_t.hpp │ │ │ │ ├── submitcommand_t.hpp │ │ │ │ ├── submitcommandtohwqueue_t.hpp │ │ │ │ ├── submitcommandvirtual_t.hpp │ │ │ │ ├── suspendcontext_t.hpp │ │ │ │ ├── suspendvirtualgpu_t.hpp │ │ │ │ ├── switchtohwcontextlist_t.hpp │ │ │ │ ├── system_display_enable_flags_t.hpp │ │ │ │ ├── unmapcpuhostaperture_t.hpp │ │ │ │ ├── updateactivevidpnpresentpath_t.hpp │ │ │ │ ├── updatehwcontextstate_t.hpp │ │ │ │ ├── updatemonitorlinkinfo_t.hpp │ │ │ │ ├── updateoverlay_t.hpp │ │ │ │ ├── validatesubmitcommand_t.hpp │ │ │ │ ├── validateupdateallocproperty_t.hpp │ │ │ │ ├── writevirtualfunctionconfig_t.hpp │ │ │ │ └── writevirtualfunctionconfigblock_t.hpp │ │ │ ├── attach_to_object_session/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── auto_ccd_topology_clear_reserved/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── auto_pnppower_lock/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── auto_remove_lock/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── auto_resource_lock/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── autoexpandallocation/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── backlight_info_t.hpp │ │ │ ├── bltentry/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── bltqueue/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── bltqueue_emulated_vsync_source/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── bltqueue_hw_vsync_source/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── bltqueue_remote_vsync_source/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── brightness_caps_t.hpp │ │ │ ├── brightness_get_nit_ranges_out_t.hpp │ │ │ ├── brightness_get_out_t.hpp │ │ │ ├── brightness_nit_range_t.hpp │ │ │ ├── brightness_sensor_data_chromaticity_t.hpp │ │ │ ├── brightness_sensor_data_t.hpp │ │ │ ├── brightness_set_in_t.hpp │ │ │ ├── brightness_state_t.hpp │ │ │ ├── btl_cds_journal_topology_constructor/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── btl_topology_constructor/ │ │ │ │ ├── anchor_info/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── buildpagingbuffer_copy_range_t.hpp │ │ │ ├── buildpagingbuffer_copypagetableentries_t.hpp │ │ │ ├── buildpagingbuffer_fillvirtual_t.hpp │ │ │ ├── buildpagingbuffer_flushtlb_t.hpp │ │ │ ├── buildpagingbuffer_notifyresidency_t.hpp │ │ │ ├── buildpagingbuffer_operation_t.hpp │ │ │ ├── buildpagingbuffer_signalmonitoredfence_t.hpp │ │ │ ├── buildpagingbuffer_transfervirtual_t.hpp │ │ │ ├── buildpagingbuffer_updatecontextallocation_t.hpp │ │ │ ├── buildpagingbuffer_updatepagetable_t.hpp │ │ │ ├── c_adapter/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── c_adapter_collection/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── c_auto_ref_counted_buffer/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── c_backchannel_manager/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── c_buffer_realization/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── c_composition_buffer/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── c_composition_frame/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── c_composition_frame_collection/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── c_composition_surface/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── c_composition_swapchain_buffer/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── c_composition_token/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── c_content_resource/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── c_content_resource_state/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── c_disable_scanout_token/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── c_driver_store_copy/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── c_endpoint_resource_state_manager/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── c_ensure_current_dxg_process/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── c_flip_consumer_message/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── c_flip_content_token/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── c_flip_ex_buffer/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── c_flip_manager/ │ │ │ │ ├── api.hpp │ │ │ │ ├── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ └── present_history/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── c_flip_manager_signal/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── c_flip_manager_token/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── c_flip_present_update/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── c_flip_property_set/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── c_flip_property_set_base/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── c_flip_queued_object/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── c_flip_resource/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── c_flip_resource_state/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── c_flip_token/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── c_flip_token_operation/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── c_flip_waited_consumer_return/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── c_interface_call_context/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── c_legacy_token_buffer/ │ │ │ │ └── token_block/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── c_pool_buffer_resource/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── c_present_rate/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── c_push_lock_critical_section/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── c_ref_counted_buffer/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── c_resource_state_update_serializer/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── c_token/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── c_token_manager/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── c_token_queue/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── c_vid_sch_submit_data/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── c_vid_sch_suspend_resume/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── c_win32k_locks/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── cb/ │ │ │ │ ├── gethandledataflags_t.hpp │ │ │ │ ├── magic/ │ │ │ │ │ ├── gethandledataflags_t.end.hpp │ │ │ │ │ ├── gethandledataflags_t.start.hpp │ │ │ │ │ ├── notify_interrupt_data_flags_t.end.hpp │ │ │ │ │ ├── notify_interrupt_data_flags_t.start.hpp │ │ │ │ │ ├── notify_mpo_vsync_flags_t.end.hpp │ │ │ │ │ └── notify_mpo_vsync_flags_t.start.hpp │ │ │ │ ├── notify_interrupt_data_flags_t.hpp │ │ │ │ └── notify_mpo_vsync_flags_t.hpp │ │ │ ├── ccd_btl/ │ │ │ │ ├── api.hpp │ │ │ │ ├── cds_journal/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── ccd_btl_active_paths_collector/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── ccd_btl_clone_group_resolver/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── ccd_mode_result_set/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── ccd_recent_topology_retriever/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── ccd_set_string_id/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── ccd_store/ │ │ │ │ ├── api.hpp │ │ │ │ ├── connected_set_descriptor/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ └── topology_set_descriptor/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── ccd_topology/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── cds_journal/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── cdwm_backchannel_manager/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── check_multiplane_overlay_support_plane_t.hpp │ │ │ ├── check_multiplane_overlay_support_return_info_t.hpp │ │ │ ├── child_capabilities_t.hpp │ │ │ ├── child_container_id_t.hpp │ │ │ ├── child_descriptor_t.hpp │ │ │ ├── child_device_hpd_awareness_t.hpp │ │ │ ├── child_device_type_t.hpp │ │ │ ├── child_status_t.hpp │ │ │ ├── child_status_type_t.hpp │ │ │ ├── colorimetry_t.hpp │ │ │ ├── colortransformcaps_t.hpp │ │ │ ├── composition_object/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── composition_surface_object/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── connection_change_t.hpp │ │ │ ├── contextinfo_caps_t.hpp │ │ │ ├── contextinfo_t.hpp │ │ │ ├── coreaccess/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── coreadapteraccess/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── coredeviceaccess/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── coreoverlayaccess/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── cprocessattachhelper/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── cpuhostaperture_t.hpp │ │ │ ├── createallocationflags_t.hpp │ │ │ ├── createcontextallocationflags_t.hpp │ │ │ ├── createcontextflags_t.hpp │ │ │ ├── createdeviceflags_t.hpp │ │ │ ├── createprocessflags_t.hpp │ │ │ ├── crtc_vsync_state_t.hpp │ │ │ ├── cserializedworkqueue/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── ctdr_dump_buffer/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── ctdr_dump_buffer_canary/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── ctdr_gdi_reset_thread/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── ctdr_submit_report_thread/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── cttmdevice/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── cumulative_stats/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── cvp_system_thread/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dda_meta_data/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── ddi/ │ │ │ │ ├── flexiov_device_interface_t.hpp │ │ │ │ ├── gpu_partition_interface_t.hpp │ │ │ │ ├── magic/ │ │ │ │ │ ├── flexiov_device_interface_t.end.hpp │ │ │ │ │ ├── flexiov_device_interface_t.start.hpp │ │ │ │ │ ├── gpu_partition_interface_t.end.hpp │ │ │ │ │ ├── gpu_partition_interface_t.start.hpp │ │ │ │ │ ├── mitigable_device_interface_t.end.hpp │ │ │ │ │ ├── mitigable_device_interface_t.start.hpp │ │ │ │ │ ├── sriov_interface_t.end.hpp │ │ │ │ │ └── sriov_interface_t.start.hpp │ │ │ │ ├── mitigable_device_interface_t.hpp │ │ │ │ └── sriov_interface_t.hpp │ │ │ ├── debug_report_handle_t.hpp │ │ │ ├── debug_report_interface_t.hpp │ │ │ ├── default_multi_screen_config/ │ │ │ │ ├── api.hpp │ │ │ │ ├── disjoint_experience_config/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── describeallocationflags_t.hpp │ │ │ ├── destroyallocationflags_t.hpp │ │ │ ├── device_descriptor_t.hpp │ │ │ ├── device_info_t.hpp │ │ │ ├── device_type_caps_t.hpp │ │ │ ├── deviceinfo_t.hpp │ │ │ ├── deviceinfoflags_t.hpp │ │ │ ├── diag_basic_display_topology_t.hpp │ │ │ ├── diag_black_screen_packet_availability_t.hpp │ │ │ ├── diag_code_point_adapterluid_packet_t.hpp │ │ │ ├── diag_code_point_packet_t.hpp │ │ │ ├── diag_code_point_type_t.hpp │ │ │ ├── diag_display_connectivity_t.hpp │ │ │ ├── diag_display_hardware_bandwidth_t.hpp │ │ │ ├── diag_display_hardware_error_state_t.hpp │ │ │ ├── diag_display_lid_state_t.hpp │ │ │ ├── diag_display_link_state_t.hpp │ │ │ ├── diag_display_mode_set_t.hpp │ │ │ ├── diag_display_sampled_gamma_t.hpp │ │ │ ├── diag_display_scanout_buffer_crc_t.hpp │ │ │ ├── diag_display_scanout_buffer_histogram_t.hpp │ │ │ ├── diag_display_scanout_state_t.hpp │ │ │ ├── diag_getdisplaystate_substatus_flags_t.hpp │ │ │ ├── diag_header_t.hpp │ │ │ ├── diag_miracast_start_stage_t.hpp │ │ │ ├── diag_miracast_stop_session_reason_t.hpp │ │ │ ├── diag_monitor_state_t.hpp │ │ │ ├── diag_scanout_buffer_content_t.hpp │ │ │ ├── diag_type_t.hpp │ │ │ ├── diagnostic_categories_t.hpp │ │ │ ├── diagnostic_header_t.hpp │ │ │ ├── diagnostic_psr_refresh_reason_t.hpp │ │ │ ├── diagnostic_psr_t.hpp │ │ │ ├── diagnostic_synclock_enablesync_t.hpp │ │ │ ├── diagnostic_types_t.hpp │ │ │ ├── diagnosticinfo_type_t.hpp │ │ │ ├── diagtype_notifications_t.hpp │ │ │ ├── diagtype_progressions_t.hpp │ │ │ ├── discardcontentflags_t.hpp │ │ │ ├── disp_broker_client/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── disp_broker_client_handle/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── disp_broker_client_reference/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── display_callout_entry/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── display_diagnostics/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── display_diagnostics_interface_t.hpp │ │ │ ├── display_drivercaps_extension_t.hpp │ │ │ ├── display_id_display_parameters_parser/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── display_id_product_id_parser/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── display_id_section_parser/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── display_id_type7_timing_parser/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── display_information_t.hpp │ │ │ ├── display_ownership_flags_t.hpp │ │ │ ├── display_source/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── displaydiagnosticadapterdata/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── displaystate_nonintrusive_t.hpp │ │ │ ├── displaystatechecker/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dmabuffercaps_deprecated_t.hpp │ │ │ ├── dmmvideopresentsource/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dmmvideopresentsourceset/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dmmvideopresenttarget/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dmmvideopresenttargetset/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dmmvideosignalmode/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dmmvidpn/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dmmvidpnpresentpath/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dmmvidpnsource/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dmmvidpnsourcemode/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dmmvidpnsourcemodeset/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dmmvidpnsourceset/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dmmvidpntarget/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dmmvidpntargetmode/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dmmvidpntargetmodeset/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dmmvidpntargetset/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dmmvidpntopology/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dp_interface_t.hpp │ │ │ ├── dpi_internal/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dpi_persistence/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── drips_blocker_tracking_helper/ │ │ │ │ ├── api.hpp │ │ │ │ ├── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ └── time_interval/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── drivercaps_t.hpp │ │ │ ├── driverwhiteboxinfo/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── drt_get_target_cb_context/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dsi_caps_t.hpp │ │ │ ├── dsi_control_transmission_mode_t.hpp │ │ │ ├── dsi_packet_t.hpp │ │ │ ├── dsi_reset_t.hpp │ │ │ ├── dsi_transmission_t.hpp │ │ │ ├── dt/ │ │ │ │ └── opm_dvi_characteristics_t.hpp │ │ │ ├── dxg_deferred_work_queue_dpc/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dxg_guest_compositionobjectchannel/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dxg_guest_global_vmbus/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dxg_guest_remoteobjectchannel/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dxg_guest_virtualgpu_vmbus/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dxg_host_compositionobjectchannel/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dxg_host_global_vmbus/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dxg_host_remoteobjectchannel/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dxg_host_virtualgpu_vmbus/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dxg_monitor/ │ │ │ │ ├── api.hpp │ │ │ │ ├── display_id_monitor_descriptor/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── edid_monitor_descriptor/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── edidcache/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── monitor_color_state/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── monitor_data_store/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── monitor_descriptor_state/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── monitor_display_port_state/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── monitor_gamma_state/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── monitor_mipi_dsi_state/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── monitor_modes/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── monitor_pnp_state/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── monitor_usage_state/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── monitor_usb4_state/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── multi_monitor_descriptor/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── power_on_failure_stage/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ └── usb4_host_router_po_fx_ref/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dxg_registry_key_list/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dxg_signal_guest_cpu_event/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dxg_vmbus_channel_base/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dxgadapter/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dxgadapter_reference/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dxgadapterallocation/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dxgadapterallocation_vgpu/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dxgadapterbyhandle/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dxgadaptersourcehash/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dxgadapterstopresetlockexclusive/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dxgadapterstopresetlockshared/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dxgadaptersyncobject/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dxgallocation/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dxgallocationreference/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dxgautomutex/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dxgautopushlock/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dxgautopushlockexclusive/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dxgautopushlockfastshared/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dxgautopushlockshared/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dxgautospinlock/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dxgblackbox/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dxgchannelendpointproxy/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dxgcompositionsurfaceproxy/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dxgcontext/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dxgcontextbyhandle/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dxgcopyprotection/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dxgcriticalregion/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dxgdeadlock_tracker/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dxgdevice/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dxgdeviceaccesslockexclusive/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dxgdeviceaccesslockexclusivecdd/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dxgdeviceaccesslockshared/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dxgdevicebyhandle/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dxgdevicelockonappropriatethreadmodel/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dxgdevicesyncobject/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dxgdiagnostics/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dxgdiagnosticswithmutex/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dxgdisplaycalloutqueue/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dxgdisplaymanagerobject/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dxgdisplaymanagersourceobject/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dxgdisplaystatemutex/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dxgdmm_interface_v1_impl/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dxgdmm_monitorsourcemodeset_interface_v1_impl/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dxgdmm_videopresentsourceset_interface_v1_impl/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dxgdmm_videopresenttargetset_interface_v1_impl/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dxgdmm_vidpn_interface_v1_impl/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dxgdmm_vidpnsourcemodeset_interface_v1_impl/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dxgdmm_vidpntargetmodeset_interface_v1_impl/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dxgdmm_vidpntopology_interface_v1_impl/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dxgdmmtest_interface_impl/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dxgdod_periodic_frame_notification_storage/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dxgdodpresent/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dxgdxgikeyedmutex/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dxgetwprofiler_base/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dxgfastmutex/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dxgfixedqueue/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dxgglobal/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dxgglobalsharemutex/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dxghandletablelockexclusive/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dxghandletablelockshared/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dxghwqueue/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dxghwqueuebyhandle/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dxgkeyedmutex/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dxgkeyedmutexbyhandle/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dxgkeyedmutexlock/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dxgkvmb_guest_transaction/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dxgkvmb_singlepacketcontext/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dxgmms_export/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dxgmonitor/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dxgoverlay/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dxgoverlaymutex/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dxgpagingqueue/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dxgpagingqueuebyhandle/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dxgpairedadapterstopresetlockshared/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dxgpointerddimutex/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dxgportdmm_videopresentsourceset_interface_v1_impl/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dxgportdmm_videopresenttargetset_interface_v1_impl/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dxgpowerstatisticstransitionengine/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dxgpresent/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dxgpresenthistorytokenqueue/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dxgpresentmutex/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dxgprocess/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dxgprocess_adapter_info/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dxgprocess_adapter_info_pasid_data/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dxgprocess_nonpaged/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dxgprocess_render_adapter_info/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dxgprocessaccesslistmutex/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dxgprocesscalloutmutex/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dxgprocesscopyprotectionmutex/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dxgprocessddilock/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dxgprocessdeviceiterationlock/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dxgprocessmutex/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dxgprocessmutexbyhandle/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dxgprocesssharedaccess/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dxgprocessvidmmlock/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dxgprocessvm/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dxgprocessvmwp/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dxgprotectedsession/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dxgprotectedsessionmutex/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dxgpushlock/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dxgresource/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dxgresourcereference/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dxgsessiondata/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dxgsessionmgr/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dxgsessionmodechangelock/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dxgsharedpowerinuselistobject/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dxgsharedpowerregistrationobject/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dxgsharedresource/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dxgsharedresourceaccess/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dxgsharedresourceca/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dxgsharedvmobject/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dxgstablevisrgnandsprite/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dxgswapchain/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dxgswapchainlockwithdevice/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dxgsyncobject/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dxgsyncobjectca/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dxgsyncobjectlock/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dxgsyncobjectmutex/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dxgthread/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dxgtrackedworkload/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dxgtrackedworkloadbyhandle/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dxgusercrit/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dxgvail/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dxgvailguestobject/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dxgvailobject/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dxgvalidation/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dxgvalidationprocessattach/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dxgvalidationprocessreattach/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dxgvirtualgpumanager/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dxgvirtualgpumanager_gpup/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dxgvirtualgpumanager_parav/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dxgvirtualmachine/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dxgvmbuschannel/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dxgvmbusmessage/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dxgworkqueue/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── edidcache/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── enginestatus_t.hpp │ │ │ ├── ensure_adapter_dereference/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── ensure_context_array_dereference/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── ensure_context_dereference/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── ensure_device_dereference_nolocks/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── enum_pivot_t.hpp │ │ │ ├── enumerate_ksr_memory_context/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── escape_gpummucaps_t.hpp │ │ │ ├── event_type_t.hpp │ │ │ ├── fault_error_code_t.hpp │ │ │ ├── feature_id_t.hpp │ │ │ ├── firmware_table_interface_t.hpp │ │ │ ├── flip_manager_object/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── flip_manager_token_init_info/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── flip_manager_token_object/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── flipcaps_t.hpp │ │ │ ├── framebuffer_state_t.hpp │ │ │ ├── framebuffersavearea_t.hpp │ │ │ ├── gamma_1dlut_cap_t.hpp │ │ │ ├── gamma_data_type_t.hpp │ │ │ ├── gamma_matrix_cap_t.hpp │ │ │ ├── gamma_ramp/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── gammarampcaps_t.hpp │ │ │ ├── gdiarg_alphablend_t.hpp │ │ │ ├── gdiarg_bitblt_t.hpp │ │ │ ├── gdiarg_cleartypeblend_t.hpp │ │ │ ├── gdiarg_colorfill_t.hpp │ │ │ ├── gdiarg_stretchblt_t.hpp │ │ │ ├── gdiarg_transparentblt_t.hpp │ │ │ ├── gdirop_bitblt_t.hpp │ │ │ ├── gdirop_colorfill_t.hpp │ │ │ ├── general_error_code_t.hpp │ │ │ ├── generic_descriptor_t.hpp │ │ │ ├── gpu_physical_address_t.hpp │ │ │ ├── gpuclockdata_flags_t.hpp │ │ │ ├── gpuclockdata_t.hpp │ │ │ ├── gpuengine_t.hpp │ │ │ ├── gpuenginetopology_t.hpp │ │ │ ├── gpummucaps_t.hpp │ │ │ ├── gpupcaps_t.hpp │ │ │ ├── gpuversion_t.hpp │ │ │ ├── graphicspower_register_input_v_1_2_t.hpp │ │ │ ├── graphicspower_register_output_t.hpp │ │ │ ├── handle_type_t.hpp │ │ │ ├── hardware_content_protection_teardown_flags_t.hpp │ │ │ ├── hardwarereservedranges_t.hpp │ │ │ ├── hdr_metadata_t.hpp │ │ │ ├── history_buffer_header_t.hpp │ │ │ ├── history_buffer_t.hpp │ │ │ ├── hmgrtable/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── hostvmmonitormapping/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── hwcontext_caps_t.hpp │ │ │ ├── i2c_address_type_t.hpp │ │ │ ├── i2c_interface_t.hpp │ │ │ ├── i_blt_queue_v_sync_source/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── i_dxgk_composition_object/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── independent_flip_vidpnsource_iterator/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── inherited_timing_info_t.hpp │ │ │ ├── integrated_display_child_t.hpp │ │ │ ├── integrateddisplayflags_t.hpp │ │ │ ├── interfacespecificdata_t.hpp │ │ │ ├── interrupt_state_t.hpp │ │ │ ├── interrupt_type_t.hpp │ │ │ ├── invalidatehwcontextflags_t.hpp │ │ │ ├── kernel_driver/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── kernel_submission_type_t.hpp │ │ │ ├── kobjectref/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── ksr_memory_range_t.hpp │ │ │ ├── lockable/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── long_power_button_hold_listener/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── lpm_display_ctrl/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── magic/ │ │ │ │ ├── adapter_perfdata_t.end.hpp │ │ │ │ ├── adapter_perfdata_t.start.hpp │ │ │ │ ├── adapter_perfdatacaps_t.end.hpp │ │ │ │ ├── adapter_perfdatacaps_t.start.hpp │ │ │ │ ├── agp_interface_t.end.hpp │ │ │ │ ├── agp_interface_t.start.hpp │ │ │ │ ├── allocationinfo_t.end.hpp │ │ │ │ ├── allocationinfo_t.start.hpp │ │ │ │ ├── allocationinfoflags_t.end.hpp │ │ │ │ ├── allocationinfoflags_t.start.hpp │ │ │ │ ├── allocationinfoflags_wddm2_0_t.end.hpp │ │ │ │ ├── allocationinfoflags_wddm2_0_t.start.hpp │ │ │ │ ├── allocationlist_t.end.hpp │ │ │ │ ├── allocationlist_t.start.hpp │ │ │ │ ├── allocationusagehint_t.end.hpp │ │ │ │ ├── allocationusagehint_t.start.hpp │ │ │ │ ├── allocationusageinfo1_t.end.hpp │ │ │ │ ├── allocationusageinfo1_t.start.hpp │ │ │ │ ├── api.end.hpp │ │ │ │ ├── api.start.hpp │ │ │ │ ├── backlight_info_t.end.hpp │ │ │ │ ├── backlight_info_t.start.hpp │ │ │ │ ├── brightness_caps_t.end.hpp │ │ │ │ ├── brightness_caps_t.start.hpp │ │ │ │ ├── brightness_get_nit_ranges_out_t.end.hpp │ │ │ │ ├── brightness_get_nit_ranges_out_t.start.hpp │ │ │ │ ├── brightness_get_out_t.end.hpp │ │ │ │ ├── brightness_get_out_t.start.hpp │ │ │ │ ├── brightness_nit_range_t.end.hpp │ │ │ │ ├── brightness_nit_range_t.start.hpp │ │ │ │ ├── brightness_sensor_data_chromaticity_t.end.hpp │ │ │ │ ├── brightness_sensor_data_chromaticity_t.start.hpp │ │ │ │ ├── brightness_sensor_data_t.end.hpp │ │ │ │ ├── brightness_sensor_data_t.start.hpp │ │ │ │ ├── brightness_set_in_t.end.hpp │ │ │ │ ├── brightness_set_in_t.start.hpp │ │ │ │ ├── brightness_state_t.end.hpp │ │ │ │ ├── brightness_state_t.start.hpp │ │ │ │ ├── buildpagingbuffer_copy_range_t.end.hpp │ │ │ │ ├── buildpagingbuffer_copy_range_t.start.hpp │ │ │ │ ├── buildpagingbuffer_copypagetableentries_t.end.hpp │ │ │ │ ├── buildpagingbuffer_copypagetableentries_t.start.hpp │ │ │ │ ├── buildpagingbuffer_fillvirtual_t.end.hpp │ │ │ │ ├── buildpagingbuffer_fillvirtual_t.start.hpp │ │ │ │ ├── buildpagingbuffer_flushtlb_t.end.hpp │ │ │ │ ├── buildpagingbuffer_flushtlb_t.start.hpp │ │ │ │ ├── buildpagingbuffer_notifyresidency_t.end.hpp │ │ │ │ ├── buildpagingbuffer_notifyresidency_t.start.hpp │ │ │ │ ├── buildpagingbuffer_signalmonitoredfence_t.end.hpp │ │ │ │ ├── buildpagingbuffer_signalmonitoredfence_t.start.hpp │ │ │ │ ├── buildpagingbuffer_transfervirtual_t.end.hpp │ │ │ │ ├── buildpagingbuffer_transfervirtual_t.start.hpp │ │ │ │ ├── buildpagingbuffer_updatecontextallocation_t.end.hpp │ │ │ │ ├── buildpagingbuffer_updatecontextallocation_t.start.hpp │ │ │ │ ├── buildpagingbuffer_updatepagetable_t.end.hpp │ │ │ │ ├── buildpagingbuffer_updatepagetable_t.start.hpp │ │ │ │ ├── check_multiplane_overlay_support_plane_t.end.hpp │ │ │ │ ├── check_multiplane_overlay_support_plane_t.start.hpp │ │ │ │ ├── check_multiplane_overlay_support_return_info_t.end.hpp │ │ │ │ ├── check_multiplane_overlay_support_return_info_t.start.hpp │ │ │ │ ├── child_capabilities_t.end.hpp │ │ │ │ ├── child_capabilities_t.start.hpp │ │ │ │ ├── child_container_id_t.end.hpp │ │ │ │ ├── child_container_id_t.start.hpp │ │ │ │ ├── child_descriptor_t.end.hpp │ │ │ │ ├── child_descriptor_t.start.hpp │ │ │ │ ├── child_status_t.end.hpp │ │ │ │ ├── child_status_t.start.hpp │ │ │ │ ├── colorimetry_t.end.hpp │ │ │ │ ├── colorimetry_t.start.hpp │ │ │ │ ├── colortransformcaps_t.end.hpp │ │ │ │ ├── colortransformcaps_t.start.hpp │ │ │ │ ├── connection_change_t.end.hpp │ │ │ │ ├── connection_change_t.start.hpp │ │ │ │ ├── contextinfo_caps_t.end.hpp │ │ │ │ ├── contextinfo_caps_t.start.hpp │ │ │ │ ├── contextinfo_t.end.hpp │ │ │ │ ├── contextinfo_t.start.hpp │ │ │ │ ├── cpuhostaperture_t.end.hpp │ │ │ │ ├── cpuhostaperture_t.start.hpp │ │ │ │ ├── createallocationflags_t.end.hpp │ │ │ │ ├── createallocationflags_t.start.hpp │ │ │ │ ├── createcontextallocationflags_t.end.hpp │ │ │ │ ├── createcontextallocationflags_t.start.hpp │ │ │ │ ├── createcontextflags_t.end.hpp │ │ │ │ ├── createcontextflags_t.start.hpp │ │ │ │ ├── createdeviceflags_t.end.hpp │ │ │ │ ├── createdeviceflags_t.start.hpp │ │ │ │ ├── createprocessflags_t.end.hpp │ │ │ │ ├── createprocessflags_t.start.hpp │ │ │ │ ├── debug_report_interface_t.end.hpp │ │ │ │ ├── debug_report_interface_t.start.hpp │ │ │ │ ├── describeallocationflags_t.end.hpp │ │ │ │ ├── describeallocationflags_t.start.hpp │ │ │ │ ├── destroyallocationflags_t.end.hpp │ │ │ │ ├── destroyallocationflags_t.start.hpp │ │ │ │ ├── device_descriptor_t.end.hpp │ │ │ │ ├── device_descriptor_t.start.hpp │ │ │ │ ├── device_info_t.end.hpp │ │ │ │ ├── device_info_t.start.hpp │ │ │ │ ├── device_type_caps_t.end.hpp │ │ │ │ ├── device_type_caps_t.start.hpp │ │ │ │ ├── deviceinfo_t.end.hpp │ │ │ │ ├── deviceinfo_t.start.hpp │ │ │ │ ├── deviceinfoflags_t.end.hpp │ │ │ │ ├── deviceinfoflags_t.start.hpp │ │ │ │ ├── diag_black_screen_packet_availability_t.end.hpp │ │ │ │ ├── diag_black_screen_packet_availability_t.start.hpp │ │ │ │ ├── diag_code_point_adapterluid_packet_t.end.hpp │ │ │ │ ├── diag_code_point_adapterluid_packet_t.start.hpp │ │ │ │ ├── diag_code_point_packet_t.end.hpp │ │ │ │ ├── diag_code_point_packet_t.start.hpp │ │ │ │ ├── diag_display_sampled_gamma_t.end.hpp │ │ │ │ ├── diag_display_sampled_gamma_t.start.hpp │ │ │ │ ├── diag_display_scanout_buffer_histogram_t.end.hpp │ │ │ │ ├── diag_display_scanout_buffer_histogram_t.start.hpp │ │ │ │ ├── diag_header_t.end.hpp │ │ │ │ ├── diag_header_t.start.hpp │ │ │ │ ├── diag_scanout_buffer_content_t.end.hpp │ │ │ │ ├── diag_scanout_buffer_content_t.start.hpp │ │ │ │ ├── diagnostic_categories_t.end.hpp │ │ │ │ ├── diagnostic_categories_t.start.hpp │ │ │ │ ├── diagnostic_header_t.end.hpp │ │ │ │ ├── diagnostic_header_t.start.hpp │ │ │ │ ├── diagnostic_psr_refresh_reason_t.end.hpp │ │ │ │ ├── diagnostic_psr_refresh_reason_t.start.hpp │ │ │ │ ├── diagnostic_psr_t.end.hpp │ │ │ │ ├── diagnostic_psr_t.start.hpp │ │ │ │ ├── diagnostic_synclock_enablesync_t.end.hpp │ │ │ │ ├── diagnostic_synclock_enablesync_t.start.hpp │ │ │ │ ├── diagnostic_types_t.end.hpp │ │ │ │ ├── diagnostic_types_t.start.hpp │ │ │ │ ├── diagtype_notifications_t.end.hpp │ │ │ │ ├── diagtype_notifications_t.start.hpp │ │ │ │ ├── diagtype_progressions_t.end.hpp │ │ │ │ ├── diagtype_progressions_t.start.hpp │ │ │ │ ├── discardcontentflags_t.end.hpp │ │ │ │ ├── discardcontentflags_t.start.hpp │ │ │ │ ├── display_diagnostics_interface_t.end.hpp │ │ │ │ ├── display_diagnostics_interface_t.start.hpp │ │ │ │ ├── display_drivercaps_extension_t.end.hpp │ │ │ │ ├── display_drivercaps_extension_t.start.hpp │ │ │ │ ├── display_information_t.end.hpp │ │ │ │ ├── display_information_t.start.hpp │ │ │ │ ├── display_ownership_flags_t.end.hpp │ │ │ │ ├── display_ownership_flags_t.start.hpp │ │ │ │ ├── displaystate_nonintrusive_t.end.hpp │ │ │ │ ├── displaystate_nonintrusive_t.start.hpp │ │ │ │ ├── dmabuffercaps_deprecated_t.end.hpp │ │ │ │ ├── dmabuffercaps_deprecated_t.start.hpp │ │ │ │ ├── dp_interface_t.end.hpp │ │ │ │ ├── dp_interface_t.start.hpp │ │ │ │ ├── drivercaps_t.end.hpp │ │ │ │ ├── drivercaps_t.start.hpp │ │ │ │ ├── dsi_caps_t.end.hpp │ │ │ │ ├── dsi_caps_t.start.hpp │ │ │ │ ├── dsi_packet_t.end.hpp │ │ │ │ ├── dsi_packet_t.start.hpp │ │ │ │ ├── dsi_reset_t.end.hpp │ │ │ │ ├── dsi_reset_t.start.hpp │ │ │ │ ├── dsi_transmission_t.end.hpp │ │ │ │ ├── dsi_transmission_t.start.hpp │ │ │ │ ├── enginestatus_t.end.hpp │ │ │ │ ├── enginestatus_t.start.hpp │ │ │ │ ├── enum_pivot_t.end.hpp │ │ │ │ ├── enum_pivot_t.start.hpp │ │ │ │ ├── escape_gpummucaps_t.end.hpp │ │ │ │ ├── escape_gpummucaps_t.start.hpp │ │ │ │ ├── fault_error_code_t.end.hpp │ │ │ │ ├── fault_error_code_t.start.hpp │ │ │ │ ├── firmware_table_interface_t.end.hpp │ │ │ │ ├── firmware_table_interface_t.start.hpp │ │ │ │ ├── flipcaps_t.end.hpp │ │ │ │ ├── flipcaps_t.start.hpp │ │ │ │ ├── framebuffersavearea_t.end.hpp │ │ │ │ ├── framebuffersavearea_t.start.hpp │ │ │ │ ├── gamma_1dlut_cap_t.end.hpp │ │ │ │ ├── gamma_1dlut_cap_t.start.hpp │ │ │ │ ├── gamma_matrix_cap_t.end.hpp │ │ │ │ ├── gamma_matrix_cap_t.start.hpp │ │ │ │ ├── gammarampcaps_t.end.hpp │ │ │ │ ├── gammarampcaps_t.start.hpp │ │ │ │ ├── gdiarg_alphablend_t.end.hpp │ │ │ │ ├── gdiarg_alphablend_t.start.hpp │ │ │ │ ├── gdiarg_bitblt_t.end.hpp │ │ │ │ ├── gdiarg_bitblt_t.start.hpp │ │ │ │ ├── gdiarg_cleartypeblend_t.end.hpp │ │ │ │ ├── gdiarg_cleartypeblend_t.start.hpp │ │ │ │ ├── gdiarg_colorfill_t.end.hpp │ │ │ │ ├── gdiarg_colorfill_t.start.hpp │ │ │ │ ├── gdiarg_stretchblt_t.end.hpp │ │ │ │ ├── gdiarg_stretchblt_t.start.hpp │ │ │ │ ├── gdiarg_transparentblt_t.end.hpp │ │ │ │ ├── gdiarg_transparentblt_t.start.hpp │ │ │ │ ├── generic_descriptor_t.end.hpp │ │ │ │ ├── generic_descriptor_t.start.hpp │ │ │ │ ├── gpu_physical_address_t.end.hpp │ │ │ │ ├── gpu_physical_address_t.start.hpp │ │ │ │ ├── gpuclockdata_flags_t.end.hpp │ │ │ │ ├── gpuclockdata_flags_t.start.hpp │ │ │ │ ├── gpuclockdata_t.end.hpp │ │ │ │ ├── gpuclockdata_t.start.hpp │ │ │ │ ├── gpuengine_t.end.hpp │ │ │ │ ├── gpuengine_t.start.hpp │ │ │ │ ├── gpuenginetopology_t.end.hpp │ │ │ │ ├── gpuenginetopology_t.start.hpp │ │ │ │ ├── gpummucaps_t.end.hpp │ │ │ │ ├── gpummucaps_t.start.hpp │ │ │ │ ├── gpupcaps_t.end.hpp │ │ │ │ ├── gpupcaps_t.start.hpp │ │ │ │ ├── gpuversion_t.end.hpp │ │ │ │ ├── gpuversion_t.start.hpp │ │ │ │ ├── graphicspower_register_input_v_1_2_t.end.hpp │ │ │ │ ├── graphicspower_register_input_v_1_2_t.start.hpp │ │ │ │ ├── graphicspower_register_output_t.end.hpp │ │ │ │ ├── graphicspower_register_output_t.start.hpp │ │ │ │ ├── hardwarereservedranges_t.end.hpp │ │ │ │ ├── hardwarereservedranges_t.start.hpp │ │ │ │ ├── hdr_metadata_t.end.hpp │ │ │ │ ├── hdr_metadata_t.start.hpp │ │ │ │ ├── history_buffer_header_t.end.hpp │ │ │ │ ├── history_buffer_header_t.start.hpp │ │ │ │ ├── history_buffer_t.end.hpp │ │ │ │ ├── history_buffer_t.start.hpp │ │ │ │ ├── hwcontext_caps_t.end.hpp │ │ │ │ ├── hwcontext_caps_t.start.hpp │ │ │ │ ├── i2c_interface_t.end.hpp │ │ │ │ ├── i2c_interface_t.start.hpp │ │ │ │ ├── inherited_timing_info_t.end.hpp │ │ │ │ ├── inherited_timing_info_t.start.hpp │ │ │ │ ├── integrated_display_child_t.end.hpp │ │ │ │ ├── integrated_display_child_t.start.hpp │ │ │ │ ├── integrateddisplayflags_t.end.hpp │ │ │ │ ├── integrateddisplayflags_t.start.hpp │ │ │ │ ├── interfacespecificdata_t.end.hpp │ │ │ │ ├── interfacespecificdata_t.start.hpp │ │ │ │ ├── invalidatehwcontextflags_t.end.hpp │ │ │ │ ├── invalidatehwcontextflags_t.start.hpp │ │ │ │ ├── ksr_memory_range_t.end.hpp │ │ │ │ ├── ksr_memory_range_t.start.hpp │ │ │ │ ├── mapapertureflags_t.end.hpp │ │ │ │ ├── mapapertureflags_t.start.hpp │ │ │ │ ├── memoryrange_t.end.hpp │ │ │ │ ├── memoryrange_t.start.hpp │ │ │ │ ├── mipi_dsi_interface_t.end.hpp │ │ │ │ ├── mipi_dsi_interface_t.start.hpp │ │ │ │ ├── miracast_caps_t.end.hpp │ │ │ │ ├── miracast_caps_t.start.hpp │ │ │ │ ├── miracast_chunk_id_t.end.hpp │ │ │ │ ├── miracast_chunk_id_t.start.hpp │ │ │ │ ├── miracast_chunk_info_t.end.hpp │ │ │ │ ├── miracast_chunk_info_t.start.hpp │ │ │ │ ├── miracast_display_callbacks_t.end.hpp │ │ │ │ ├── miracast_display_callbacks_t.start.hpp │ │ │ │ ├── miracast_interface_t.end.hpp │ │ │ │ ├── miracast_interface_t.start.hpp │ │ │ │ ├── mitigatedrangeinfo_t.end.hpp │ │ │ │ ├── mitigatedrangeinfo_t.start.hpp │ │ │ │ ├── mmiorangeinfo_t.end.hpp │ │ │ │ ├── mmiorangeinfo_t.start.hpp │ │ │ │ ├── mode_behavior_flags_t.end.hpp │ │ │ │ ├── mode_behavior_flags_t.start.hpp │ │ │ │ ├── monitor_interface_t.end.hpp │ │ │ │ ├── monitor_interface_t.start.hpp │ │ │ │ ├── monitor_interface_v2_t.end.hpp │ │ │ │ ├── monitor_interface_v2_t.start.hpp │ │ │ │ ├── monitordescriptorset_interface_t.end.hpp │ │ │ │ ├── monitordescriptorset_interface_t.start.hpp │ │ │ │ ├── monitorfrequencyrangeset_interface_t.end.hpp │ │ │ │ ├── monitorfrequencyrangeset_interface_t.start.hpp │ │ │ │ ├── monitorlinkinfo_capabilities_t.end.hpp │ │ │ │ ├── monitorlinkinfo_capabilities_t.start.hpp │ │ │ │ ├── monitorlinkinfo_t.end.hpp │ │ │ │ ├── monitorlinkinfo_t.start.hpp │ │ │ │ ├── monitorlinkinfo_usagehints_t.end.hpp │ │ │ │ ├── monitorlinkinfo_usagehints_t.start.hpp │ │ │ │ ├── monitorsourcemodeset_interface_t.end.hpp │ │ │ │ ├── monitorsourcemodeset_interface_t.start.hpp │ │ │ │ ├── multiplane_overlay_attributes2_t.end.hpp │ │ │ │ ├── multiplane_overlay_attributes2_t.start.hpp │ │ │ │ ├── multiplane_overlay_attributes3_t.end.hpp │ │ │ │ ├── multiplane_overlay_attributes3_t.start.hpp │ │ │ │ ├── multiplane_overlay_attributes_t.end.hpp │ │ │ │ ├── multiplane_overlay_attributes_t.start.hpp │ │ │ │ ├── multiplane_overlay_blend_t.end.hpp │ │ │ │ ├── multiplane_overlay_blend_t.start.hpp │ │ │ │ ├── multiplane_overlay_flags_t.end.hpp │ │ │ │ ├── multiplane_overlay_flags_t.start.hpp │ │ │ │ ├── multiplane_overlay_plane2_t.end.hpp │ │ │ │ ├── multiplane_overlay_plane2_t.start.hpp │ │ │ │ ├── multiplane_overlay_plane3_t.end.hpp │ │ │ │ ├── multiplane_overlay_plane3_t.start.hpp │ │ │ │ ├── multiplane_overlay_plane_t.end.hpp │ │ │ │ ├── multiplane_overlay_plane_t.start.hpp │ │ │ │ ├── multiplane_overlay_plane_with_source2_t.end.hpp │ │ │ │ ├── multiplane_overlay_plane_with_source2_t.start.hpp │ │ │ │ ├── multiplane_overlay_plane_with_source_t.end.hpp │ │ │ │ ├── multiplane_overlay_plane_with_source_t.start.hpp │ │ │ │ ├── multiplane_overlay_post_composition_flags_t.end.hpp │ │ │ │ ├── multiplane_overlay_post_composition_flags_t.start.hpp │ │ │ │ ├── multiplane_overlay_post_composition_t.end.hpp │ │ │ │ ├── multiplane_overlay_post_composition_t.start.hpp │ │ │ │ ├── multiplane_overlay_post_composition_with_source_t.end.hpp │ │ │ │ ├── multiplane_overlay_post_composition_with_source_t.start.hpp │ │ │ │ ├── multiplane_overlay_vsync_info2_t.end.hpp │ │ │ │ ├── multiplane_overlay_vsync_info2_t.start.hpp │ │ │ │ ├── multiplane_overlay_vsync_info_t.end.hpp │ │ │ │ ├── multiplane_overlay_vsync_info_t.start.hpp │ │ │ │ ├── multiplane_overlay_y_cb_cr_flags_t.end.hpp │ │ │ │ ├── multiplane_overlay_y_cb_cr_flags_t.start.hpp │ │ │ │ ├── multiplaneoverlaycaps_t.end.hpp │ │ │ │ ├── multiplaneoverlaycaps_t.start.hpp │ │ │ │ ├── node_perfdata_t.end.hpp │ │ │ │ ├── node_perfdata_t.start.hpp │ │ │ │ ├── nodemetadata_flags_t.end.hpp │ │ │ │ ├── nodemetadata_flags_t.start.hpp │ │ │ │ ├── nodemetadata_t.end.hpp │ │ │ │ ├── nodemetadata_t.start.hpp │ │ │ │ ├── openallocationflags_t.end.hpp │ │ │ │ ├── openallocationflags_t.start.hpp │ │ │ │ ├── openallocationinfo_t.end.hpp │ │ │ │ ├── openallocationinfo_t.start.hpp │ │ │ │ ├── opm_interface_2_jtp_t.end.hpp │ │ │ │ ├── opm_interface_2_jtp_t.start.hpp │ │ │ │ ├── opm_interface_2_t.end.hpp │ │ │ │ ├── opm_interface_2_t.start.hpp │ │ │ │ ├── opm_interface_3_t.end.hpp │ │ │ │ ├── opm_interface_3_t.start.hpp │ │ │ │ ├── opm_interface_t.end.hpp │ │ │ │ ├── opm_interface_t.start.hpp │ │ │ │ ├── overlayinfo_t.end.hpp │ │ │ │ ├── overlayinfo_t.start.hpp │ │ │ │ ├── page_table_level_desc_t.end.hpp │ │ │ │ ├── page_table_level_desc_t.start.hpp │ │ │ │ ├── pagetableupdateaddress_t.end.hpp │ │ │ │ ├── pagetableupdateaddress_t.start.hpp │ │ │ │ ├── patchflags_t.end.hpp │ │ │ │ ├── patchflags_t.start.hpp │ │ │ │ ├── physical_memory_range_t.end.hpp │ │ │ │ ├── physical_memory_range_t.start.hpp │ │ │ │ ├── physicaladaptercaps_t.end.hpp │ │ │ │ ├── physicaladaptercaps_t.start.hpp │ │ │ │ ├── physicaladapterflags_t.end.hpp │ │ │ │ ├── physicaladapterflags_t.start.hpp │ │ │ │ ├── plane_specific_input_flags_t.end.hpp │ │ │ │ ├── plane_specific_input_flags_t.start.hpp │ │ │ │ ├── plane_specific_output_flags_t.end.hpp │ │ │ │ ├── plane_specific_output_flags_t.start.hpp │ │ │ │ ├── pointerflags_t.end.hpp │ │ │ │ ├── pointerflags_t.start.hpp │ │ │ │ ├── power_component_flags_t.end.hpp │ │ │ │ ├── power_component_flags_t.start.hpp │ │ │ │ ├── power_component_index_t.end.hpp │ │ │ │ ├── power_component_index_t.start.hpp │ │ │ │ ├── power_component_mapping_t.end.hpp │ │ │ │ ├── power_component_mapping_t.start.hpp │ │ │ │ ├── power_component_p_flags_t.end.hpp │ │ │ │ ├── power_component_p_flags_t.start.hpp │ │ │ │ ├── power_p_component_t.end.hpp │ │ │ │ ├── power_p_component_t.start.hpp │ │ │ │ ├── power_p_state_t.end.hpp │ │ │ │ ├── power_p_state_t.start.hpp │ │ │ │ ├── power_runtime_component_t.end.hpp │ │ │ │ ├── power_runtime_component_t.start.hpp │ │ │ │ ├── power_runtime_state_t.end.hpp │ │ │ │ ├── power_runtime_state_t.start.hpp │ │ │ │ ├── pre_start_info_t.end.hpp │ │ │ │ ├── pre_start_info_t.start.hpp │ │ │ │ ├── preemptcommandflags_t.end.hpp │ │ │ │ ├── preemptcommandflags_t.start.hpp │ │ │ │ ├── presentallocationinfo_t.end.hpp │ │ │ │ ├── presentallocationinfo_t.start.hpp │ │ │ │ ├── presentationcaps_t.end.hpp │ │ │ │ ├── presentationcaps_t.start.hpp │ │ │ │ ├── presentflags_t.end.hpp │ │ │ │ ├── presentflags_t.start.hpp │ │ │ │ ├── presentmultiplaneoverlayinfo_t.end.hpp │ │ │ │ ├── presentmultiplaneoverlayinfo_t.start.hpp │ │ │ │ ├── presentmultiplaneoverlaylist_t.end.hpp │ │ │ │ ├── presentmultiplaneoverlaylist_t.start.hpp │ │ │ │ ├── primarycontextdata_t.end.hpp │ │ │ │ ├── primarycontextdata_t.start.hpp │ │ │ │ ├── primarydata_t.end.hpp │ │ │ │ ├── primarydata_t.start.hpp │ │ │ │ ├── pte_t.end.hpp │ │ │ │ ├── pte_t.start.hpp │ │ │ │ ├── qaisourcein_t.end.hpp │ │ │ │ ├── qaisourcein_t.start.hpp │ │ │ │ ├── qaitargetin_t.end.hpp │ │ │ │ ├── qaitargetin_t.start.hpp │ │ │ │ ├── query_scanout_caps_out_t.end.hpp │ │ │ │ ├── query_scanout_caps_out_t.start.hpp │ │ │ │ ├── queryadapterinfoflags_t.end.hpp │ │ │ │ ├── queryadapterinfoflags_t.start.hpp │ │ │ │ ├── querydisplayidin_t.end.hpp │ │ │ │ ├── querydisplayidin_t.start.hpp │ │ │ │ ├── querydisplayidout_t.end.hpp │ │ │ │ ├── querydisplayidout_t.start.hpp │ │ │ │ ├── querygpummucapsin_t.end.hpp │ │ │ │ ├── querygpummucapsin_t.start.hpp │ │ │ │ ├── queryhistorybufferprecisionin_t.end.hpp │ │ │ │ ├── queryhistorybufferprecisionin_t.start.hpp │ │ │ │ ├── queryintegrateddisplayout2_t.end.hpp │ │ │ │ ├── queryintegrateddisplayout2_t.start.hpp │ │ │ │ ├── queryintegrateddisplayout_t.end.hpp │ │ │ │ ├── queryintegrateddisplayout_t.start.hpp │ │ │ │ ├── querypagetableleveldescin_t.end.hpp │ │ │ │ ├── querypagetableleveldescin_t.start.hpp │ │ │ │ ├── queryphysicaladaptercapsin_t.end.hpp │ │ │ │ ├── queryphysicaladaptercapsin_t.start.hpp │ │ │ │ ├── querysegmentin4_t.end.hpp │ │ │ │ ├── querysegmentin4_t.start.hpp │ │ │ │ ├── querysegmentin_t.end.hpp │ │ │ │ ├── querysegmentin_t.start.hpp │ │ │ │ ├── querysegmentmemorystate_t.end.hpp │ │ │ │ ├── querysegmentmemorystate_t.start.hpp │ │ │ │ ├── querysegmentout2_t.end.hpp │ │ │ │ ├── querysegmentout2_t.start.hpp │ │ │ │ ├── querysegmentout3_t.end.hpp │ │ │ │ ├── querysegmentout3_t.start.hpp │ │ │ │ ├── querysegmentout4_t.end.hpp │ │ │ │ ├── querysegmentout4_t.start.hpp │ │ │ │ ├── querysegmentout_t.end.hpp │ │ │ │ ├── querysegmentout_t.start.hpp │ │ │ │ ├── renderkm_command_t.end.hpp │ │ │ │ ├── renderkm_command_t.start.hpp │ │ │ │ ├── restorememoryforhotupdateflags_t.end.hpp │ │ │ │ ├── restorememoryforhotupdateflags_t.start.hpp │ │ │ │ ├── savememoryforhotupdateflags_t.end.hpp │ │ │ │ ├── savememoryforhotupdateflags_t.start.hpp │ │ │ │ ├── scheduling_log_buffer_t.end.hpp │ │ │ │ ├── scheduling_log_buffer_t.start.hpp │ │ │ │ ├── scheduling_log_context_state_change_t.end.hpp │ │ │ │ ├── scheduling_log_context_state_change_t.start.hpp │ │ │ │ ├── scheduling_log_entry_t.end.hpp │ │ │ │ ├── scheduling_log_entry_t.start.hpp │ │ │ │ ├── scheduling_log_header_t.end.hpp │ │ │ │ ├── scheduling_log_header_t.start.hpp │ │ │ │ ├── segmentbankpreference_t.end.hpp │ │ │ │ ├── segmentbankpreference_t.start.hpp │ │ │ │ ├── segmentdescriptor2_t.end.hpp │ │ │ │ ├── segmentdescriptor2_t.start.hpp │ │ │ │ ├── segmentdescriptor3_t.end.hpp │ │ │ │ ├── segmentdescriptor3_t.start.hpp │ │ │ │ ├── segmentdescriptor4_t.end.hpp │ │ │ │ ├── segmentdescriptor4_t.start.hpp │ │ │ │ ├── segmentdescriptor_t.end.hpp │ │ │ │ ├── segmentdescriptor_t.start.hpp │ │ │ │ ├── segmentflags2_t.end.hpp │ │ │ │ ├── segmentflags2_t.start.hpp │ │ │ │ ├── segmentflags_t.end.hpp │ │ │ │ ├── segmentflags_t.start.hpp │ │ │ │ ├── set_timing_flags_t.end.hpp │ │ │ │ ├── set_timing_flags_t.start.hpp │ │ │ │ ├── set_timing_path_info_t.end.hpp │ │ │ │ ├── set_timing_path_info_t.start.hpp │ │ │ │ ├── set_timing_results_t.end.hpp │ │ │ │ ├── set_timing_results_t.start.hpp │ │ │ │ ├── setpointerpositionflags_t.end.hpp │ │ │ │ ├── setpointerpositionflags_t.start.hpp │ │ │ │ ├── setvidpnsourceaddress_flags_t.end.hpp │ │ │ │ ├── setvidpnsourceaddress_flags_t.start.hpp │ │ │ │ ├── setvidpnsourceaddress_input_flags_t.end.hpp │ │ │ │ ├── setvidpnsourceaddress_input_flags_t.start.hpp │ │ │ │ ├── setvidpnsourceaddress_output_flags_t.end.hpp │ │ │ │ ├── setvidpnsourceaddress_output_flags_t.start.hpp │ │ │ │ ├── spb_interface_t.end.hpp │ │ │ │ ├── spb_interface_t.start.hpp │ │ │ │ ├── standard_colorimetry_flags_t.end.hpp │ │ │ │ ├── standard_colorimetry_flags_t.start.hpp │ │ │ │ ├── start_info_t.end.hpp │ │ │ │ ├── start_info_t.start.hpp │ │ │ │ ├── submitcommandflags_t.end.hpp │ │ │ │ ├── submitcommandflags_t.start.hpp │ │ │ │ ├── target_gamma_caps_t.end.hpp │ │ │ │ ├── target_gamma_caps_t.start.hpp │ │ │ │ ├── targetmode_detail_timing_t.end.hpp │ │ │ │ ├── targetmode_detail_timing_t.start.hpp │ │ │ │ ├── timed_operation_interface_t.end.hpp │ │ │ │ ├── timed_operation_interface_t.start.hpp │ │ │ │ ├── timed_operation_t.end.hpp │ │ │ │ ├── timed_operation_t.start.hpp │ │ │ │ ├── trackedworkload_state_flags_t.end.hpp │ │ │ │ ├── trackedworkload_state_flags_t.start.hpp │ │ │ │ ├── transferflags_t.end.hpp │ │ │ │ ├── transferflags_t.start.hpp │ │ │ │ ├── transfervirtualflags_t.end.hpp │ │ │ │ ├── transfervirtualflags_t.start.hpp │ │ │ │ ├── updatehwcontextstate_flags_t.end.hpp │ │ │ │ ├── updatehwcontextstate_flags_t.start.hpp │ │ │ │ ├── updatepagetableflags_t.end.hpp │ │ │ │ ├── updatepagetableflags_t.start.hpp │ │ │ │ ├── validatesubmitcommandflags_t.end.hpp │ │ │ │ ├── validatesubmitcommandflags_t.start.hpp │ │ │ │ ├── vgpu_capability_t.end.hpp │ │ │ │ ├── vgpu_capability_t.start.hpp │ │ │ │ ├── vgpu_profile_capability_t.end.hpp │ │ │ │ ├── vgpu_profile_capability_t.start.hpp │ │ │ │ ├── video_output_capabilities_t.end.hpp │ │ │ │ ├── video_output_capabilities_t.start.hpp │ │ │ │ ├── vidmmcaps_t.end.hpp │ │ │ │ ├── vidmmcaps_t.start.hpp │ │ │ │ ├── vidpn_interface_t.end.hpp │ │ │ │ ├── vidpn_interface_t.start.hpp │ │ │ │ ├── vidpnsourcemodeset_interface_t.end.hpp │ │ │ │ ├── vidpnsourcemodeset_interface_t.start.hpp │ │ │ │ ├── vidpntargetmodeset_interface_t.end.hpp │ │ │ │ ├── vidpntargetmodeset_interface_t.start.hpp │ │ │ │ ├── vidpntopology_interface_t.end.hpp │ │ │ │ ├── vidpntopology_interface_t.start.hpp │ │ │ │ ├── vidschcaps_t.end.hpp │ │ │ │ ├── vidschcaps_t.start.hpp │ │ │ │ ├── virtualaddresscaps_deprecated_t.end.hpp │ │ │ │ ├── virtualaddresscaps_deprecated_t.start.hpp │ │ │ │ ├── virtualgpucapability_t.end.hpp │ │ │ │ ├── virtualgpucapability_t.start.hpp │ │ │ │ ├── virtualgpudriverescape_t.end.hpp │ │ │ │ ├── virtualgpudriverescape_t.start.hpp │ │ │ │ ├── virtualgpuengineinfo_t.end.hpp │ │ │ │ ├── virtualgpuengineinfo_t.start.hpp │ │ │ │ ├── virtualgpumemoryresource_t.end.hpp │ │ │ │ ├── virtualgpumemoryresource_t.start.hpp │ │ │ │ ├── virtualgpuprofile_t.end.hpp │ │ │ │ ├── virtualgpuprofile_t.start.hpp │ │ │ │ ├── virtualgpusegmentinfo_t.end.hpp │ │ │ │ ├── virtualgpusegmentinfo_t.start.hpp │ │ │ │ ├── virtualmachinedataflags_t.end.hpp │ │ │ │ ├── virtualmachinedataflags_t.start.hpp │ │ │ │ ├── wddmdevicecaps_t.end.hpp │ │ │ │ ├── wddmdevicecaps_t.start.hpp │ │ │ │ ├── wddmdevicecapsin_t.end.hpp │ │ │ │ ├── wddmdevicecapsin_t.start.hpp │ │ │ │ ├── win32k_param_data_t.end.hpp │ │ │ │ └── win32k_param_data_t.start.hpp │ │ │ ├── managedprimariestracker/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── mapapertureflags_t.hpp │ │ │ ├── mdt/ │ │ │ │ ├── api.hpp │ │ │ │ ├── certificate_type_t.hpp │ │ │ │ ├── dpcp_protection_level_t.hpp │ │ │ │ ├── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ ├── api.start.hpp │ │ │ │ │ ├── opm_acp_and_cgmsa_signaling_t.end.hpp │ │ │ │ │ ├── opm_acp_and_cgmsa_signaling_t.start.hpp │ │ │ │ │ ├── opm_actual_output_format_t.end.hpp │ │ │ │ │ ├── opm_actual_output_format_t.start.hpp │ │ │ │ │ ├── opm_configure_parameters_t.end.hpp │ │ │ │ │ ├── opm_configure_parameters_t.start.hpp │ │ │ │ │ ├── opm_connected_hdcp_device_information_t.end.hpp │ │ │ │ │ ├── opm_connected_hdcp_device_information_t.start.hpp │ │ │ │ │ ├── opm_copp_compatible_get_info_parameters_t.end.hpp │ │ │ │ │ ├── opm_copp_compatible_get_info_parameters_t.start.hpp │ │ │ │ │ ├── opm_create_video_output_for_target_parameters_t.end.hpp │ │ │ │ │ ├── opm_create_video_output_for_target_parameters_t.start.hpp │ │ │ │ │ ├── opm_encrypted_parameters_t.end.hpp │ │ │ │ │ ├── opm_encrypted_parameters_t.start.hpp │ │ │ │ │ ├── opm_get_info_parameters_t.end.hpp │ │ │ │ │ ├── opm_get_info_parameters_t.start.hpp │ │ │ │ │ ├── opm_hdcp_key_selection_vector_t.end.hpp │ │ │ │ │ ├── opm_hdcp_key_selection_vector_t.start.hpp │ │ │ │ │ ├── opm_omac_t.end.hpp │ │ │ │ │ ├── opm_omac_t.start.hpp │ │ │ │ │ ├── opm_output_id_t.end.hpp │ │ │ │ │ ├── opm_output_id_t.start.hpp │ │ │ │ │ ├── opm_random_number_t.end.hpp │ │ │ │ │ ├── opm_random_number_t.start.hpp │ │ │ │ │ ├── opm_requested_information_t.end.hpp │ │ │ │ │ ├── opm_requested_information_t.start.hpp │ │ │ │ │ ├── opm_set_acp_and_cgmsa_signaling_parameters_t.end.hpp │ │ │ │ │ ├── opm_set_acp_and_cgmsa_signaling_parameters_t.start.hpp │ │ │ │ │ ├── opm_set_hdcp_srm_parameters_t.end.hpp │ │ │ │ │ ├── opm_set_hdcp_srm_parameters_t.start.hpp │ │ │ │ │ ├── opm_set_protection_level_parameters_t.end.hpp │ │ │ │ │ ├── opm_set_protection_level_parameters_t.start.hpp │ │ │ │ │ ├── opm_standard_information_t.end.hpp │ │ │ │ │ └── opm_standard_information_t.start.hpp │ │ │ │ ├── opm_acp_and_cgmsa_signaling_t.hpp │ │ │ │ ├── opm_acp_protection_level_t.hpp │ │ │ │ ├── opm_actual_output_format_t.hpp │ │ │ │ ├── opm_bus_type_and_implementation_t.hpp │ │ │ │ ├── opm_cgmsa_t.hpp │ │ │ │ ├── opm_configure_parameters_t.hpp │ │ │ │ ├── opm_connected_hdcp_device_information_t.hpp │ │ │ │ ├── opm_connector_type_t.hpp │ │ │ │ ├── opm_copp_compatible_get_info_parameters_t.hpp │ │ │ │ ├── opm_create_video_output_for_target_parameters_t.hpp │ │ │ │ ├── opm_encrypted_parameters_t.hpp │ │ │ │ ├── opm_get_info_parameters_t.hpp │ │ │ │ ├── opm_hdcp_flag_t.hpp │ │ │ │ ├── opm_hdcp_key_selection_vector_t.hpp │ │ │ │ ├── opm_hdcp_protection_level_t.hpp │ │ │ │ ├── opm_image_aspect_ratio_en300294_t.hpp │ │ │ │ ├── opm_interleave_format_t.hpp │ │ │ │ ├── opm_omac_t.hpp │ │ │ │ ├── opm_output_hardware_protection_t.hpp │ │ │ │ ├── opm_output_id_t.hpp │ │ │ │ ├── opm_protection_standard_t.hpp │ │ │ │ ├── opm_protection_type_t.hpp │ │ │ │ ├── opm_random_number_t.hpp │ │ │ │ ├── opm_requested_information_t.hpp │ │ │ │ ├── opm_set_acp_and_cgmsa_signaling_parameters_t.hpp │ │ │ │ ├── opm_set_hdcp_srm_parameters_t.hpp │ │ │ │ ├── opm_set_protection_level_parameters_t.hpp │ │ │ │ ├── opm_standard_information_t.hpp │ │ │ │ ├── opm_status_t.hpp │ │ │ │ ├── opm_type_enforcement_hdcp_protection_level_t.hpp │ │ │ │ └── opm_video_output_semantics_t.hpp │ │ │ ├── memory_caching_type_t.hpp │ │ │ ├── memory_transfer_direction_t.hpp │ │ │ ├── memoryrange_t.hpp │ │ │ ├── miniport_list_auto_lock/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── mipi_dsi_interface_t.hpp │ │ │ ├── miracast_caps_t.hpp │ │ │ ├── miracast_chunk_id_t.hpp │ │ │ ├── miracast_chunk_info_t.hpp │ │ │ ├── miracast_chunk_list/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── miracast_chunk_type_t.hpp │ │ │ ├── miracast_display_callbacks_t.hpp │ │ │ ├── miracast_interface_t.hpp │ │ │ ├── mitigatedrangeinfo_t.hpp │ │ │ ├── mmiorangeinfo_t.hpp │ │ │ ├── mockdriverstate/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── mockdriverstate_per_plane/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── mode_behavior_flags_t.hpp │ │ │ ├── mode_union_list/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── mon_desc_parser/ │ │ │ │ ├── api.hpp │ │ │ │ ├── edid_modes/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── edid_parser/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── edid_parser_cea_861_ext/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── edid_parser_standard_timing/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── monitor_event_deferral/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── monitor_interface_t.hpp │ │ │ ├── monitor_interface_v1_impl/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── monitor_interface_v2_impl/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── monitor_interface_v2_t.hpp │ │ │ ├── monitor_interface_version_t.hpp │ │ │ ├── monitor_mgr/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── monitordescriptorset_interface_t.hpp │ │ │ ├── monitordescriptorset_interface_v1_impl/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── monitored_fence_helper/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── monitorfrequencyrangeset_interface_t.hpp │ │ │ ├── monitorfrequencyrangeset_interface_v1_impl/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── monitorlinkinfo_capabilities_t.hpp │ │ │ ├── monitorlinkinfo_t.hpp │ │ │ ├── monitorlinkinfo_usagehints_t.hpp │ │ │ ├── monitorscount_callback_context/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── monitorsourcemodeset_interface_t.hpp │ │ │ ├── monitorsourcemodeset_interface_v1_impl/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── multiplane_overlay_attributes2_t.hpp │ │ │ ├── multiplane_overlay_attributes3_t.hpp │ │ │ ├── multiplane_overlay_attributes_t.hpp │ │ │ ├── multiplane_overlay_blend_t.hpp │ │ │ ├── multiplane_overlay_flags_t.hpp │ │ │ ├── multiplane_overlay_plane2_t.hpp │ │ │ ├── multiplane_overlay_plane3_t.hpp │ │ │ ├── multiplane_overlay_plane_t.hpp │ │ │ ├── multiplane_overlay_plane_with_source2_t.hpp │ │ │ ├── multiplane_overlay_plane_with_source_t.hpp │ │ │ ├── multiplane_overlay_post_composition_flags_t.hpp │ │ │ ├── multiplane_overlay_post_composition_t.hpp │ │ │ ├── multiplane_overlay_post_composition_with_source_t.hpp │ │ │ ├── multiplane_overlay_stereo_flip_mode_t.hpp │ │ │ ├── multiplane_overlay_stereo_format_t.hpp │ │ │ ├── multiplane_overlay_stretch_quality_t.hpp │ │ │ ├── multiplane_overlay_video_frame_format_t.hpp │ │ │ ├── multiplane_overlay_vsync_info2_t.hpp │ │ │ ├── multiplane_overlay_vsync_info_t.hpp │ │ │ ├── multiplane_overlay_y_cb_cr_flags_t.hpp │ │ │ ├── multiplaneoverlaycaps_t.hpp │ │ │ ├── mutex_lock/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── node_perfdata_t.hpp │ │ │ ├── nodemetadata_flags_t.hpp │ │ │ ├── nodemetadata_t.hpp │ │ │ ├── non_reference_counted/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── obtain_modes_on_source/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── openallocationflags_t.hpp │ │ │ ├── openallocationinfo_t.hpp │ │ │ ├── opm_interface_2_jtp_t.hpp │ │ │ ├── opm_interface_2_t.hpp │ │ │ ├── opm_interface_3_t.hpp │ │ │ ├── opm_interface_t.hpp │ │ │ ├── outputdupl_context/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── outputdupl_contextlist/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── outputdupl_mgr/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── outputdupl_mgr_indirect/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── outputdupl_session_mgr/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── overlayinfo_t.hpp │ │ │ ├── page_fault_flags_t.hpp │ │ │ ├── page_table_level_desc_t.hpp │ │ │ ├── pagetableupdateaddress_t.hpp │ │ │ ├── pagetableupdatemode_t.hpp │ │ │ ├── patchflags_t.hpp │ │ │ ├── pdo_base_enum/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── physical_memory_range_t.hpp │ │ │ ├── physicaladaptercaps_t.hpp │ │ │ ├── physicaladapterflags_t.hpp │ │ │ ├── physicaladapterinfo/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── plane_specific_input_flags_t.hpp │ │ │ ├── plane_specific_output_flags_t.hpp │ │ │ ├── pointerflags_t.hpp │ │ │ ├── power_component_flags_t.hpp │ │ │ ├── power_component_index_t.hpp │ │ │ ├── power_component_mapping_t.hpp │ │ │ ├── power_component_p_flags_t.hpp │ │ │ ├── power_component_type_t.hpp │ │ │ ├── power_p_component_t.hpp │ │ │ ├── power_p_state_t.hpp │ │ │ ├── power_runtime_component_t.hpp │ │ │ ├── power_runtime_state_t.hpp │ │ │ ├── pre_start_info_t.hpp │ │ │ ├── preemptcommandflags_t.hpp │ │ │ ├── present_display_only_progress_id_t.hpp │ │ │ ├── presentallocationinfo_t.hpp │ │ │ ├── presentationcaps_t.hpp │ │ │ ├── presentdodarg/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── presentflags_t.hpp │ │ │ ├── presentmultiplaneoverlayinfo_t.hpp │ │ │ ├── presentmultiplaneoverlaylist_t.hpp │ │ │ ├── primarycontextdata_t.hpp │ │ │ ├── primarydata_t.hpp │ │ │ ├── protectable_from_change/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── protected_session_status_t.hpp │ │ │ ├── pte_page_size_t.hpp │ │ │ ├── pte_t.hpp │ │ │ ├── qaisourcein_t.hpp │ │ │ ├── qaitargetin_t.hpp │ │ │ ├── qdc_cache/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── query_scanout_caps_out_t.hpp │ │ │ ├── queryadapterinfoflags_t.hpp │ │ │ ├── queryadapterinfotype_t.hpp │ │ │ ├── querydisplayidin_t.hpp │ │ │ ├── querydisplayidout_t.hpp │ │ │ ├── querygpummucapsin_t.hpp │ │ │ ├── queryhistorybufferprecisionin_t.hpp │ │ │ ├── queryintegrateddisplayout2_t.hpp │ │ │ ├── queryintegrateddisplayout_t.hpp │ │ │ ├── querypagetableleveldescin_t.hpp │ │ │ ├── queryphysicaladaptercapsin_t.hpp │ │ │ ├── querysegmentin4_t.hpp │ │ │ ├── querysegmentin_t.hpp │ │ │ ├── querysegmentmemorystate_t.hpp │ │ │ ├── querysegmentout2_t.hpp │ │ │ ├── querysegmentout3_t.hpp │ │ │ ├── querysegmentout4_t.hpp │ │ │ ├── querysegmentout_t.hpp │ │ │ ├── rapid_hpd_manager/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── recommendfunctionalvidpn_reason_t.hpp │ │ │ ├── recommendvidpntopology_reason_t.hpp │ │ │ ├── reference_counted/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── remote_vsync/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── remotemonitormapping/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── remotevsyncmapping/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── render_pipeline_stage_t.hpp │ │ │ ├── renderkm_command_t.hpp │ │ │ ├── renderkm_operation_t.hpp │ │ │ ├── restorememoryforhotupdateflags_t.hpp │ │ │ ├── rolling_stats/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── savememoryforhotupdateflags_t.hpp │ │ │ ├── scheduling_log_buffer_t.hpp │ │ │ ├── scheduling_log_context_state_change_t.hpp │ │ │ ├── scheduling_log_context_state_t.hpp │ │ │ ├── scheduling_log_entry_t.hpp │ │ │ ├── scheduling_log_header_t.hpp │ │ │ ├── scheduling_log_operation_t.hpp │ │ │ ├── scheduling_priority_band_t.hpp │ │ │ ├── segmentbankpreference_t.hpp │ │ │ ├── segmentdescriptor2_t.hpp │ │ │ ├── segmentdescriptor3_t.hpp │ │ │ ├── segmentdescriptor4_t.hpp │ │ │ ├── segmentdescriptor_t.hpp │ │ │ ├── segmentflags2_t.hpp │ │ │ ├── segmentflags_t.hpp │ │ │ ├── session_adapter/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── session_view/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── set_timing_flags_t.hpp │ │ │ ├── set_timing_path_info_t.hpp │ │ │ ├── set_timing_results_t.hpp │ │ │ ├── setpointerpositionflags_t.hpp │ │ │ ├── setvidpnsourceaddress_flags_t.hpp │ │ │ ├── setvidpnsourceaddress_input_flags_t.hpp │ │ │ ├── setvidpnsourceaddress_output_flags_t.hpp │ │ │ ├── spb_interface_t.hpp │ │ │ ├── standard_colorimetry_flags_t.hpp │ │ │ ├── start_info_t.hpp │ │ │ ├── submitcommandflags_t.hpp │ │ │ ├── surprise_removal_type_t.hpp │ │ │ ├── target_gamma_caps_t.hpp │ │ │ ├── target_gamma_caps_version_t.hpp │ │ │ ├── targetmode_detail_timing_t.hpp │ │ │ ├── timed_operation_interface_t.hpp │ │ │ ├── timed_operation_t.hpp │ │ │ ├── token_binding_guard/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── tracked_workload_monitor/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── trackedworkload_state_flags_t.hpp │ │ │ ├── transferflags_t.hpp │ │ │ ├── transfervirtualflags_t.hpp │ │ │ ├── updatehwcontextstate_flags_t.hpp │ │ │ ├── updatepagetableflags_t.hpp │ │ │ ├── usb4_host_router/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── usb4_hostrouter_mgr/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── usb4_poweron_work_queue/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── validatesubmitcommandflags_t.hpp │ │ │ ├── vgpu/ │ │ │ │ ├── escape_head_t.hpp │ │ │ │ ├── escape_initialize_t.hpp │ │ │ │ ├── escape_powertransitioncomplete_t.hpp │ │ │ │ ├── escape_read_pci_config_t.hpp │ │ │ │ ├── escape_read_vgpu_type_t.hpp │ │ │ │ ├── escape_release_t.hpp │ │ │ │ ├── escape_type_t.hpp │ │ │ │ ├── escape_write_pci_config_t.hpp │ │ │ │ └── magic/ │ │ │ │ ├── escape_head_t.end.hpp │ │ │ │ ├── escape_head_t.start.hpp │ │ │ │ ├── escape_initialize_t.end.hpp │ │ │ │ ├── escape_initialize_t.start.hpp │ │ │ │ ├── escape_powertransitioncomplete_t.end.hpp │ │ │ │ ├── escape_powertransitioncomplete_t.start.hpp │ │ │ │ ├── escape_read_pci_config_t.end.hpp │ │ │ │ ├── escape_read_pci_config_t.start.hpp │ │ │ │ ├── escape_read_vgpu_type_t.end.hpp │ │ │ │ ├── escape_read_vgpu_type_t.start.hpp │ │ │ │ ├── escape_release_t.end.hpp │ │ │ │ ├── escape_release_t.start.hpp │ │ │ │ ├── escape_write_pci_config_t.end.hpp │ │ │ │ └── escape_write_pci_config_t.start.hpp │ │ │ ├── vgpu_capability_t.hpp │ │ │ ├── vgpu_capability_type_t.hpp │ │ │ ├── vgpu_profile_capability_t.hpp │ │ │ ├── video_output_capabilities_t.hpp │ │ │ ├── vidmm_export/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── vidmm_flip_queue_references/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── vidmmcaps_t.hpp │ │ │ ├── vidpn_interface_t.hpp │ │ │ ├── vidpn_interface_v1_impl/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── vidpn_interface_v2_impl/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── vidpn_interface_version_t.hpp │ │ │ ├── vidpn_mgr/ │ │ │ │ ├── api.hpp │ │ │ │ ├── commitvidpnrequest/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── dispmodechangerequest/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── vidpn_mgr_classfactory/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── vidpnsourceinfo/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── vidpnsourcemodeset_interface_t.hpp │ │ │ ├── vidpnsourcemodeset_interface_v1_impl/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── vidpntargetinfo/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── vidpntargetmodeset_interface_t.hpp │ │ │ ├── vidpntargetmodeset_interface_v1_impl/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── vidpntargetmodeset_interface_v2_impl/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── vidpntopology_interface_t.hpp │ │ │ ├── vidpntopology_interface_v1_impl/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── vidsch_export/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── vidschcaps_t.hpp │ │ │ ├── virtual_gpu/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── virtual_gpu_gpup/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── virtual_gpu_parav/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── virtualaddresscaps_deprecated_t.hpp │ │ │ ├── virtualgpucapability_t.hpp │ │ │ ├── virtualgpudriverescape_t.hpp │ │ │ ├── virtualgpuengineinfo_t.hpp │ │ │ ├── virtualgpumemoryresource_t.hpp │ │ │ ├── virtualgpuprofile_t.hpp │ │ │ ├── virtualgpusegmentinfo_t.hpp │ │ │ ├── virtualmachinedataflags_t.hpp │ │ │ ├── vsync_time_counters/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── vsync_time_stats/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── w32kimports/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── wddmdevicecaps_t.hpp │ │ │ ├── wddmdevicecapsin_t.hpp │ │ │ ├── wddmversion_t.hpp │ │ │ ├── widxg/ │ │ │ │ └── details/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── win32k_param_data_t.hpp │ │ │ └── win81/ │ │ │ ├── api.hpp │ │ │ └── magic/ │ │ │ ├── api.end.hpp │ │ │ └── api.start.hpp │ │ ├── dxgkp/ │ │ │ ├── api.hpp │ │ │ └── magic/ │ │ │ ├── api.end.hpp │ │ │ └── api.start.hpp │ │ ├── dxgmms2/ │ │ │ ├── acquire_spin_lock/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── adapter_render/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── api.hpp │ │ │ ├── autofloatingpointstate/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── c_virtual_address_allocator/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dxg_deferred_work_queue/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dxgadapter/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dxgautoexpushlock/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dxgautopushlockfastexclusive/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dxginversesemaphore/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dxgprocess/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dxgprocessvidmmlock/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── hw_queue_staging_list/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── vidmm_alloc/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── vidmm_aperture_segment/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── vidmm_budget_group_size/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── vidmm_commit_telemetry/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── vidmm_cpu_host_aperture/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── vidmm_device/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── vidmm_device_command_updategpuva/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── vidmm_device_paging_queue/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── vidmm_dma_buffer/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── vidmm_dma_pool/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── vidmm_fence_storage_page/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── vidmm_global/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── vidmm_global_alloc/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── vidmm_global_alloc_nonpaged/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── vidmm_linear_pool/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── vidmm_mapped_va_range/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── vidmm_mdl_range/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── vidmm_memory_segment/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── vidmm_page_directory/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── vidmm_page_table/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── vidmm_page_table_base/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── vidmm_paging_history_entry/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── vidmm_paging_process/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── vidmm_paging_queue/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── vidmm_paging_queue_packet/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── vidmm_partition/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── vidmm_partition_adapter_info/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── vidmm_physical_adapter/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── vidmm_physical_adapter_budget_state/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── vidmm_policy/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── vidmm_pool_block/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── vidmm_process/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── vidmm_process_adapter_info/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── vidmm_process_budget_state/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── vidmm_process_commitment_info/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── vidmm_process_fence_storage/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── vidmm_process_heap/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── vidmm_purge_telemetry/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── vidmm_recycle_block/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── vidmm_recycle_heap/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── vidmm_recycle_heap_mgr/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── vidmm_recycle_heap_physical_view/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── vidmm_recycle_multirange/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── vidmm_recycle_range/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── vidmm_sch_log/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── vidmm_segment/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── vidmm_sysmem_segment/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── vidmm_telemetry_paging_costs/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── vidmm_telemetry_process_allocated_content/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── vidmm_telemetry_process_demoted_content_by_free_memory/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── vidmm_worker_thread/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── vidmm_worker_thread_paging_time_accumulator/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── vidsch_flip_queue_entry/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── vidsch_flip_queue_history_entry/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── vidsch_flip_queue_iterator/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── vidsch_global/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── vidsch_independent_flip_vidpnsource_iterator/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── vidsch_process_adapter_info/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── vidsch_queue_packet/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── vidsch_sync_object/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ └── vidsch_vsync_smoother/ │ │ │ ├── api.hpp │ │ │ └── magic/ │ │ │ ├── api.end.hpp │ │ │ └── api.start.hpp │ │ ├── dxva/ │ │ │ ├── ayu_vsample2_t.hpp │ │ │ ├── blend_combination_t.hpp │ │ │ ├── buffer_description_t.hpp │ │ │ ├── config_alpha_combine_t.hpp │ │ │ ├── config_alpha_load_t.hpp │ │ │ ├── config_picture_decode_t.hpp │ │ │ ├── connect_mode_t.hpp │ │ │ ├── copp_command_t.hpp │ │ │ ├── copp_set_protection_level_cmd_data_t.hpp │ │ │ ├── copp_set_signaling_cmd_data_t.hpp │ │ │ ├── copp_signature_t.hpp │ │ │ ├── copp_status_data_t.hpp │ │ │ ├── copp_status_display_data_t.hpp │ │ │ ├── copp_status_hdcp_key_data_t.hpp │ │ │ ├── copp_status_input_t.hpp │ │ │ ├── copp_status_output_t.hpp │ │ │ ├── copp_status_signaling_cmd_data_t.hpp │ │ │ ├── deblock_h264_t.hpp │ │ │ ├── deblock_index_ab_h264_t.hpp │ │ │ ├── deinterlace_blt_ex32_t.hpp │ │ │ ├── deinterlace_blt_ex_t.hpp │ │ │ ├── deinterlace_blt_t.hpp │ │ │ ├── deinterlace_caps_t.hpp │ │ │ ├── deinterlace_query_available_modes_t.hpp │ │ │ ├── deinterlace_query_mode_caps_t.hpp │ │ │ ├── deinterlace_tech_t.hpp │ │ │ ├── destination_flags_t.hpp │ │ │ ├── encrypt_protocol_header_t.hpp │ │ │ ├── extended_format_t.hpp │ │ │ ├── film_grain_characteristics_t.hpp │ │ │ ├── frequency_t.hpp │ │ │ ├── highlight_t.hpp │ │ │ ├── m_bctrl_h264_t.hpp │ │ │ ├── m_bctrl_i_host_resid_diff_1_t.hpp │ │ │ ├── m_bctrl_i_off_host_idct_1_t.hpp │ │ │ ├── m_bctrl_p_host_resid_diff_1_t.hpp │ │ │ ├── m_bctrl_p_off_host_idct_1_t.hpp │ │ │ ├── m_vvalue_t.hpp │ │ │ ├── magic/ │ │ │ │ ├── ayu_vsample2_t.end.hpp │ │ │ │ ├── ayu_vsample2_t.start.hpp │ │ │ │ ├── blend_combination_t.end.hpp │ │ │ │ ├── blend_combination_t.start.hpp │ │ │ │ ├── buffer_description_t.end.hpp │ │ │ │ ├── buffer_description_t.start.hpp │ │ │ │ ├── config_alpha_combine_t.end.hpp │ │ │ │ ├── config_alpha_combine_t.start.hpp │ │ │ │ ├── config_alpha_load_t.end.hpp │ │ │ │ ├── config_alpha_load_t.start.hpp │ │ │ │ ├── config_picture_decode_t.end.hpp │ │ │ │ ├── config_picture_decode_t.start.hpp │ │ │ │ ├── connect_mode_t.end.hpp │ │ │ │ ├── connect_mode_t.start.hpp │ │ │ │ ├── copp_command_t.end.hpp │ │ │ │ ├── copp_command_t.start.hpp │ │ │ │ ├── copp_set_protection_level_cmd_data_t.end.hpp │ │ │ │ ├── copp_set_protection_level_cmd_data_t.start.hpp │ │ │ │ ├── copp_set_signaling_cmd_data_t.end.hpp │ │ │ │ ├── copp_set_signaling_cmd_data_t.start.hpp │ │ │ │ ├── copp_signature_t.end.hpp │ │ │ │ ├── copp_signature_t.start.hpp │ │ │ │ ├── copp_status_data_t.end.hpp │ │ │ │ ├── copp_status_data_t.start.hpp │ │ │ │ ├── copp_status_display_data_t.end.hpp │ │ │ │ ├── copp_status_display_data_t.start.hpp │ │ │ │ ├── copp_status_hdcp_key_data_t.end.hpp │ │ │ │ ├── copp_status_hdcp_key_data_t.start.hpp │ │ │ │ ├── copp_status_input_t.end.hpp │ │ │ │ ├── copp_status_input_t.start.hpp │ │ │ │ ├── copp_status_output_t.end.hpp │ │ │ │ ├── copp_status_output_t.start.hpp │ │ │ │ ├── copp_status_signaling_cmd_data_t.end.hpp │ │ │ │ ├── copp_status_signaling_cmd_data_t.start.hpp │ │ │ │ ├── deblock_h264_t.end.hpp │ │ │ │ ├── deblock_h264_t.start.hpp │ │ │ │ ├── deblock_index_ab_h264_t.end.hpp │ │ │ │ ├── deblock_index_ab_h264_t.start.hpp │ │ │ │ ├── deinterlace_blt_ex32_t.end.hpp │ │ │ │ ├── deinterlace_blt_ex32_t.start.hpp │ │ │ │ ├── deinterlace_blt_ex_t.end.hpp │ │ │ │ ├── deinterlace_blt_ex_t.start.hpp │ │ │ │ ├── deinterlace_blt_t.end.hpp │ │ │ │ ├── deinterlace_blt_t.start.hpp │ │ │ │ ├── deinterlace_caps_t.end.hpp │ │ │ │ ├── deinterlace_caps_t.start.hpp │ │ │ │ ├── deinterlace_query_available_modes_t.end.hpp │ │ │ │ ├── deinterlace_query_available_modes_t.start.hpp │ │ │ │ ├── deinterlace_query_mode_caps_t.end.hpp │ │ │ │ ├── deinterlace_query_mode_caps_t.start.hpp │ │ │ │ ├── encrypt_protocol_header_t.end.hpp │ │ │ │ ├── encrypt_protocol_header_t.start.hpp │ │ │ │ ├── extended_format_t.end.hpp │ │ │ │ ├── extended_format_t.start.hpp │ │ │ │ ├── film_grain_characteristics_t.end.hpp │ │ │ │ ├── film_grain_characteristics_t.start.hpp │ │ │ │ ├── frequency_t.end.hpp │ │ │ │ ├── frequency_t.start.hpp │ │ │ │ ├── highlight_t.end.hpp │ │ │ │ ├── highlight_t.start.hpp │ │ │ │ ├── m_bctrl_h264_t.end.hpp │ │ │ │ ├── m_bctrl_h264_t.start.hpp │ │ │ │ ├── m_bctrl_i_host_resid_diff_1_t.end.hpp │ │ │ │ ├── m_bctrl_i_host_resid_diff_1_t.start.hpp │ │ │ │ ├── m_bctrl_i_off_host_idct_1_t.end.hpp │ │ │ │ ├── m_bctrl_i_off_host_idct_1_t.start.hpp │ │ │ │ ├── m_bctrl_p_host_resid_diff_1_t.end.hpp │ │ │ │ ├── m_bctrl_p_host_resid_diff_1_t.start.hpp │ │ │ │ ├── m_bctrl_p_off_host_idct_1_t.end.hpp │ │ │ │ ├── m_bctrl_p_off_host_idct_1_t.start.hpp │ │ │ │ ├── m_vvalue_t.end.hpp │ │ │ │ ├── m_vvalue_t.start.hpp │ │ │ │ ├── pic_entry_h264_t.end.hpp │ │ │ │ ├── pic_entry_h264_t.start.hpp │ │ │ │ ├── pic_entry_hevc_t.end.hpp │ │ │ │ ├── pic_entry_hevc_t.start.hpp │ │ │ │ ├── pic_entry_v_px_t.end.hpp │ │ │ │ ├── pic_entry_v_px_t.start.hpp │ │ │ │ ├── pic_params_h264_mvc_t.end.hpp │ │ │ │ ├── pic_params_h264_mvc_t.start.hpp │ │ │ │ ├── pic_params_h264_t.end.hpp │ │ │ │ ├── pic_params_h264_t.start.hpp │ │ │ │ ├── pic_params_hevc_t.end.hpp │ │ │ │ ├── pic_params_hevc_t.start.hpp │ │ │ │ ├── pic_params_mpeg4_part2_t.end.hpp │ │ │ │ ├── pic_params_mpeg4_part2_t.start.hpp │ │ │ │ ├── pic_params_vp8_t.end.hpp │ │ │ │ ├── pic_params_vp8_t.start.hpp │ │ │ │ ├── pic_params_vp9_t.end.hpp │ │ │ │ ├── pic_params_vp9_t.start.hpp │ │ │ │ ├── pic_resample_t.end.hpp │ │ │ │ ├── pic_resample_t.start.hpp │ │ │ │ ├── picture_parameters_t.end.hpp │ │ │ │ ├── picture_parameters_t.start.hpp │ │ │ │ ├── proc_amp_control_blt_t.end.hpp │ │ │ │ ├── proc_amp_control_blt_t.start.hpp │ │ │ │ ├── proc_amp_control_caps_t.end.hpp │ │ │ │ ├── proc_amp_control_caps_t.start.hpp │ │ │ │ ├── proc_amp_control_query_range_t.end.hpp │ │ │ │ ├── proc_amp_control_query_range_t.start.hpp │ │ │ │ ├── qmatrix_data_t.end.hpp │ │ │ │ ├── qmatrix_data_t.start.hpp │ │ │ │ ├── qmatrix_h264_t.end.hpp │ │ │ │ ├── qmatrix_h264_t.start.hpp │ │ │ │ ├── qmatrix_hevc_t.end.hpp │ │ │ │ ├── qmatrix_hevc_t.start.hpp │ │ │ │ ├── slice_h264_long_t.end.hpp │ │ │ │ ├── slice_h264_long_t.start.hpp │ │ │ │ ├── slice_h264_short_t.end.hpp │ │ │ │ ├── slice_h264_short_t.start.hpp │ │ │ │ ├── slice_hevc_short_t.end.hpp │ │ │ │ ├── slice_hevc_short_t.start.hpp │ │ │ │ ├── slice_info_t.end.hpp │ │ │ │ ├── slice_info_t.start.hpp │ │ │ │ ├── slice_v_px_short_t.end.hpp │ │ │ │ ├── slice_v_px_short_t.start.hpp │ │ │ │ ├── status_h264_t.end.hpp │ │ │ │ ├── status_h264_t.start.hpp │ │ │ │ ├── status_hevc_t.end.hpp │ │ │ │ ├── status_hevc_t.start.hpp │ │ │ │ ├── status_v_px_t.end.hpp │ │ │ │ ├── status_v_px_t.start.hpp │ │ │ │ ├── status_vc1_t.end.hpp │ │ │ │ ├── status_vc1_t.start.hpp │ │ │ │ ├── t_coef4_group_t.end.hpp │ │ │ │ ├── t_coef4_group_t.start.hpp │ │ │ │ ├── t_coef_single_t.end.hpp │ │ │ │ ├── t_coef_single_t.start.hpp │ │ │ │ ├── video_desc_t.end.hpp │ │ │ │ ├── video_desc_t.start.hpp │ │ │ │ ├── video_property_range_t.end.hpp │ │ │ │ ├── video_property_range_t.start.hpp │ │ │ │ ├── video_sample2_t.end.hpp │ │ │ │ ├── video_sample2_t.start.hpp │ │ │ │ ├── video_sample32_t.end.hpp │ │ │ │ ├── video_sample32_t.start.hpp │ │ │ │ ├── video_sample_t.end.hpp │ │ │ │ └── video_sample_t.start.hpp │ │ │ ├── nominal_range_t.hpp │ │ │ ├── pic_entry_h264_t.hpp │ │ │ ├── pic_entry_hevc_t.hpp │ │ │ ├── pic_entry_v_px_t.hpp │ │ │ ├── pic_params_h264_mvc_t.hpp │ │ │ ├── pic_params_h264_t.hpp │ │ │ ├── pic_params_hevc_t.hpp │ │ │ ├── pic_params_mpeg4_part2_t.hpp │ │ │ ├── pic_params_vp8_t.hpp │ │ │ ├── pic_params_vp9_t.hpp │ │ │ ├── pic_resample_t.hpp │ │ │ ├── picture_parameters_t.hpp │ │ │ ├── proc_amp_control_blt_t.hpp │ │ │ ├── proc_amp_control_caps_t.hpp │ │ │ ├── proc_amp_control_prop_t.hpp │ │ │ ├── proc_amp_control_query_range_t.hpp │ │ │ ├── qmatrix_data_t.hpp │ │ │ ├── qmatrix_h264_t.hpp │ │ │ ├── qmatrix_hevc_t.hpp │ │ │ ├── sample_flags_t.hpp │ │ │ ├── sample_format_t.hpp │ │ │ ├── slice_h264_long_t.hpp │ │ │ ├── slice_h264_short_t.hpp │ │ │ ├── slice_hevc_short_t.hpp │ │ │ ├── slice_info_t.hpp │ │ │ ├── slice_v_px_short_t.hpp │ │ │ ├── status_h264_t.hpp │ │ │ ├── status_hevc_t.hpp │ │ │ ├── status_v_px_t.hpp │ │ │ ├── status_vc1_t.hpp │ │ │ ├── t_coef4_group_t.hpp │ │ │ ├── t_coef_single_t.hpp │ │ │ ├── video_chroma_subsampling_t.hpp │ │ │ ├── video_desc_t.hpp │ │ │ ├── video_lighting_t.hpp │ │ │ ├── video_primaries_t.hpp │ │ │ ├── video_process_caps_t.hpp │ │ │ ├── video_property_range_t.hpp │ │ │ ├── video_sample2_t.hpp │ │ │ ├── video_sample32_t.hpp │ │ │ ├── video_sample_t.hpp │ │ │ ├── video_transfer_function_t.hpp │ │ │ └── video_transfer_matrix_t.hpp │ │ ├── efi/ │ │ │ ├── api.hpp │ │ │ ├── driver_entry_list_t.hpp │ │ │ ├── driver_entry_t.hpp │ │ │ ├── firmware_information_t.hpp │ │ │ └── magic/ │ │ │ ├── api.end.hpp │ │ │ ├── api.start.hpp │ │ │ ├── driver_entry_list_t.end.hpp │ │ │ ├── driver_entry_list_t.start.hpp │ │ │ ├── driver_entry_t.end.hpp │ │ │ ├── driver_entry_t.start.hpp │ │ │ ├── firmware_information_t.end.hpp │ │ │ └── firmware_information_t.start.hpp │ │ ├── em/ │ │ │ ├── api.hpp │ │ │ └── magic/ │ │ │ ├── api.end.hpp │ │ │ └── api.start.hpp │ │ ├── emon/ │ │ │ ├── api.hpp │ │ │ └── magic/ │ │ │ ├── api.end.hpp │ │ │ └── api.start.hpp │ │ ├── emp/ │ │ │ ├── api.hpp │ │ │ └── magic/ │ │ │ ├── api.end.hpp │ │ │ └── api.start.hpp │ │ ├── etw/ │ │ │ ├── all_possible_notify_routines_t.hpp │ │ │ ├── anti_starvation_boost_event_t.hpp │ │ │ ├── apc_entry_t.hpp │ │ │ ├── api.hpp │ │ │ ├── autoboost_clear_priority_floor_event_t.hpp │ │ │ ├── autoboost_no_entries_event_t.hpp │ │ │ ├── autoboost_set_priority_floor_event_t.hpp │ │ │ ├── boot_config_t.hpp │ │ │ ├── buffer_context_t.hpp │ │ │ ├── buffer_queue_t.hpp │ │ │ ├── buffer_state_t.hpp │ │ │ ├── cancel_ktimer2_event_t.hpp │ │ │ ├── cancel_timer_event_t.hpp │ │ │ ├── clock_configuration_event_t.hpp │ │ │ ├── clock_state_change_event_t.hpp │ │ │ ├── clock_time_update_t.hpp │ │ │ ├── compression_resumption_mode_t.hpp │ │ │ ├── counters_t.hpp │ │ │ ├── coverage_sampler_bloom_filter_t.hpp │ │ │ ├── coverage_sampler_bloom_info_t.hpp │ │ │ ├── coverage_sampler_create_info_t.hpp │ │ │ ├── coverage_sampler_data_t.hpp │ │ │ ├── coverage_sampler_information_class_t.hpp │ │ │ ├── coverage_sampler_module_t.hpp │ │ │ ├── coverage_sampler_option_flags_t.hpp │ │ │ ├── coverage_sampler_options_t.hpp │ │ │ ├── coverage_sampler_perf_info_t.hpp │ │ │ ├── coverage_sampler_perf_stats_t.hpp │ │ │ ├── coverage_sampler_query_info_t.hpp │ │ │ ├── coverage_sampler_sample_t.hpp │ │ │ ├── coverage_sampler_stats_t.hpp │ │ │ ├── coverage_sampler_status_info_t.hpp │ │ │ ├── coverage_sampler_status_t.hpp │ │ │ ├── cpu_cache_flush_event_t.hpp │ │ │ ├── create_handle_event_t.hpp │ │ │ ├── createdelete_object_event_t.hpp │ │ │ ├── critsec_event_collision_t.hpp │ │ │ ├── critsec_event_init_t.hpp │ │ │ ├── debug_print_event_t.hpp │ │ │ ├── debugid_tracking_entry_t.hpp │ │ │ ├── decode_control_entry_t.hpp │ │ │ ├── dfss_release_thread_on_idle_t.hpp │ │ │ ├── dfss_start_new_interval_t.hpp │ │ │ ├── disable_ktimer2_event_t.hpp │ │ │ ├── diskio_flush_buffers_v2_t.hpp │ │ │ ├── diskio_flush_buffers_v3_t.hpp │ │ │ ├── diskio_readwrite_v2_t.hpp │ │ │ ├── diskio_readwrite_v3_t.hpp │ │ │ ├── duplicate_handle_event_t.hpp │ │ │ ├── event_callback_context_t.hpp │ │ │ ├── filter_event_name_data_t.hpp │ │ │ ├── filter_header_t.hpp │ │ │ ├── filter_pid_t.hpp │ │ │ ├── filter_string_token_element_t.hpp │ │ │ ├── filter_string_token_t.hpp │ │ │ ├── finalize_ktimer2_event_t.hpp │ │ │ ├── guid_entry_t.hpp │ │ │ ├── guid_type_t.hpp │ │ │ ├── hash_bucket_t.hpp │ │ │ ├── header_type_t.hpp │ │ │ ├── heap_event_alloc_t.hpp │ │ │ ├── heap_event_common_t.hpp │ │ │ ├── heap_event_contraction_t.hpp │ │ │ ├── heap_event_create_t.hpp │ │ │ ├── heap_event_expansion_t.hpp │ │ │ ├── heap_event_free_t.hpp │ │ │ ├── heap_event_realloc_t.hpp │ │ │ ├── heap_event_rundown_range_t.hpp │ │ │ ├── heap_event_rundown_t.hpp │ │ │ ├── heap_event_snapshot_t.hpp │ │ │ ├── hw_trace_ext_interface_t.hpp │ │ │ ├── ideal_processor_event_t.hpp │ │ │ ├── ipt_support_t.hpp │ │ │ ├── kernel_header_extension_t.hpp │ │ │ ├── kernel_trace_timestamp_t.hpp │ │ │ ├── kqueue_dequeue_event_t.hpp │ │ │ ├── kqueue_enqueue_event_t.hpp │ │ │ ├── last_dropped_event_struct_t.hpp │ │ │ ├── last_enable_info_t.hpp │ │ │ ├── lbr_entry_t.hpp │ │ │ ├── lbr_support_t.hpp │ │ │ ├── logger_handle_t.hpp │ │ │ ├── magic/ │ │ │ │ ├── all_possible_notify_routines_t.end.hpp │ │ │ │ ├── all_possible_notify_routines_t.start.hpp │ │ │ │ ├── anti_starvation_boost_event_t.end.hpp │ │ │ │ ├── anti_starvation_boost_event_t.start.hpp │ │ │ │ ├── apc_entry_t.end.hpp │ │ │ │ ├── apc_entry_t.start.hpp │ │ │ │ ├── api.end.hpp │ │ │ │ ├── api.start.hpp │ │ │ │ ├── autoboost_clear_priority_floor_event_t.end.hpp │ │ │ │ ├── autoboost_clear_priority_floor_event_t.start.hpp │ │ │ │ ├── autoboost_no_entries_event_t.end.hpp │ │ │ │ ├── autoboost_no_entries_event_t.start.hpp │ │ │ │ ├── autoboost_set_priority_floor_event_t.end.hpp │ │ │ │ ├── autoboost_set_priority_floor_event_t.start.hpp │ │ │ │ ├── boot_config_t.end.hpp │ │ │ │ ├── boot_config_t.start.hpp │ │ │ │ ├── buffer_context_t.end.hpp │ │ │ │ ├── buffer_context_t.start.hpp │ │ │ │ ├── buffer_queue_t.end.hpp │ │ │ │ ├── buffer_queue_t.start.hpp │ │ │ │ ├── cancel_ktimer2_event_t.end.hpp │ │ │ │ ├── cancel_ktimer2_event_t.start.hpp │ │ │ │ ├── cancel_timer_event_t.end.hpp │ │ │ │ ├── cancel_timer_event_t.start.hpp │ │ │ │ ├── clock_configuration_event_t.end.hpp │ │ │ │ ├── clock_configuration_event_t.start.hpp │ │ │ │ ├── clock_state_change_event_t.end.hpp │ │ │ │ ├── clock_state_change_event_t.start.hpp │ │ │ │ ├── clock_time_update_t.end.hpp │ │ │ │ ├── clock_time_update_t.start.hpp │ │ │ │ ├── counters_t.end.hpp │ │ │ │ ├── counters_t.start.hpp │ │ │ │ ├── coverage_sampler_bloom_filter_t.end.hpp │ │ │ │ ├── coverage_sampler_bloom_filter_t.start.hpp │ │ │ │ ├── coverage_sampler_bloom_info_t.end.hpp │ │ │ │ ├── coverage_sampler_bloom_info_t.start.hpp │ │ │ │ ├── coverage_sampler_create_info_t.end.hpp │ │ │ │ ├── coverage_sampler_create_info_t.start.hpp │ │ │ │ ├── coverage_sampler_data_t.end.hpp │ │ │ │ ├── coverage_sampler_data_t.start.hpp │ │ │ │ ├── coverage_sampler_module_t.end.hpp │ │ │ │ ├── coverage_sampler_module_t.start.hpp │ │ │ │ ├── coverage_sampler_option_flags_t.end.hpp │ │ │ │ ├── coverage_sampler_option_flags_t.start.hpp │ │ │ │ ├── coverage_sampler_options_t.end.hpp │ │ │ │ ├── coverage_sampler_options_t.start.hpp │ │ │ │ ├── coverage_sampler_perf_info_t.end.hpp │ │ │ │ ├── coverage_sampler_perf_info_t.start.hpp │ │ │ │ ├── coverage_sampler_perf_stats_t.end.hpp │ │ │ │ ├── coverage_sampler_perf_stats_t.start.hpp │ │ │ │ ├── coverage_sampler_query_info_t.end.hpp │ │ │ │ ├── coverage_sampler_query_info_t.start.hpp │ │ │ │ ├── coverage_sampler_sample_t.end.hpp │ │ │ │ ├── coverage_sampler_sample_t.start.hpp │ │ │ │ ├── coverage_sampler_stats_t.end.hpp │ │ │ │ ├── coverage_sampler_stats_t.start.hpp │ │ │ │ ├── coverage_sampler_status_info_t.end.hpp │ │ │ │ ├── coverage_sampler_status_info_t.start.hpp │ │ │ │ ├── coverage_sampler_status_t.end.hpp │ │ │ │ ├── coverage_sampler_status_t.start.hpp │ │ │ │ ├── cpu_cache_flush_event_t.end.hpp │ │ │ │ ├── cpu_cache_flush_event_t.start.hpp │ │ │ │ ├── create_handle_event_t.end.hpp │ │ │ │ ├── create_handle_event_t.start.hpp │ │ │ │ ├── createdelete_object_event_t.end.hpp │ │ │ │ ├── createdelete_object_event_t.start.hpp │ │ │ │ ├── critsec_event_collision_t.end.hpp │ │ │ │ ├── critsec_event_collision_t.start.hpp │ │ │ │ ├── critsec_event_init_t.end.hpp │ │ │ │ ├── critsec_event_init_t.start.hpp │ │ │ │ ├── debug_print_event_t.end.hpp │ │ │ │ ├── debug_print_event_t.start.hpp │ │ │ │ ├── debugid_tracking_entry_t.end.hpp │ │ │ │ ├── debugid_tracking_entry_t.start.hpp │ │ │ │ ├── decode_control_entry_t.end.hpp │ │ │ │ ├── decode_control_entry_t.start.hpp │ │ │ │ ├── dfss_release_thread_on_idle_t.end.hpp │ │ │ │ ├── dfss_release_thread_on_idle_t.start.hpp │ │ │ │ ├── dfss_start_new_interval_t.end.hpp │ │ │ │ ├── dfss_start_new_interval_t.start.hpp │ │ │ │ ├── disable_ktimer2_event_t.end.hpp │ │ │ │ ├── disable_ktimer2_event_t.start.hpp │ │ │ │ ├── diskio_flush_buffers_v2_t.end.hpp │ │ │ │ ├── diskio_flush_buffers_v2_t.start.hpp │ │ │ │ ├── diskio_flush_buffers_v3_t.end.hpp │ │ │ │ ├── diskio_flush_buffers_v3_t.start.hpp │ │ │ │ ├── diskio_readwrite_v2_t.end.hpp │ │ │ │ ├── diskio_readwrite_v2_t.start.hpp │ │ │ │ ├── diskio_readwrite_v3_t.end.hpp │ │ │ │ ├── diskio_readwrite_v3_t.start.hpp │ │ │ │ ├── duplicate_handle_event_t.end.hpp │ │ │ │ ├── duplicate_handle_event_t.start.hpp │ │ │ │ ├── filter_event_name_data_t.end.hpp │ │ │ │ ├── filter_event_name_data_t.start.hpp │ │ │ │ ├── filter_header_t.end.hpp │ │ │ │ ├── filter_header_t.start.hpp │ │ │ │ ├── filter_pid_t.end.hpp │ │ │ │ ├── filter_pid_t.start.hpp │ │ │ │ ├── filter_string_token_element_t.end.hpp │ │ │ │ ├── filter_string_token_element_t.start.hpp │ │ │ │ ├── filter_string_token_t.end.hpp │ │ │ │ ├── filter_string_token_t.start.hpp │ │ │ │ ├── finalize_ktimer2_event_t.end.hpp │ │ │ │ ├── finalize_ktimer2_event_t.start.hpp │ │ │ │ ├── guid_entry_t.end.hpp │ │ │ │ ├── guid_entry_t.start.hpp │ │ │ │ ├── hash_bucket_t.end.hpp │ │ │ │ ├── hash_bucket_t.start.hpp │ │ │ │ ├── heap_event_alloc_t.end.hpp │ │ │ │ ├── heap_event_alloc_t.start.hpp │ │ │ │ ├── heap_event_common_t.end.hpp │ │ │ │ ├── heap_event_common_t.start.hpp │ │ │ │ ├── heap_event_contraction_t.end.hpp │ │ │ │ ├── heap_event_contraction_t.start.hpp │ │ │ │ ├── heap_event_create_t.end.hpp │ │ │ │ ├── heap_event_create_t.start.hpp │ │ │ │ ├── heap_event_expansion_t.end.hpp │ │ │ │ ├── heap_event_expansion_t.start.hpp │ │ │ │ ├── heap_event_free_t.end.hpp │ │ │ │ ├── heap_event_free_t.start.hpp │ │ │ │ ├── heap_event_realloc_t.end.hpp │ │ │ │ ├── heap_event_realloc_t.start.hpp │ │ │ │ ├── heap_event_rundown_range_t.end.hpp │ │ │ │ ├── heap_event_rundown_range_t.start.hpp │ │ │ │ ├── heap_event_rundown_t.end.hpp │ │ │ │ ├── heap_event_rundown_t.start.hpp │ │ │ │ ├── heap_event_snapshot_t.end.hpp │ │ │ │ ├── heap_event_snapshot_t.start.hpp │ │ │ │ ├── hw_trace_ext_interface_t.end.hpp │ │ │ │ ├── hw_trace_ext_interface_t.start.hpp │ │ │ │ ├── ideal_processor_event_t.end.hpp │ │ │ │ ├── ideal_processor_event_t.start.hpp │ │ │ │ ├── ipt_support_t.end.hpp │ │ │ │ ├── ipt_support_t.start.hpp │ │ │ │ ├── kernel_header_extension_t.end.hpp │ │ │ │ ├── kernel_header_extension_t.start.hpp │ │ │ │ ├── kernel_trace_timestamp_t.end.hpp │ │ │ │ ├── kernel_trace_timestamp_t.start.hpp │ │ │ │ ├── kqueue_dequeue_event_t.end.hpp │ │ │ │ ├── kqueue_dequeue_event_t.start.hpp │ │ │ │ ├── kqueue_enqueue_event_t.end.hpp │ │ │ │ ├── kqueue_enqueue_event_t.start.hpp │ │ │ │ ├── last_dropped_event_struct_t.end.hpp │ │ │ │ ├── last_dropped_event_struct_t.start.hpp │ │ │ │ ├── last_enable_info_t.end.hpp │ │ │ │ ├── last_enable_info_t.start.hpp │ │ │ │ ├── lbr_entry_t.end.hpp │ │ │ │ ├── lbr_entry_t.start.hpp │ │ │ │ ├── lbr_support_t.end.hpp │ │ │ │ ├── lbr_support_t.start.hpp │ │ │ │ ├── logger_handle_t.end.hpp │ │ │ │ ├── logger_handle_t.start.hpp │ │ │ │ ├── notification_header_t.end.hpp │ │ │ │ ├── notification_header_t.start.hpp │ │ │ │ ├── object_handle_event_t.end.hpp │ │ │ │ ├── object_handle_event_t.start.hpp │ │ │ │ ├── object_type_event_t.end.hpp │ │ │ │ ├── object_type_event_t.start.hpp │ │ │ │ ├── opticalio_flush_buffers_t.end.hpp │ │ │ │ ├── opticalio_flush_buffers_t.start.hpp │ │ │ │ ├── opticalio_init_t.end.hpp │ │ │ │ ├── opticalio_init_t.start.hpp │ │ │ │ ├── opticalio_readwrite_t.end.hpp │ │ │ │ ├── opticalio_readwrite_t.start.hpp │ │ │ │ ├── partition_context_t.end.hpp │ │ │ │ ├── partition_context_t.start.hpp │ │ │ │ ├── partition_info_extension_t.end.hpp │ │ │ │ ├── partition_info_extension_t.start.hpp │ │ │ │ ├── partition_info_extension_v2_t.end.hpp │ │ │ │ ├── partition_info_extension_v2_t.start.hpp │ │ │ │ ├── payload_filter_t.end.hpp │ │ │ │ ├── payload_filter_t.start.hpp │ │ │ │ ├── per_session_quota_t.end.hpp │ │ │ │ ├── per_session_quota_t.start.hpp │ │ │ │ ├── perf_counters_t.end.hpp │ │ │ │ ├── perf_counters_t.start.hpp │ │ │ │ ├── pmc_counter_owner_t.end.hpp │ │ │ │ ├── pmc_counter_owner_t.start.hpp │ │ │ │ ├── pmc_counter_ownership_status_t.end.hpp │ │ │ │ ├── pmc_counter_ownership_status_t.start.hpp │ │ │ │ ├── pmc_support_t.end.hpp │ │ │ │ ├── pmc_support_t.start.hpp │ │ │ │ ├── pool_event_t.end.hpp │ │ │ │ ├── pool_event_t.start.hpp │ │ │ │ ├── priority_event_t.end.hpp │ │ │ │ ├── priority_event_t.start.hpp │ │ │ │ ├── priv_handle_demux_table_t.end.hpp │ │ │ │ ├── priv_handle_demux_table_t.start.hpp │ │ │ │ ├── provider_traits_t.end.hpp │ │ │ │ ├── provider_traits_t.start.hpp │ │ │ │ ├── queue_entry_t.end.hpp │ │ │ │ ├── queue_entry_t.start.hpp │ │ │ │ ├── ready_thread_event_t.end.hpp │ │ │ │ ├── ready_thread_event_t.start.hpp │ │ │ │ ├── realtime_consumer_t.end.hpp │ │ │ │ ├── realtime_consumer_t.start.hpp │ │ │ │ ├── ref_clock_t.end.hpp │ │ │ │ ├── ref_clock_t.start.hpp │ │ │ │ ├── refderef_object_event_t.end.hpp │ │ │ │ ├── refderef_object_event_t.start.hpp │ │ │ │ ├── reg_entry_t.end.hpp │ │ │ │ ├── reg_entry_t.start.hpp │ │ │ │ ├── regnotif_register_t.end.hpp │ │ │ │ ├── regnotif_register_t.start.hpp │ │ │ │ ├── reply_queue_t.end.hpp │ │ │ │ ├── reply_queue_t.start.hpp │ │ │ │ ├── session_notification_packet_t.end.hpp │ │ │ │ ├── session_notification_packet_t.start.hpp │ │ │ │ ├── session_perf_counters_t.end.hpp │ │ │ │ ├── session_perf_counters_t.start.hpp │ │ │ │ ├── set_ktimer2_event_t.end.hpp │ │ │ │ ├── set_ktimer2_event_t.start.hpp │ │ │ │ ├── set_mark_information_t.end.hpp │ │ │ │ ├── set_mark_information_t.start.hpp │ │ │ │ ├── set_timer_event_t.end.hpp │ │ │ │ ├── set_timer_event_t.start.hpp │ │ │ │ ├── silo_tracing_block_t.end.hpp │ │ │ │ ├── silo_tracing_block_t.start.hpp │ │ │ │ ├── silodriverstate_t.end.hpp │ │ │ │ ├── silodriverstate_t.start.hpp │ │ │ │ ├── stack_caching_config_t.end.hpp │ │ │ │ ├── stack_caching_config_t.start.hpp │ │ │ │ ├── stack_trace_block_t.end.hpp │ │ │ │ ├── stack_trace_block_t.start.hpp │ │ │ │ ├── system_logger_settings_t.end.hpp │ │ │ │ ├── system_logger_settings_t.start.hpp │ │ │ │ ├── system_logger_t.end.hpp │ │ │ │ ├── system_logger_t.start.hpp │ │ │ │ ├── systemtime_t.end.hpp │ │ │ │ ├── systemtime_t.start.hpp │ │ │ │ ├── thread_affinity_event_t.end.hpp │ │ │ │ ├── thread_affinity_event_t.start.hpp │ │ │ │ ├── thread_event_subprocesstag_t.end.hpp │ │ │ │ ├── thread_event_subprocesstag_t.start.hpp │ │ │ │ ├── thread_set_name_event_t.end.hpp │ │ │ │ ├── thread_set_name_event_t.start.hpp │ │ │ │ ├── timer_expiration_event_t.end.hpp │ │ │ │ ├── timer_expiration_event_t.start.hpp │ │ │ │ ├── timer_expiration_start_event_t.end.hpp │ │ │ │ ├── timer_expiration_start_event_t.start.hpp │ │ │ │ ├── tp_event_callback_cancel_t.end.hpp │ │ │ │ ├── tp_event_callback_cancel_t.start.hpp │ │ │ │ ├── tp_event_callback_enqueue_t.end.hpp │ │ │ │ ├── tp_event_callback_enqueue_t.start.hpp │ │ │ │ ├── tp_event_callback_start_t.end.hpp │ │ │ │ ├── tp_event_callback_start_t.start.hpp │ │ │ │ ├── tp_event_pool_close_t.end.hpp │ │ │ │ ├── tp_event_pool_close_t.start.hpp │ │ │ │ ├── tp_event_pool_create_t.end.hpp │ │ │ │ ├── tp_event_pool_create_t.start.hpp │ │ │ │ ├── tp_event_pool_th_max_set_t.end.hpp │ │ │ │ ├── tp_event_pool_th_max_set_t.start.hpp │ │ │ │ ├── tp_event_pool_th_min_set_t.end.hpp │ │ │ │ ├── tp_event_pool_th_min_set_t.start.hpp │ │ │ │ ├── tp_event_timer_cancel_nttimer_t.end.hpp │ │ │ │ ├── tp_event_timer_cancel_nttimer_t.start.hpp │ │ │ │ ├── tp_event_timer_cancelled_t.end.hpp │ │ │ │ ├── tp_event_timer_cancelled_t.start.hpp │ │ │ │ ├── tp_event_timer_expiration_begin_t.end.hpp │ │ │ │ ├── tp_event_timer_expiration_begin_t.start.hpp │ │ │ │ ├── tp_event_timer_expiration_end_t.end.hpp │ │ │ │ ├── tp_event_timer_expiration_end_t.start.hpp │ │ │ │ ├── tp_event_timer_expiration_t.end.hpp │ │ │ │ ├── tp_event_timer_expiration_t.start.hpp │ │ │ │ ├── tp_event_timer_set_nttimer_t.end.hpp │ │ │ │ ├── tp_event_timer_set_nttimer_t.start.hpp │ │ │ │ ├── tp_event_timer_set_t.end.hpp │ │ │ │ ├── tp_event_timer_set_t.start.hpp │ │ │ │ ├── tp_event_worker_numanode_switch_t.end.hpp │ │ │ │ ├── tp_event_worker_numanode_switch_t.start.hpp │ │ │ │ ├── trace_partition_information_t.end.hpp │ │ │ │ ├── trace_partition_information_t.start.hpp │ │ │ │ ├── trace_partition_information_v2_t.end.hpp │ │ │ │ ├── trace_partition_information_v2_t.start.hpp │ │ │ │ ├── trace_session_settings_t.end.hpp │ │ │ │ ├── trace_session_settings_t.start.hpp │ │ │ │ ├── umgl_key_t.end.hpp │ │ │ │ ├── umgl_key_t.start.hpp │ │ │ │ ├── ums_event_context_switch_t.end.hpp │ │ │ │ ├── ums_event_context_switch_t.start.hpp │ │ │ │ ├── ums_event_directed_switch_end_t.end.hpp │ │ │ │ ├── ums_event_directed_switch_end_t.start.hpp │ │ │ │ ├── ums_event_directed_switch_start_t.end.hpp │ │ │ │ ├── ums_event_directed_switch_start_t.start.hpp │ │ │ │ ├── ums_event_disassociate_t.end.hpp │ │ │ │ ├── ums_event_disassociate_t.start.hpp │ │ │ │ ├── ums_event_park_t.end.hpp │ │ │ │ ├── ums_event_park_t.start.hpp │ │ │ │ ├── wake_counter_event_t.end.hpp │ │ │ │ ├── wake_counter_event_t.start.hpp │ │ │ │ ├── wmitrace_work_t.end.hpp │ │ │ │ ├── wmitrace_work_t.start.hpp │ │ │ │ ├── wnf_event_callback_t.end.hpp │ │ │ │ ├── wnf_event_callback_t.start.hpp │ │ │ │ ├── wnf_event_name_sub_rundown_t.end.hpp │ │ │ │ ├── wnf_event_name_sub_rundown_t.start.hpp │ │ │ │ ├── wnf_event_publish_t.end.hpp │ │ │ │ ├── wnf_event_publish_t.start.hpp │ │ │ │ ├── wnf_event_subscribe_t.end.hpp │ │ │ │ └── wnf_event_subscribe_t.start.hpp │ │ │ ├── notification_header_t.hpp │ │ │ ├── notification_type_t.hpp │ │ │ ├── object_handle_event_t.hpp │ │ │ ├── object_type_event_t.hpp │ │ │ ├── opticalio_flush_buffers_t.hpp │ │ │ ├── opticalio_init_t.hpp │ │ │ ├── opticalio_readwrite_t.hpp │ │ │ ├── partition_context_t.hpp │ │ │ ├── partition_info_extension_t.hpp │ │ │ ├── partition_info_extension_v2_t.hpp │ │ │ ├── payload_filter_t.hpp │ │ │ ├── per_session_quota_t.hpp │ │ │ ├── perf_counters_t.hpp │ │ │ ├── perfect_hash_function_t.hpp │ │ │ ├── perfect_hash_function_type_t.hpp │ │ │ ├── periodic_timer_state_t.hpp │ │ │ ├── pmc_counter_owner_t.hpp │ │ │ ├── pmc_counter_owner_type_t.hpp │ │ │ ├── pmc_counter_ownership_status_t.hpp │ │ │ ├── pmc_support_t.hpp │ │ │ ├── pool_event_t.hpp │ │ │ ├── priority_event_t.hpp │ │ │ ├── priv_handle_demux_table_t.hpp │ │ │ ├── process_handle_info_type_t.hpp │ │ │ ├── provider_trait_type_t.hpp │ │ │ ├── provider_traits_t.hpp │ │ │ ├── queue_entry_t.hpp │ │ │ ├── ready_thread_event_t.hpp │ │ │ ├── realtime_consumer_t.hpp │ │ │ ├── ref_clock_t.hpp │ │ │ ├── refderef_object_event_t.hpp │ │ │ ├── reg_entry_t.hpp │ │ │ ├── regnotif_register_t.hpp │ │ │ ├── reply_queue_t.hpp │ │ │ ├── rt_event_loss_t.hpp │ │ │ ├── session_notification_packet_t.hpp │ │ │ ├── session_notification_type_t.hpp │ │ │ ├── session_perf_counters_t.hpp │ │ │ ├── set_ktimer2_event_t.hpp │ │ │ ├── set_mark_information_t.hpp │ │ │ ├── set_timer_event_t.hpp │ │ │ ├── silo_tracing_block_t.hpp │ │ │ ├── silodriverstate_t.hpp │ │ │ ├── soft_restart_context_t.hpp │ │ │ ├── stack_cache_t.hpp │ │ │ ├── stack_caching_config_t.hpp │ │ │ ├── stack_trace_block_t.hpp │ │ │ ├── string_token_type_t.hpp │ │ │ ├── system_logger_settings_t.hpp │ │ │ ├── system_logger_t.hpp │ │ │ ├── systemtime_t.hpp │ │ │ ├── thread_affinity_event_t.hpp │ │ │ ├── thread_event_subprocesstag_t.hpp │ │ │ ├── thread_set_name_event_t.hpp │ │ │ ├── timer_expiration_event_t.hpp │ │ │ ├── timer_expiration_start_event_t.hpp │ │ │ ├── tp_event_callback_cancel_t.hpp │ │ │ ├── tp_event_callback_enqueue_t.hpp │ │ │ ├── tp_event_callback_start_t.hpp │ │ │ ├── tp_event_pool_close_t.hpp │ │ │ ├── tp_event_pool_create_t.hpp │ │ │ ├── tp_event_pool_th_max_set_t.hpp │ │ │ ├── tp_event_pool_th_min_set_t.hpp │ │ │ ├── tp_event_timer_cancel_nttimer_t.hpp │ │ │ ├── tp_event_timer_cancelled_t.hpp │ │ │ ├── tp_event_timer_expiration_begin_t.hpp │ │ │ ├── tp_event_timer_expiration_end_t.hpp │ │ │ ├── tp_event_timer_expiration_t.hpp │ │ │ ├── tp_event_timer_set_nttimer_t.hpp │ │ │ ├── tp_event_timer_set_t.hpp │ │ │ ├── tp_event_worker_numanode_switch_t.hpp │ │ │ ├── trace_partition_information_t.hpp │ │ │ ├── trace_partition_information_v2_t.hpp │ │ │ ├── trace_session_settings_t.hpp │ │ │ ├── umgl_key_t.hpp │ │ │ ├── ums_event_context_switch_t.hpp │ │ │ ├── ums_event_directed_switch_end_t.hpp │ │ │ ├── ums_event_directed_switch_start_t.hpp │ │ │ ├── ums_event_disassociate_t.hpp │ │ │ ├── ums_event_park_t.hpp │ │ │ ├── wake_counter_event_t.hpp │ │ │ ├── wmitrace_work_t.hpp │ │ │ ├── wnf_event_callback_t.hpp │ │ │ ├── wnf_event_name_sub_rundown_t.hpp │ │ │ ├── wnf_event_publish_t.hpp │ │ │ └── wnf_event_subscribe_t.hpp │ │ ├── etwi/ │ │ │ ├── coverage_sampler_information_t.hpp │ │ │ ├── executive_resource_information_t.hpp │ │ │ ├── groupmask_information_t.hpp │ │ │ ├── header_t.hpp │ │ │ ├── heap_tracing_information_t.hpp │ │ │ ├── information_class_t.hpp │ │ │ ├── ipt_configuration_information_t.hpp │ │ │ ├── lbr_configuration_information_t.hpp │ │ │ ├── logfilea_t.hpp │ │ │ ├── logfilew_t.hpp │ │ │ ├── magic/ │ │ │ │ ├── coverage_sampler_information_t.end.hpp │ │ │ │ ├── coverage_sampler_information_t.start.hpp │ │ │ │ ├── executive_resource_information_t.end.hpp │ │ │ │ ├── executive_resource_information_t.start.hpp │ │ │ │ ├── groupmask_information_t.end.hpp │ │ │ │ ├── groupmask_information_t.start.hpp │ │ │ │ ├── header_t.end.hpp │ │ │ │ ├── header_t.start.hpp │ │ │ │ ├── heap_tracing_information_t.end.hpp │ │ │ │ ├── heap_tracing_information_t.start.hpp │ │ │ │ ├── ipt_configuration_information_t.end.hpp │ │ │ │ ├── ipt_configuration_information_t.start.hpp │ │ │ │ ├── lbr_configuration_information_t.end.hpp │ │ │ │ ├── lbr_configuration_information_t.start.hpp │ │ │ │ ├── logfilea_t.end.hpp │ │ │ │ ├── logfilea_t.start.hpp │ │ │ │ ├── logfilew_t.end.hpp │ │ │ │ ├── logfilew_t.start.hpp │ │ │ │ ├── performance_information_t.end.hpp │ │ │ │ ├── performance_information_t.start.hpp │ │ │ │ ├── profile_add_information_t.end.hpp │ │ │ │ ├── profile_add_information_t.start.hpp │ │ │ │ ├── profile_add_information_v2_t.end.hpp │ │ │ │ ├── profile_add_information_v2_t.start.hpp │ │ │ │ ├── profile_counter_information_t.end.hpp │ │ │ │ ├── profile_counter_information_t.start.hpp │ │ │ │ ├── profile_list_information_t.end.hpp │ │ │ │ ├── profile_list_information_t.start.hpp │ │ │ │ ├── profile_remove_information_t.end.hpp │ │ │ │ ├── profile_remove_information_t.start.hpp │ │ │ │ ├── properties_t.end.hpp │ │ │ │ ├── properties_t.start.hpp │ │ │ │ ├── properties_v2_t.end.hpp │ │ │ │ ├── properties_v2_t.start.hpp │ │ │ │ ├── session_security_information_t.end.hpp │ │ │ │ ├── session_security_information_t.start.hpp │ │ │ │ ├── soft_restart_information_t.end.hpp │ │ │ │ ├── soft_restart_information_t.start.hpp │ │ │ │ ├── spinlock_information_t.end.hpp │ │ │ │ ├── spinlock_information_t.start.hpp │ │ │ │ ├── spinlock_information_v1_t.end.hpp │ │ │ │ ├── spinlock_information_v1_t.start.hpp │ │ │ │ ├── stack_caching_information_t.end.hpp │ │ │ │ ├── stack_caching_information_t.start.hpp │ │ │ │ ├── system_event_information_t.end.hpp │ │ │ │ ├── system_event_information_t.start.hpp │ │ │ │ ├── tag_filter_information_t.end.hpp │ │ │ │ ├── tag_filter_information_t.start.hpp │ │ │ │ ├── time_profile_information_t.end.hpp │ │ │ │ ├── time_profile_information_t.start.hpp │ │ │ │ ├── version_information_t.end.hpp │ │ │ │ └── version_information_t.start.hpp │ │ │ ├── performance_information_t.hpp │ │ │ ├── profile_add_information_t.hpp │ │ │ ├── profile_add_information_v2_t.hpp │ │ │ ├── profile_counter_information_t.hpp │ │ │ ├── profile_list_information_t.hpp │ │ │ ├── profile_remove_information_t.hpp │ │ │ ├── properties_t.hpp │ │ │ ├── properties_v2_t.hpp │ │ │ ├── session_security_information_t.hpp │ │ │ ├── soft_restart_information_t.hpp │ │ │ ├── spinlock_information_t.hpp │ │ │ ├── spinlock_information_v1_t.hpp │ │ │ ├── stack_caching_information_t.hpp │ │ │ ├── system_event_information_t.hpp │ │ │ ├── tag_filter_information_t.hpp │ │ │ ├── time_profile_information_t.hpp │ │ │ └── version_information_t.hpp │ │ ├── etwp/ │ │ │ ├── api.hpp │ │ │ ├── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ ├── api.start.hpp │ │ │ │ ├── notification_header_t.end.hpp │ │ │ │ └── notification_header_t.start.hpp │ │ │ └── notification_header_t.hpp │ │ ├── ex/ │ │ │ ├── api.hpp │ │ │ ├── balance_object_t.hpp │ │ │ ├── boot_device_handle_t.hpp │ │ │ ├── boot_device_registration_t.hpp │ │ │ ├── device_queue_entry_t.hpp │ │ │ ├── extension_t.hpp │ │ │ ├── fast_ref_t.hpp │ │ │ ├── gen_random_domain_t.hpp │ │ │ ├── heap_pool_node_t.hpp │ │ │ ├── heap_session_state_t.hpp │ │ │ ├── heap_type_t.hpp │ │ │ ├── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ ├── api.start.hpp │ │ │ │ ├── boot_device_registration_t.end.hpp │ │ │ │ ├── boot_device_registration_t.start.hpp │ │ │ │ ├── device_queue_entry_t.end.hpp │ │ │ │ ├── device_queue_entry_t.start.hpp │ │ │ │ ├── fast_ref_t.end.hpp │ │ │ │ ├── fast_ref_t.start.hpp │ │ │ │ ├── heap_pool_node_t.end.hpp │ │ │ │ ├── heap_pool_node_t.start.hpp │ │ │ │ ├── heap_session_state_t.end.hpp │ │ │ │ ├── heap_session_state_t.start.hpp │ │ │ │ ├── partition_t.end.hpp │ │ │ │ ├── partition_t.start.hpp │ │ │ │ ├── pool_heap_manager_state_t.end.hpp │ │ │ │ ├── pool_heap_manager_state_t.start.hpp │ │ │ │ ├── push_lock_auto_expand_state_t.end.hpp │ │ │ │ ├── push_lock_auto_expand_state_t.start.hpp │ │ │ │ ├── push_lock_auto_expand_t.end.hpp │ │ │ │ ├── push_lock_auto_expand_t.start.hpp │ │ │ │ ├── push_lock_cache_aware_legacy_t.end.hpp │ │ │ │ ├── push_lock_cache_aware_legacy_t.start.hpp │ │ │ │ ├── push_lock_t.end.hpp │ │ │ │ ├── push_lock_t.start.hpp │ │ │ │ ├── rundown_ref_cache_aware_t.end.hpp │ │ │ │ ├── rundown_ref_cache_aware_t.start.hpp │ │ │ │ ├── rundown_ref_t.end.hpp │ │ │ │ ├── rundown_ref_t.start.hpp │ │ │ │ ├── timezone_state_t.end.hpp │ │ │ │ ├── timezone_state_t.start.hpp │ │ │ │ ├── work_queue_manager_t.end.hpp │ │ │ │ ├── work_queue_manager_t.start.hpp │ │ │ │ ├── work_queue_t.end.hpp │ │ │ │ └── work_queue_t.start.hpp │ │ │ ├── partition_t.hpp │ │ │ ├── pool_heap_manager_state_t.hpp │ │ │ ├── pool_priority_t.hpp │ │ │ ├── push_lock_auto_expand_state_t.hpp │ │ │ ├── push_lock_auto_expand_t.hpp │ │ │ ├── push_lock_cache_aware_legacy_t.hpp │ │ │ ├── push_lock_t.hpp │ │ │ ├── rundown_ref_cache_aware_t.hpp │ │ │ ├── rundown_ref_t.hpp │ │ │ ├── timer_t.hpp │ │ │ ├── timezone_state_t.hpp │ │ │ ├── wnf_subscription_t.hpp │ │ │ ├── work_queue_manager_t.hpp │ │ │ └── work_queue_t.hpp │ │ ├── expi/ │ │ │ ├── api.hpp │ │ │ ├── license_state_t.hpp │ │ │ ├── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ ├── api.start.hpp │ │ │ │ ├── pulled_file_table_t.end.hpp │ │ │ │ └── pulled_file_table_t.start.hpp │ │ │ └── pulled_file_table_t.hpp │ │ ├── ext/ │ │ │ ├── api.hpp │ │ │ ├── delete_parameters_t.hpp │ │ │ ├── env_spinlock_t.hpp │ │ │ ├── iommu_address_translation_policy_t.hpp │ │ │ ├── iommu_capabilities_t.hpp │ │ │ ├── iommu_create_device_flags_t.hpp │ │ │ ├── iommu_device_id_acpi_t.hpp │ │ │ ├── iommu_device_id_flags_t.hpp │ │ │ ├── iommu_device_id_gic_t.hpp │ │ │ ├── iommu_device_id_pci_t.hpp │ │ │ ├── iommu_device_id_t.hpp │ │ │ ├── iommu_device_id_test_t.hpp │ │ │ ├── iommu_device_t.hpp │ │ │ ├── iommu_device_type_t.hpp │ │ │ ├── iommu_domain_settings_t.hpp │ │ │ ├── iommu_domain_t.hpp │ │ │ ├── iommu_domain_type_t.hpp │ │ │ ├── iommu_flush_context_t.hpp │ │ │ ├── iommu_function_table_extended_t.hpp │ │ │ ├── iommu_function_table_t.hpp │ │ │ ├── iommu_interrupt_remapping_policy_t.hpp │ │ │ ├── iommu_known_iommu_type_t.hpp │ │ │ ├── iommu_output_mapping_t.hpp │ │ │ ├── iommu_reserved_memory_region_t.hpp │ │ │ ├── iommu_s1_x64_domain_settings_t.hpp │ │ │ ├── iommu_settings_t.hpp │ │ │ ├── iommu_t.hpp │ │ │ ├── iommu_translation_type_t.hpp │ │ │ ├── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ ├── api.start.hpp │ │ │ │ ├── delete_parameters_t.end.hpp │ │ │ │ ├── delete_parameters_t.start.hpp │ │ │ │ ├── env_spinlock_t.end.hpp │ │ │ │ ├── env_spinlock_t.start.hpp │ │ │ │ ├── iommu_capabilities_t.end.hpp │ │ │ │ ├── iommu_capabilities_t.start.hpp │ │ │ │ ├── iommu_create_device_flags_t.end.hpp │ │ │ │ ├── iommu_create_device_flags_t.start.hpp │ │ │ │ ├── iommu_device_id_acpi_t.end.hpp │ │ │ │ ├── iommu_device_id_acpi_t.start.hpp │ │ │ │ ├── iommu_device_id_flags_t.end.hpp │ │ │ │ ├── iommu_device_id_flags_t.start.hpp │ │ │ │ ├── iommu_device_id_gic_t.end.hpp │ │ │ │ ├── iommu_device_id_gic_t.start.hpp │ │ │ │ ├── iommu_device_id_pci_t.end.hpp │ │ │ │ ├── iommu_device_id_pci_t.start.hpp │ │ │ │ ├── iommu_device_id_t.end.hpp │ │ │ │ ├── iommu_device_id_t.start.hpp │ │ │ │ ├── iommu_device_id_test_t.end.hpp │ │ │ │ ├── iommu_device_id_test_t.start.hpp │ │ │ │ ├── iommu_device_t.end.hpp │ │ │ │ ├── iommu_device_t.start.hpp │ │ │ │ ├── iommu_domain_settings_t.end.hpp │ │ │ │ ├── iommu_domain_settings_t.start.hpp │ │ │ │ ├── iommu_domain_t.end.hpp │ │ │ │ ├── iommu_domain_t.start.hpp │ │ │ │ ├── iommu_flush_context_t.end.hpp │ │ │ │ ├── iommu_flush_context_t.start.hpp │ │ │ │ ├── iommu_function_table_extended_t.end.hpp │ │ │ │ ├── iommu_function_table_extended_t.start.hpp │ │ │ │ ├── iommu_function_table_t.end.hpp │ │ │ │ ├── iommu_function_table_t.start.hpp │ │ │ │ ├── iommu_output_mapping_t.end.hpp │ │ │ │ ├── iommu_output_mapping_t.start.hpp │ │ │ │ ├── iommu_reserved_memory_region_t.end.hpp │ │ │ │ ├── iommu_reserved_memory_region_t.start.hpp │ │ │ │ ├── iommu_s1_x64_domain_settings_t.end.hpp │ │ │ │ ├── iommu_s1_x64_domain_settings_t.start.hpp │ │ │ │ ├── iommu_settings_t.end.hpp │ │ │ │ ├── iommu_settings_t.start.hpp │ │ │ │ ├── iommu_t.end.hpp │ │ │ │ ├── iommu_t.start.hpp │ │ │ │ ├── set_parameters_v0_t.end.hpp │ │ │ │ └── set_parameters_v0_t.start.hpp │ │ │ └── set_parameters_v0_t.hpp │ │ ├── fltmgr/ │ │ │ ├── allocate_context_direct_t.hpp │ │ │ ├── allocate_context_header_t.hpp │ │ │ ├── allocate_context_lookaside_t.hpp │ │ │ ├── allocate_context_routines_t.hpp │ │ │ ├── api.hpp │ │ │ ├── async_io_completion_context_t.hpp │ │ │ ├── backpocket_thread_entry_t.hpp │ │ │ ├── callback_ctrl_t.hpp │ │ │ ├── callback_node_flags_t.hpp │ │ │ ├── callback_node_t.hpp │ │ │ ├── completion_node_t.hpp │ │ │ ├── completion_node_tracking_list_t.hpp │ │ │ ├── context_list_ctrl_t.hpp │ │ │ ├── context_node_t.hpp │ │ │ ├── device_extension_header_t.hpp │ │ │ ├── empty_c_variant_feature_staging_filter_manager_t.hpp │ │ │ ├── file_list_ctrl_flags_t.hpp │ │ │ ├── file_list_ctrl_t.hpp │ │ │ ├── file_names_information_t.hpp │ │ │ ├── filter_ccb_t.hpp │ │ │ ├── flt_callback_data_queue_flags_t.hpp │ │ │ ├── flt_callback_data_queue_t.hpp │ │ │ ├── flt_callback_data_t.hpp │ │ │ ├── flt_ccb_t.hpp │ │ │ ├── flt_context_registration_t.hpp │ │ │ ├── flt_deferred_io_workitem_t.hpp │ │ │ ├── flt_file_name_information_t.hpp │ │ │ ├── flt_filesystem_type_t.hpp │ │ │ ├── flt_filter_flags_t.hpp │ │ │ ├── flt_filter_t.hpp │ │ │ ├── flt_generic_workitem_t.hpp │ │ │ ├── flt_instance_flags_t.hpp │ │ │ ├── flt_instance_t.hpp │ │ │ ├── flt_io_parameter_block_t.hpp │ │ │ ├── flt_message_waiter_queue_t.hpp │ │ │ ├── flt_message_waiter_t.hpp │ │ │ ├── flt_mutex_list_head_t.hpp │ │ │ ├── flt_name_control_t.hpp │ │ │ ├── flt_npaged_lookaside_number_t.hpp │ │ │ ├── flt_object_flags_t.hpp │ │ │ ├── flt_object_t.hpp │ │ │ ├── flt_operation_registration_t.hpp │ │ │ ├── flt_parameters_t.hpp │ │ │ ├── flt_port_object_t.hpp │ │ │ ├── flt_port_t.hpp │ │ │ ├── flt_postop_callback_status_t.hpp │ │ │ ├── flt_prcb_t.hpp │ │ │ ├── flt_preop_callback_status_t.hpp │ │ │ ├── flt_registration_t.hpp │ │ │ ├── flt_related_contexts_t.hpp │ │ │ ├── flt_related_objects_t.hpp │ │ │ ├── flt_resource_list_head_t.hpp │ │ │ ├── flt_server_port_object_t.hpp │ │ │ ├── flt_tag_data_buffer_t.hpp │ │ │ ├── flt_telemetry_stopwatch_t.hpp │ │ │ ├── flt_type_t.hpp │ │ │ ├── flt_verifier_extension_flags_t.hpp │ │ │ ├── flt_verifier_extension_t.hpp │ │ │ ├── flt_verifier_object_t.hpp │ │ │ ├── flt_verifier_operations_t.hpp │ │ │ ├── flt_volume_flags_t.hpp │ │ │ ├── flt_volume_properties_t.hpp │ │ │ ├── flt_volume_t.hpp │ │ │ ├── fltp_frame_t.hpp │ │ │ ├── fltp_irpctrl_stack_profiler_t.hpp │ │ │ ├── fltp_work_queue_type_t.hpp │ │ │ ├── fltp_workitem_t.hpp │ │ │ ├── fltpp_lookaside_list_t.hpp │ │ │ ├── globals_t.hpp │ │ │ ├── icc_flags_t.hpp │ │ │ ├── instance_ccb_t.hpp │ │ │ ├── irp_call_ctrl_t.hpp │ │ │ ├── irp_ctrl_t.hpp │ │ │ ├── magic/ │ │ │ │ ├── allocate_context_direct_t.end.hpp │ │ │ │ ├── allocate_context_direct_t.start.hpp │ │ │ │ ├── allocate_context_header_t.end.hpp │ │ │ │ ├── allocate_context_header_t.start.hpp │ │ │ │ ├── allocate_context_lookaside_t.end.hpp │ │ │ │ ├── allocate_context_lookaside_t.start.hpp │ │ │ │ ├── allocate_context_routines_t.end.hpp │ │ │ │ ├── allocate_context_routines_t.start.hpp │ │ │ │ ├── api.end.hpp │ │ │ │ ├── api.start.hpp │ │ │ │ ├── async_io_completion_context_t.end.hpp │ │ │ │ ├── async_io_completion_context_t.start.hpp │ │ │ │ ├── backpocket_thread_entry_t.end.hpp │ │ │ │ ├── backpocket_thread_entry_t.start.hpp │ │ │ │ ├── callback_ctrl_t.end.hpp │ │ │ │ ├── callback_ctrl_t.start.hpp │ │ │ │ ├── callback_node_t.end.hpp │ │ │ │ ├── callback_node_t.start.hpp │ │ │ │ ├── completion_node_t.end.hpp │ │ │ │ ├── completion_node_t.start.hpp │ │ │ │ ├── completion_node_tracking_list_t.end.hpp │ │ │ │ ├── completion_node_tracking_list_t.start.hpp │ │ │ │ ├── context_list_ctrl_t.end.hpp │ │ │ │ ├── context_list_ctrl_t.start.hpp │ │ │ │ ├── context_node_t.end.hpp │ │ │ │ ├── context_node_t.start.hpp │ │ │ │ ├── device_extension_header_t.end.hpp │ │ │ │ ├── device_extension_header_t.start.hpp │ │ │ │ ├── file_list_ctrl_t.end.hpp │ │ │ │ ├── file_list_ctrl_t.start.hpp │ │ │ │ ├── file_names_information_t.end.hpp │ │ │ │ ├── file_names_information_t.start.hpp │ │ │ │ ├── filter_ccb_t.end.hpp │ │ │ │ ├── filter_ccb_t.start.hpp │ │ │ │ ├── flt_callback_data_queue_t.end.hpp │ │ │ │ ├── flt_callback_data_queue_t.start.hpp │ │ │ │ ├── flt_callback_data_t.end.hpp │ │ │ │ ├── flt_callback_data_t.start.hpp │ │ │ │ ├── flt_ccb_t.end.hpp │ │ │ │ ├── flt_ccb_t.start.hpp │ │ │ │ ├── flt_context_registration_t.end.hpp │ │ │ │ ├── flt_context_registration_t.start.hpp │ │ │ │ ├── flt_deferred_io_workitem_t.end.hpp │ │ │ │ ├── flt_deferred_io_workitem_t.start.hpp │ │ │ │ ├── flt_file_name_information_t.end.hpp │ │ │ │ ├── flt_file_name_information_t.start.hpp │ │ │ │ ├── flt_filter_t.end.hpp │ │ │ │ ├── flt_filter_t.start.hpp │ │ │ │ ├── flt_generic_workitem_t.end.hpp │ │ │ │ ├── flt_generic_workitem_t.start.hpp │ │ │ │ ├── flt_instance_t.end.hpp │ │ │ │ ├── flt_instance_t.start.hpp │ │ │ │ ├── flt_io_parameter_block_t.end.hpp │ │ │ │ ├── flt_io_parameter_block_t.start.hpp │ │ │ │ ├── flt_message_waiter_queue_t.end.hpp │ │ │ │ ├── flt_message_waiter_queue_t.start.hpp │ │ │ │ ├── flt_message_waiter_t.end.hpp │ │ │ │ ├── flt_message_waiter_t.start.hpp │ │ │ │ ├── flt_mutex_list_head_t.end.hpp │ │ │ │ ├── flt_mutex_list_head_t.start.hpp │ │ │ │ ├── flt_name_control_t.end.hpp │ │ │ │ ├── flt_name_control_t.start.hpp │ │ │ │ ├── flt_object_t.end.hpp │ │ │ │ ├── flt_object_t.start.hpp │ │ │ │ ├── flt_operation_registration_t.end.hpp │ │ │ │ ├── flt_operation_registration_t.start.hpp │ │ │ │ ├── flt_parameters_t.end.hpp │ │ │ │ ├── flt_parameters_t.start.hpp │ │ │ │ ├── flt_port_object_t.end.hpp │ │ │ │ ├── flt_port_object_t.start.hpp │ │ │ │ ├── flt_prcb_t.end.hpp │ │ │ │ ├── flt_prcb_t.start.hpp │ │ │ │ ├── flt_registration_t.end.hpp │ │ │ │ ├── flt_registration_t.start.hpp │ │ │ │ ├── flt_related_contexts_t.end.hpp │ │ │ │ ├── flt_related_contexts_t.start.hpp │ │ │ │ ├── flt_related_objects_t.end.hpp │ │ │ │ ├── flt_related_objects_t.start.hpp │ │ │ │ ├── flt_resource_list_head_t.end.hpp │ │ │ │ ├── flt_resource_list_head_t.start.hpp │ │ │ │ ├── flt_server_port_object_t.end.hpp │ │ │ │ ├── flt_server_port_object_t.start.hpp │ │ │ │ ├── flt_tag_data_buffer_t.end.hpp │ │ │ │ ├── flt_tag_data_buffer_t.start.hpp │ │ │ │ ├── flt_telemetry_stopwatch_t.end.hpp │ │ │ │ ├── flt_telemetry_stopwatch_t.start.hpp │ │ │ │ ├── flt_type_t.end.hpp │ │ │ │ ├── flt_type_t.start.hpp │ │ │ │ ├── flt_verifier_extension_t.end.hpp │ │ │ │ ├── flt_verifier_extension_t.start.hpp │ │ │ │ ├── flt_verifier_object_t.end.hpp │ │ │ │ ├── flt_verifier_object_t.start.hpp │ │ │ │ ├── flt_verifier_operations_t.end.hpp │ │ │ │ ├── flt_verifier_operations_t.start.hpp │ │ │ │ ├── flt_volume_properties_t.end.hpp │ │ │ │ ├── flt_volume_properties_t.start.hpp │ │ │ │ ├── flt_volume_t.end.hpp │ │ │ │ ├── flt_volume_t.start.hpp │ │ │ │ ├── fltp_frame_t.end.hpp │ │ │ │ ├── fltp_frame_t.start.hpp │ │ │ │ ├── fltp_irpctrl_stack_profiler_t.end.hpp │ │ │ │ ├── fltp_irpctrl_stack_profiler_t.start.hpp │ │ │ │ ├── fltp_workitem_t.end.hpp │ │ │ │ ├── fltp_workitem_t.start.hpp │ │ │ │ ├── fltpp_lookaside_list_t.end.hpp │ │ │ │ ├── fltpp_lookaside_list_t.start.hpp │ │ │ │ ├── globals_t.end.hpp │ │ │ │ ├── globals_t.start.hpp │ │ │ │ ├── instance_ccb_t.end.hpp │ │ │ │ ├── instance_ccb_t.start.hpp │ │ │ │ ├── irp_call_ctrl_t.end.hpp │ │ │ │ ├── irp_call_ctrl_t.start.hpp │ │ │ │ ├── irp_ctrl_t.end.hpp │ │ │ │ ├── irp_ctrl_t.start.hpp │ │ │ │ ├── manager_ccb_t.end.hpp │ │ │ │ ├── manager_ccb_t.start.hpp │ │ │ │ ├── name_cache_create_ctrl_t.end.hpp │ │ │ │ ├── name_cache_create_ctrl_t.start.hpp │ │ │ │ ├── name_cache_list_ctrl_stats_t.end.hpp │ │ │ │ ├── name_cache_list_ctrl_stats_t.start.hpp │ │ │ │ ├── name_cache_list_ctrl_t.end.hpp │ │ │ │ ├── name_cache_list_ctrl_t.start.hpp │ │ │ │ ├── name_cache_node_t.end.hpp │ │ │ │ ├── name_cache_node_t.start.hpp │ │ │ │ ├── name_cache_volume_ctrl_stats_t.end.hpp │ │ │ │ ├── name_cache_volume_ctrl_stats_t.start.hpp │ │ │ │ ├── name_cache_volume_ctrl_t.end.hpp │ │ │ │ ├── name_cache_volume_ctrl_t.start.hpp │ │ │ │ ├── name_control_t.end.hpp │ │ │ │ ├── name_control_t.start.hpp │ │ │ │ ├── port_ccb_t.end.hpp │ │ │ │ ├── port_ccb_t.start.hpp │ │ │ │ ├── reserve_irpctrl_t.end.hpp │ │ │ │ ├── reserve_irpctrl_t.start.hpp │ │ │ │ ├── section_conflict_queue_t.end.hpp │ │ │ │ ├── section_conflict_queue_t.start.hpp │ │ │ │ ├── section_context_extension_t.end.hpp │ │ │ │ ├── section_context_extension_t.start.hpp │ │ │ │ ├── section_list_ctrl_t.end.hpp │ │ │ │ ├── section_list_ctrl_t.start.hpp │ │ │ │ ├── set_purge_failure_mode_input_t.end.hpp │ │ │ │ ├── set_purge_failure_mode_input_t.start.hpp │ │ │ │ ├── stream_list_ctrl_t.end.hpp │ │ │ │ ├── stream_list_ctrl_t.start.hpp │ │ │ │ ├── telemetry_globals_t.end.hpp │ │ │ │ ├── telemetry_globals_t.start.hpp │ │ │ │ ├── throttle_element_t.end.hpp │ │ │ │ ├── throttle_element_t.start.hpp │ │ │ │ ├── throttled_work_item_ctrl_t.end.hpp │ │ │ │ ├── throttled_work_item_ctrl_t.start.hpp │ │ │ │ ├── track_completion_nodes_t.end.hpp │ │ │ │ ├── track_completion_nodes_t.start.hpp │ │ │ │ ├── tree_node_t.end.hpp │ │ │ │ ├── tree_node_t.start.hpp │ │ │ │ ├── tree_root_t.end.hpp │ │ │ │ ├── tree_root_t.start.hpp │ │ │ │ ├── tx_context_extension_t.end.hpp │ │ │ │ ├── tx_context_extension_t.start.hpp │ │ │ │ ├── volume_ccb_t.end.hpp │ │ │ │ ├── volume_ccb_t.start.hpp │ │ │ │ ├── volume_device_extension_t.end.hpp │ │ │ │ ├── volume_device_extension_t.start.hpp │ │ │ │ ├── work_context_t.end.hpp │ │ │ │ └── work_context_t.start.hpp │ │ │ ├── manager_ccb_t.hpp │ │ │ ├── name_cache_create_ctrl_t.hpp │ │ │ ├── name_cache_list_ctrl_stats_t.hpp │ │ │ ├── name_cache_list_ctrl_t.hpp │ │ │ ├── name_cache_node_t.hpp │ │ │ ├── name_cache_volume_ctrl_stats_t.hpp │ │ │ ├── name_cache_volume_ctrl_t.hpp │ │ │ ├── name_control_t.hpp │ │ │ ├── port_ccb_t.hpp │ │ │ ├── reserve_irpctrl_t.hpp │ │ │ ├── section_conflict_queue_t.hpp │ │ │ ├── section_context_extension_t.hpp │ │ │ ├── section_list_ctrl_t.hpp │ │ │ ├── set_purge_failure_mode_input_t.hpp │ │ │ ├── static_irp_ctrl_operation_type_t.hpp │ │ │ ├── stream_list_ctrl_t.hpp │ │ │ ├── telemetry_globals_t.hpp │ │ │ ├── throttle_element_t.hpp │ │ │ ├── throttled_work_item_ctrl_t.hpp │ │ │ ├── track_completion_nodes_t.hpp │ │ │ ├── tree_node_t.hpp │ │ │ ├── tree_root_t.hpp │ │ │ ├── tx_context_extension_t.hpp │ │ │ ├── volume_ccb_t.hpp │ │ │ ├── volume_device_extension_t.hpp │ │ │ └── work_context_t.hpp │ │ ├── fs/ │ │ │ ├── api.hpp │ │ │ ├── bpio_inflags_t.hpp │ │ │ ├── bpio_info_t.hpp │ │ │ ├── bpio_input_t.hpp │ │ │ ├── bpio_operations_t.hpp │ │ │ ├── bpio_outflags_t.hpp │ │ │ ├── bpio_output_t.hpp │ │ │ ├── bpio_results_t.hpp │ │ │ ├── control_device_extension_t.hpp │ │ │ ├── filter_callback_data_t.hpp │ │ │ ├── filter_callbacks_t.hpp │ │ │ ├── filter_parameters_t.hpp │ │ │ ├── filter_section_sync_output_t.hpp │ │ │ ├── filter_section_sync_type_t.hpp │ │ │ ├── filter_stream_fo_notification_type_t.hpp │ │ │ ├── information_class_t.hpp │ │ │ └── magic/ │ │ │ ├── api.end.hpp │ │ │ ├── api.start.hpp │ │ │ ├── bpio_info_t.end.hpp │ │ │ ├── bpio_info_t.start.hpp │ │ │ ├── bpio_input_t.end.hpp │ │ │ ├── bpio_input_t.start.hpp │ │ │ ├── bpio_output_t.end.hpp │ │ │ ├── bpio_output_t.start.hpp │ │ │ ├── bpio_results_t.end.hpp │ │ │ ├── bpio_results_t.start.hpp │ │ │ ├── control_device_extension_t.end.hpp │ │ │ ├── control_device_extension_t.start.hpp │ │ │ ├── filter_callback_data_t.end.hpp │ │ │ ├── filter_callback_data_t.start.hpp │ │ │ ├── filter_callbacks_t.end.hpp │ │ │ ├── filter_callbacks_t.start.hpp │ │ │ ├── filter_parameters_t.end.hpp │ │ │ ├── filter_parameters_t.start.hpp │ │ │ ├── filter_section_sync_output_t.end.hpp │ │ │ └── filter_section_sync_output_t.start.hpp │ │ ├── fx/ │ │ │ ├── allocated_mdls_t.hpp │ │ │ ├── api.hpp │ │ │ ├── auto_irp_t.hpp │ │ │ ├── auto_reg_key_t.hpp │ │ │ ├── auto_string_t.hpp │ │ │ ├── callback_lock_t.hpp │ │ │ ├── callback_mutex_lock_t.hpp │ │ │ ├── callback_spin_lock_t.hpp │ │ │ ├── callback_t.hpp │ │ │ ├── child_list_create_device_callback_t.hpp │ │ │ ├── child_list_description_state_t.hpp │ │ │ ├── child_list_iterator_index_values_t.hpp │ │ │ ├── child_list_modification_state_t.hpp │ │ │ ├── child_list_reported_missing_callback_state_t.hpp │ │ │ ├── child_list_scan_for_children_callback_t.hpp │ │ │ ├── child_list_scan_tag_states_t.hpp │ │ │ ├── child_list_state_t.hpp │ │ │ ├── child_list_t.hpp │ │ │ ├── child_list_values_t.hpp │ │ │ ├── cm_res_list_t.hpp │ │ │ ├── collection_entry_t.hpp │ │ │ ├── collection_internal_t.hpp │ │ │ ├── collection_t.hpp │ │ │ ├── common_buffer_t.hpp │ │ │ ├── companion_library_t.hpp │ │ │ ├── companion_target_t.hpp │ │ │ ├── context_header_t.hpp │ │ │ ├── cr_event_t.hpp │ │ │ ├── cx_callback_cleanup_action_t.hpp │ │ │ ├── cx_callback_progress_t.hpp │ │ │ ├── cx_callback_sub_type_t.hpp │ │ │ ├── cx_callback_type_t.hpp │ │ │ ├── cx_device_info_t.hpp │ │ │ ├── cx_file_object_file_create_t.hpp │ │ │ ├── cx_invoke_callback_sub_type_t.hpp │ │ │ ├── cx_pnp_power_callback_context_t.hpp │ │ │ ├── default_irp_handler_t.hpp │ │ │ ├── device_base_t.hpp │ │ │ ├── device_callback_flags_t.hpp │ │ │ ├── device_description_entry_t.hpp │ │ │ ├── device_info_flags_t.hpp │ │ │ ├── device_init_type_t.hpp │ │ │ ├── device_interface_t.hpp │ │ │ ├── device_power_irp_tracker_t.hpp │ │ │ ├── device_process_query_interface_request_t.hpp │ │ │ ├── device_pwr_requirement_events_t.hpp │ │ │ ├── device_pwr_requirement_machine_state_history_t.hpp │ │ │ ├── device_pwr_requirement_machine_t.hpp │ │ │ ├── device_pwr_requirement_state_table_t.hpp │ │ │ ├── device_pwr_requirement_states_t.hpp │ │ │ ├── device_pwr_requirement_target_state_t.hpp │ │ │ ├── device_rem_lock_action_t.hpp │ │ │ ├── device_t.hpp │ │ │ ├── device_text_t.hpp │ │ │ ├── dispose_list_t.hpp │ │ │ ├── dma_completion_type_t.hpp │ │ │ ├── dma_description_t.hpp │ │ │ ├── dma_enabler_callbacks_t.hpp │ │ │ ├── dma_enabler_t.hpp │ │ │ ├── dma_packet_transaction_status_t.hpp │ │ │ ├── dma_packet_transaction_t.hpp │ │ │ ├── dma_scatter_gather_transaction_t.hpp │ │ │ ├── dma_system_transaction_t.hpp │ │ │ ├── dma_transaction_base_t.hpp │ │ │ ├── dma_transaction_configure_channel_t.hpp │ │ │ ├── dma_transaction_program_or_reserve_dma_t.hpp │ │ │ ├── dma_transaction_state_t.hpp │ │ │ ├── dma_transaction_transfer_complete_t.hpp │ │ │ ├── dpc_t.hpp │ │ │ ├── driver_device_add_t.hpp │ │ │ ├── driver_globals_debug_extension_t.hpp │ │ │ ├── driver_globals_t.hpp │ │ │ ├── driver_object_um_flags_t.hpp │ │ │ ├── driver_t.hpp │ │ │ ├── driver_tracker_cache_aware_t.hpp │ │ │ ├── driver_unload_t.hpp │ │ │ ├── dump_driver_info_entry_t.hpp │ │ │ ├── duplex_dma_description_type_t.hpp │ │ │ ├── enhanced_verifier_bit_flags_t.hpp │ │ │ ├── enumeration_info_t.hpp │ │ │ ├── event_queue_flags_t.hpp │ │ │ ├── event_queue_t.hpp │ │ │ ├── evt_dma_enabler_disable_callback_t.hpp │ │ │ ├── evt_dma_enabler_enable_callback_t.hpp │ │ │ ├── evt_dma_enabler_fill_callback_t.hpp │ │ │ ├── evt_dma_enabler_flush_callback_t.hpp │ │ │ ├── evt_dma_enabler_self_managed_io_start_callback_t.hpp │ │ │ ├── evt_dma_enabler_self_managed_io_stop_callback_t.hpp │ │ │ ├── file_object_file_cleanup_t.hpp │ │ │ ├── file_object_file_close_t.hpp │ │ │ ├── file_object_file_create_t.hpp │ │ │ ├── file_object_info_t.hpp │ │ │ ├── file_object_t.hpp │ │ │ ├── filtered_start_context_t.hpp │ │ │ ├── globals_stump_t.hpp │ │ │ ├── handle_flags_t.hpp │ │ │ ├── idle_state_table_t.hpp │ │ │ ├── ifr_values_t.hpp │ │ │ ├── interface_pipe_information_t.hpp │ │ │ ├── internal_ioctl_others_context_t.hpp │ │ │ ├── internal_ioctl_params_t.hpp │ │ │ ├── interrupt_enable_parameters_t.hpp │ │ │ ├── interrupt_sync_parameters_t.hpp │ │ │ ├── interrupt_t.hpp │ │ │ ├── io_context_t.hpp │ │ │ ├── io_in_caller_context_t.hpp │ │ │ ├── io_iterator_list_t.hpp │ │ │ ├── io_queue_forward_progress_allocate_resources_reserved_t.hpp │ │ │ ├── io_queue_forward_progress_allocate_resources_t.hpp │ │ │ ├── io_queue_forward_progress_examine_irp_t.hpp │ │ │ ├── io_queue_io_canceled_on_queue_t.hpp │ │ │ ├── io_queue_io_default_t.hpp │ │ │ ├── io_queue_io_device_control_t.hpp │ │ │ ├── io_queue_io_internal_device_control_t.hpp │ │ │ ├── io_queue_io_read_t.hpp │ │ │ ├── io_queue_io_resume_t.hpp │ │ │ ├── io_queue_io_state_t.hpp │ │ │ ├── io_queue_io_stop_t.hpp │ │ │ ├── io_queue_io_write_t.hpp │ │ │ ├── io_queue_node_t.hpp │ │ │ ├── io_queue_node_type_t.hpp │ │ │ ├── io_queue_power_state_t.hpp │ │ │ ├── io_queue_set_state_t.hpp │ │ │ ├── io_queue_state_t.hpp │ │ │ ├── io_queue_t.hpp │ │ │ ├── io_res_list_t.hpp │ │ │ ├── io_res_req_list_t.hpp │ │ │ ├── io_stop_processing_for_power_action_t.hpp │ │ │ ├── io_target_cleared_pointers_t.hpp │ │ │ ├── io_target_query_remove_t.hpp │ │ │ ├── io_target_remote_close_reason_t.hpp │ │ │ ├── io_target_remote_open_state_t.hpp │ │ │ ├── io_target_remote_t.hpp │ │ │ ├── io_target_remove_canceled_t.hpp │ │ │ ├── io_target_remove_complete_t.hpp │ │ │ ├── io_target_remove_open_params_t.hpp │ │ │ ├── io_target_self_t.hpp │ │ │ ├── io_target_t.hpp │ │ │ ├── irp_dynamic_dispatch_info_t.hpp │ │ │ ├── irp_preprocess_info_t.hpp │ │ │ ├── irp_queue_t.hpp │ │ │ ├── irp_t.hpp │ │ │ ├── library_globals_type_t.hpp │ │ │ ├── list_entry_names_t.hpp │ │ │ ├── list_transaction_action_t.hpp │ │ │ ├── lock_t.hpp │ │ │ ├── locked_callback_t.hpp │ │ │ ├── lookaside_list_from_pool_t.hpp │ │ │ ├── lookaside_list_t.hpp │ │ │ ├── machine_sleep_states_t.hpp │ │ │ ├── magic/ │ │ │ │ ├── allocated_mdls_t.end.hpp │ │ │ │ ├── allocated_mdls_t.start.hpp │ │ │ │ ├── api.end.hpp │ │ │ │ ├── api.start.hpp │ │ │ │ ├── auto_irp_t.end.hpp │ │ │ │ ├── auto_irp_t.start.hpp │ │ │ │ ├── auto_reg_key_t.end.hpp │ │ │ │ ├── auto_reg_key_t.start.hpp │ │ │ │ ├── auto_string_t.end.hpp │ │ │ │ ├── auto_string_t.start.hpp │ │ │ │ ├── callback_lock_t.end.hpp │ │ │ │ ├── callback_lock_t.start.hpp │ │ │ │ ├── callback_mutex_lock_t.end.hpp │ │ │ │ ├── callback_mutex_lock_t.start.hpp │ │ │ │ ├── callback_spin_lock_t.end.hpp │ │ │ │ ├── callback_spin_lock_t.start.hpp │ │ │ │ ├── child_list_create_device_callback_t.end.hpp │ │ │ │ ├── child_list_create_device_callback_t.start.hpp │ │ │ │ ├── child_list_scan_for_children_callback_t.end.hpp │ │ │ │ ├── child_list_scan_for_children_callback_t.start.hpp │ │ │ │ ├── child_list_t.end.hpp │ │ │ │ ├── child_list_t.start.hpp │ │ │ │ ├── cm_res_list_t.end.hpp │ │ │ │ ├── cm_res_list_t.start.hpp │ │ │ │ ├── collection_entry_t.end.hpp │ │ │ │ ├── collection_entry_t.start.hpp │ │ │ │ ├── collection_internal_t.end.hpp │ │ │ │ ├── collection_internal_t.start.hpp │ │ │ │ ├── collection_t.end.hpp │ │ │ │ ├── collection_t.start.hpp │ │ │ │ ├── common_buffer_t.end.hpp │ │ │ │ ├── common_buffer_t.start.hpp │ │ │ │ ├── companion_library_t.end.hpp │ │ │ │ ├── companion_library_t.start.hpp │ │ │ │ ├── companion_target_t.end.hpp │ │ │ │ ├── companion_target_t.start.hpp │ │ │ │ ├── context_header_t.end.hpp │ │ │ │ ├── context_header_t.start.hpp │ │ │ │ ├── cr_event_t.end.hpp │ │ │ │ ├── cr_event_t.start.hpp │ │ │ │ ├── cx_device_info_t.end.hpp │ │ │ │ ├── cx_device_info_t.start.hpp │ │ │ │ ├── cx_file_object_file_create_t.end.hpp │ │ │ │ ├── cx_file_object_file_create_t.start.hpp │ │ │ │ ├── cx_pnp_power_callback_context_t.end.hpp │ │ │ │ ├── cx_pnp_power_callback_context_t.start.hpp │ │ │ │ ├── default_irp_handler_t.end.hpp │ │ │ │ ├── default_irp_handler_t.start.hpp │ │ │ │ ├── device_base_t.end.hpp │ │ │ │ ├── device_base_t.start.hpp │ │ │ │ ├── device_description_entry_t.end.hpp │ │ │ │ ├── device_description_entry_t.start.hpp │ │ │ │ ├── device_interface_t.end.hpp │ │ │ │ ├── device_interface_t.start.hpp │ │ │ │ ├── device_power_irp_tracker_t.end.hpp │ │ │ │ ├── device_power_irp_tracker_t.start.hpp │ │ │ │ ├── device_process_query_interface_request_t.end.hpp │ │ │ │ ├── device_process_query_interface_request_t.start.hpp │ │ │ │ ├── device_pwr_requirement_machine_state_history_t.end.hpp │ │ │ │ ├── device_pwr_requirement_machine_state_history_t.start.hpp │ │ │ │ ├── device_pwr_requirement_machine_t.end.hpp │ │ │ │ ├── device_pwr_requirement_machine_t.start.hpp │ │ │ │ ├── device_pwr_requirement_state_table_t.end.hpp │ │ │ │ ├── device_pwr_requirement_state_table_t.start.hpp │ │ │ │ ├── device_pwr_requirement_target_state_t.end.hpp │ │ │ │ ├── device_pwr_requirement_target_state_t.start.hpp │ │ │ │ ├── device_t.end.hpp │ │ │ │ ├── device_t.start.hpp │ │ │ │ ├── device_text_t.end.hpp │ │ │ │ ├── device_text_t.start.hpp │ │ │ │ ├── dispose_list_t.end.hpp │ │ │ │ ├── dispose_list_t.start.hpp │ │ │ │ ├── dma_description_t.end.hpp │ │ │ │ ├── dma_description_t.start.hpp │ │ │ │ ├── dma_enabler_t.end.hpp │ │ │ │ ├── dma_enabler_t.start.hpp │ │ │ │ ├── dma_packet_transaction_t.end.hpp │ │ │ │ ├── dma_packet_transaction_t.start.hpp │ │ │ │ ├── dma_scatter_gather_transaction_t.end.hpp │ │ │ │ ├── dma_scatter_gather_transaction_t.start.hpp │ │ │ │ ├── dma_system_transaction_t.end.hpp │ │ │ │ ├── dma_system_transaction_t.start.hpp │ │ │ │ ├── dma_transaction_base_t.end.hpp │ │ │ │ ├── dma_transaction_base_t.start.hpp │ │ │ │ ├── dma_transaction_configure_channel_t.end.hpp │ │ │ │ ├── dma_transaction_configure_channel_t.start.hpp │ │ │ │ ├── dma_transaction_program_or_reserve_dma_t.end.hpp │ │ │ │ ├── dma_transaction_program_or_reserve_dma_t.start.hpp │ │ │ │ ├── dma_transaction_transfer_complete_t.end.hpp │ │ │ │ ├── dma_transaction_transfer_complete_t.start.hpp │ │ │ │ ├── dpc_t.end.hpp │ │ │ │ ├── dpc_t.start.hpp │ │ │ │ ├── driver_device_add_t.end.hpp │ │ │ │ ├── driver_device_add_t.start.hpp │ │ │ │ ├── driver_globals_debug_extension_t.end.hpp │ │ │ │ ├── driver_globals_debug_extension_t.start.hpp │ │ │ │ ├── driver_globals_t.end.hpp │ │ │ │ ├── driver_globals_t.start.hpp │ │ │ │ ├── driver_t.end.hpp │ │ │ │ ├── driver_t.start.hpp │ │ │ │ ├── driver_tracker_cache_aware_t.end.hpp │ │ │ │ ├── driver_tracker_cache_aware_t.start.hpp │ │ │ │ ├── driver_unload_t.end.hpp │ │ │ │ ├── driver_unload_t.start.hpp │ │ │ │ ├── dump_driver_info_entry_t.end.hpp │ │ │ │ ├── dump_driver_info_entry_t.start.hpp │ │ │ │ ├── enumeration_info_t.end.hpp │ │ │ │ ├── enumeration_info_t.start.hpp │ │ │ │ ├── event_queue_t.end.hpp │ │ │ │ ├── event_queue_t.start.hpp │ │ │ │ ├── evt_dma_enabler_disable_callback_t.end.hpp │ │ │ │ ├── evt_dma_enabler_disable_callback_t.start.hpp │ │ │ │ ├── evt_dma_enabler_enable_callback_t.end.hpp │ │ │ │ ├── evt_dma_enabler_enable_callback_t.start.hpp │ │ │ │ ├── evt_dma_enabler_fill_callback_t.end.hpp │ │ │ │ ├── evt_dma_enabler_fill_callback_t.start.hpp │ │ │ │ ├── evt_dma_enabler_flush_callback_t.end.hpp │ │ │ │ ├── evt_dma_enabler_flush_callback_t.start.hpp │ │ │ │ ├── evt_dma_enabler_self_managed_io_start_callback_t.end.hpp │ │ │ │ ├── evt_dma_enabler_self_managed_io_start_callback_t.start.hpp │ │ │ │ ├── evt_dma_enabler_self_managed_io_stop_callback_t.end.hpp │ │ │ │ ├── evt_dma_enabler_self_managed_io_stop_callback_t.start.hpp │ │ │ │ ├── file_object_file_cleanup_t.end.hpp │ │ │ │ ├── file_object_file_cleanup_t.start.hpp │ │ │ │ ├── file_object_file_close_t.end.hpp │ │ │ │ ├── file_object_file_close_t.start.hpp │ │ │ │ ├── file_object_file_create_t.end.hpp │ │ │ │ ├── file_object_file_create_t.start.hpp │ │ │ │ ├── file_object_info_t.end.hpp │ │ │ │ ├── file_object_info_t.start.hpp │ │ │ │ ├── file_object_t.end.hpp │ │ │ │ ├── file_object_t.start.hpp │ │ │ │ ├── filtered_start_context_t.end.hpp │ │ │ │ ├── filtered_start_context_t.start.hpp │ │ │ │ ├── globals_stump_t.end.hpp │ │ │ │ ├── globals_stump_t.start.hpp │ │ │ │ ├── idle_state_table_t.end.hpp │ │ │ │ ├── idle_state_table_t.start.hpp │ │ │ │ ├── interface_pipe_information_t.end.hpp │ │ │ │ ├── interface_pipe_information_t.start.hpp │ │ │ │ ├── internal_ioctl_others_context_t.end.hpp │ │ │ │ ├── internal_ioctl_others_context_t.start.hpp │ │ │ │ ├── internal_ioctl_params_t.end.hpp │ │ │ │ ├── internal_ioctl_params_t.start.hpp │ │ │ │ ├── interrupt_enable_parameters_t.end.hpp │ │ │ │ ├── interrupt_enable_parameters_t.start.hpp │ │ │ │ ├── interrupt_sync_parameters_t.end.hpp │ │ │ │ ├── interrupt_sync_parameters_t.start.hpp │ │ │ │ ├── interrupt_t.end.hpp │ │ │ │ ├── interrupt_t.start.hpp │ │ │ │ ├── io_context_t.end.hpp │ │ │ │ ├── io_context_t.start.hpp │ │ │ │ ├── io_in_caller_context_t.end.hpp │ │ │ │ ├── io_in_caller_context_t.start.hpp │ │ │ │ ├── io_queue_forward_progress_allocate_resources_reserved_t.end.hpp │ │ │ │ ├── io_queue_forward_progress_allocate_resources_reserved_t.start.hpp │ │ │ │ ├── io_queue_forward_progress_allocate_resources_t.end.hpp │ │ │ │ ├── io_queue_forward_progress_allocate_resources_t.start.hpp │ │ │ │ ├── io_queue_forward_progress_examine_irp_t.end.hpp │ │ │ │ ├── io_queue_forward_progress_examine_irp_t.start.hpp │ │ │ │ ├── io_queue_io_canceled_on_queue_t.end.hpp │ │ │ │ ├── io_queue_io_canceled_on_queue_t.start.hpp │ │ │ │ ├── io_queue_io_default_t.end.hpp │ │ │ │ ├── io_queue_io_default_t.start.hpp │ │ │ │ ├── io_queue_io_device_control_t.end.hpp │ │ │ │ ├── io_queue_io_device_control_t.start.hpp │ │ │ │ ├── io_queue_io_internal_device_control_t.end.hpp │ │ │ │ ├── io_queue_io_internal_device_control_t.start.hpp │ │ │ │ ├── io_queue_io_read_t.end.hpp │ │ │ │ ├── io_queue_io_read_t.start.hpp │ │ │ │ ├── io_queue_io_resume_t.end.hpp │ │ │ │ ├── io_queue_io_resume_t.start.hpp │ │ │ │ ├── io_queue_io_state_t.end.hpp │ │ │ │ ├── io_queue_io_state_t.start.hpp │ │ │ │ ├── io_queue_io_stop_t.end.hpp │ │ │ │ ├── io_queue_io_stop_t.start.hpp │ │ │ │ ├── io_queue_io_write_t.end.hpp │ │ │ │ ├── io_queue_io_write_t.start.hpp │ │ │ │ ├── io_queue_node_t.end.hpp │ │ │ │ ├── io_queue_node_t.start.hpp │ │ │ │ ├── io_queue_t.end.hpp │ │ │ │ ├── io_queue_t.start.hpp │ │ │ │ ├── io_res_list_t.end.hpp │ │ │ │ ├── io_res_list_t.start.hpp │ │ │ │ ├── io_res_req_list_t.end.hpp │ │ │ │ ├── io_res_req_list_t.start.hpp │ │ │ │ ├── io_target_cleared_pointers_t.end.hpp │ │ │ │ ├── io_target_cleared_pointers_t.start.hpp │ │ │ │ ├── io_target_query_remove_t.end.hpp │ │ │ │ ├── io_target_query_remove_t.start.hpp │ │ │ │ ├── io_target_remote_t.end.hpp │ │ │ │ ├── io_target_remote_t.start.hpp │ │ │ │ ├── io_target_remove_canceled_t.end.hpp │ │ │ │ ├── io_target_remove_canceled_t.start.hpp │ │ │ │ ├── io_target_remove_complete_t.end.hpp │ │ │ │ ├── io_target_remove_complete_t.start.hpp │ │ │ │ ├── io_target_remove_open_params_t.end.hpp │ │ │ │ ├── io_target_remove_open_params_t.start.hpp │ │ │ │ ├── io_target_self_t.end.hpp │ │ │ │ ├── io_target_self_t.start.hpp │ │ │ │ ├── io_target_t.end.hpp │ │ │ │ ├── io_target_t.start.hpp │ │ │ │ ├── irp_dynamic_dispatch_info_t.end.hpp │ │ │ │ ├── irp_dynamic_dispatch_info_t.start.hpp │ │ │ │ ├── irp_preprocess_info_t.end.hpp │ │ │ │ ├── irp_preprocess_info_t.start.hpp │ │ │ │ ├── irp_queue_t.end.hpp │ │ │ │ ├── irp_queue_t.start.hpp │ │ │ │ ├── irp_t.end.hpp │ │ │ │ ├── irp_t.start.hpp │ │ │ │ ├── library_globals_type_t.end.hpp │ │ │ │ ├── library_globals_type_t.start.hpp │ │ │ │ ├── lock_t.end.hpp │ │ │ │ ├── lock_t.start.hpp │ │ │ │ ├── locked_callback_t.end.hpp │ │ │ │ ├── locked_callback_t.start.hpp │ │ │ │ ├── lookaside_list_from_pool_t.end.hpp │ │ │ │ ├── lookaside_list_from_pool_t.start.hpp │ │ │ │ ├── lookaside_list_t.end.hpp │ │ │ │ ├── lookaside_list_t.start.hpp │ │ │ │ ├── mdl_debug_info_t.end.hpp │ │ │ │ ├── mdl_debug_info_t.start.hpp │ │ │ │ ├── memory_buffer_from_lookaside_t.end.hpp │ │ │ │ ├── memory_buffer_from_lookaside_t.start.hpp │ │ │ │ ├── memory_buffer_from_pool_lookaside_t.end.hpp │ │ │ │ ├── memory_buffer_from_pool_lookaside_t.start.hpp │ │ │ │ ├── memory_buffer_from_pool_t.end.hpp │ │ │ │ ├── memory_buffer_from_pool_t.start.hpp │ │ │ │ ├── memory_buffer_preallocated_t.end.hpp │ │ │ │ ├── memory_buffer_preallocated_t.start.hpp │ │ │ │ ├── memory_buffer_t.end.hpp │ │ │ │ ├── memory_buffer_t.start.hpp │ │ │ │ ├── memory_object_t.end.hpp │ │ │ │ ├── memory_object_t.start.hpp │ │ │ │ ├── memory_paged_buffer_from_pool_lookaside_t.end.hpp │ │ │ │ ├── memory_paged_buffer_from_pool_lookaside_t.start.hpp │ │ │ │ ├── memory_paged_buffer_from_pool_t.end.hpp │ │ │ │ ├── memory_paged_buffer_from_pool_t.start.hpp │ │ │ │ ├── mp_device_t.end.hpp │ │ │ │ ├── mp_device_t.start.hpp │ │ │ │ ├── n_paged_lookaside_list_from_pool_t.end.hpp │ │ │ │ ├── n_paged_lookaside_list_from_pool_t.start.hpp │ │ │ │ ├── n_paged_lookaside_list_t.end.hpp │ │ │ │ ├── n_paged_lookaside_list_t.start.hpp │ │ │ │ ├── non_paged_object_t.end.hpp │ │ │ │ ├── non_paged_object_t.start.hpp │ │ │ │ ├── object_debug_extension_t.end.hpp │ │ │ │ ├── object_debug_extension_t.start.hpp │ │ │ │ ├── object_debug_info_t.end.hpp │ │ │ │ ├── object_debug_info_t.start.hpp │ │ │ │ ├── object_debug_leak_detection_t.end.hpp │ │ │ │ ├── object_debug_leak_detection_t.start.hpp │ │ │ │ ├── object_info_t.end.hpp │ │ │ │ ├── object_info_t.start.hpp │ │ │ │ ├── object_t.end.hpp │ │ │ │ ├── object_t.start.hpp │ │ │ │ ├── offset_and_name_t.end.hpp │ │ │ │ ├── offset_and_name_t.start.hpp │ │ │ │ ├── package_t.end.hpp │ │ │ │ ├── package_t.start.hpp │ │ │ │ ├── paged_lookaside_list_from_pool_t.end.hpp │ │ │ │ ├── paged_lookaside_list_from_pool_t.start.hpp │ │ │ │ ├── paged_object_t.end.hpp │ │ │ │ ├── paged_object_t.start.hpp │ │ │ │ ├── pkg_fdo_t.end.hpp │ │ │ │ ├── pkg_fdo_t.start.hpp │ │ │ │ ├── pkg_general_t.end.hpp │ │ │ │ ├── pkg_general_t.start.hpp │ │ │ │ ├── pkg_io_t.end.hpp │ │ │ │ ├── pkg_io_t.start.hpp │ │ │ │ ├── pkg_pdo_t.end.hpp │ │ │ │ ├── pkg_pdo_t.start.hpp │ │ │ │ ├── pkg_pnp_t.end.hpp │ │ │ │ ├── pkg_pnp_t.start.hpp │ │ │ │ ├── pnp_caps_t.end.hpp │ │ │ │ ├── pnp_caps_t.start.hpp │ │ │ │ ├── pnp_device_d0_entry_post_hw_enabled_t.end.hpp │ │ │ │ ├── pnp_device_d0_entry_post_hw_enabled_t.start.hpp │ │ │ │ ├── pnp_device_d0_entry_post_interrupts_enabled_t.end.hpp │ │ │ │ ├── pnp_device_d0_entry_post_interrupts_enabled_t.start.hpp │ │ │ │ ├── pnp_device_d0_entry_t.end.hpp │ │ │ │ ├── pnp_device_d0_entry_t.start.hpp │ │ │ │ ├── pnp_device_d0_exit_pre_hw_disabled_t.end.hpp │ │ │ │ ├── pnp_device_d0_exit_pre_hw_disabled_t.start.hpp │ │ │ │ ├── pnp_device_d0_exit_pre_interrupts_disabled_t.end.hpp │ │ │ │ ├── pnp_device_d0_exit_pre_interrupts_disabled_t.start.hpp │ │ │ │ ├── pnp_device_d0_exit_t.end.hpp │ │ │ │ ├── pnp_device_d0_exit_t.start.hpp │ │ │ │ ├── pnp_device_eject_t.end.hpp │ │ │ │ ├── pnp_device_eject_t.start.hpp │ │ │ │ ├── pnp_device_filter_resource_requirements_t.end.hpp │ │ │ │ ├── pnp_device_filter_resource_requirements_t.start.hpp │ │ │ │ ├── pnp_device_prepare_hardware_t.end.hpp │ │ │ │ ├── pnp_device_prepare_hardware_t.start.hpp │ │ │ │ ├── pnp_device_query_remove_t.end.hpp │ │ │ │ ├── pnp_device_query_remove_t.start.hpp │ │ │ │ ├── pnp_device_query_stop_t.end.hpp │ │ │ │ ├── pnp_device_query_stop_t.start.hpp │ │ │ │ ├── pnp_device_relations_query_t.end.hpp │ │ │ │ ├── pnp_device_relations_query_t.start.hpp │ │ │ │ ├── pnp_device_release_hardware_t.end.hpp │ │ │ │ ├── pnp_device_release_hardware_t.start.hpp │ │ │ │ ├── pnp_device_remove_added_resources_t.end.hpp │ │ │ │ ├── pnp_device_remove_added_resources_t.start.hpp │ │ │ │ ├── pnp_device_reported_missing_t.end.hpp │ │ │ │ ├── pnp_device_reported_missing_t.start.hpp │ │ │ │ ├── pnp_device_resource_requirements_query_t.end.hpp │ │ │ │ ├── pnp_device_resource_requirements_query_t.start.hpp │ │ │ │ ├── pnp_device_resources_query_t.end.hpp │ │ │ │ ├── pnp_device_resources_query_t.start.hpp │ │ │ │ ├── pnp_device_self_managed_io_cleanup_t.end.hpp │ │ │ │ ├── pnp_device_self_managed_io_cleanup_t.start.hpp │ │ │ │ ├── pnp_device_self_managed_io_flush_t.end.hpp │ │ │ │ ├── pnp_device_self_managed_io_flush_t.start.hpp │ │ │ │ ├── pnp_device_self_managed_io_init_t.end.hpp │ │ │ │ ├── pnp_device_self_managed_io_init_t.start.hpp │ │ │ │ ├── pnp_device_self_managed_io_restart_t.end.hpp │ │ │ │ ├── pnp_device_self_managed_io_restart_t.start.hpp │ │ │ │ ├── pnp_device_self_managed_io_suspend_t.end.hpp │ │ │ │ ├── pnp_device_self_managed_io_suspend_t.start.hpp │ │ │ │ ├── pnp_device_set_lock_t.end.hpp │ │ │ │ ├── pnp_device_set_lock_t.start.hpp │ │ │ │ ├── pnp_device_surprise_removal_t.end.hpp │ │ │ │ ├── pnp_device_surprise_removal_t.start.hpp │ │ │ │ ├── pnp_device_usage_notification_ex_t.end.hpp │ │ │ │ ├── pnp_device_usage_notification_ex_t.start.hpp │ │ │ │ ├── pnp_device_usage_notification_t.end.hpp │ │ │ │ ├── pnp_device_usage_notification_t.start.hpp │ │ │ │ ├── pnp_machine_state_history_t.end.hpp │ │ │ │ ├── pnp_machine_state_history_t.start.hpp │ │ │ │ ├── pnp_machine_t.end.hpp │ │ │ │ ├── pnp_machine_t.start.hpp │ │ │ │ ├── pnp_state_and_caps_t.end.hpp │ │ │ │ ├── pnp_state_and_caps_t.start.hpp │ │ │ │ ├── pnp_state_callback_info_t.end.hpp │ │ │ │ ├── pnp_state_callback_info_t.start.hpp │ │ │ │ ├── pnp_state_callback_t.end.hpp │ │ │ │ ├── pnp_state_callback_t.start.hpp │ │ │ │ ├── pnp_state_info_t.end.hpp │ │ │ │ ├── pnp_state_info_t.start.hpp │ │ │ │ ├── pnp_state_t.end.hpp │ │ │ │ ├── pnp_state_t.start.hpp │ │ │ │ ├── pool_header_t.end.hpp │ │ │ │ ├── pool_header_t.start.hpp │ │ │ │ ├── pool_t.end.hpp │ │ │ │ ├── pool_t.start.hpp │ │ │ │ ├── pool_tracker_t.end.hpp │ │ │ │ ├── pool_tracker_t.start.hpp │ │ │ │ ├── pool_type_or_pool_flags_t.end.hpp │ │ │ │ ├── pool_type_or_pool_flags_t.start.hpp │ │ │ │ ├── post_process_info_t.end.hpp │ │ │ │ ├── post_process_info_t.start.hpp │ │ │ │ ├── power_caps_t.end.hpp │ │ │ │ ├── power_caps_t.start.hpp │ │ │ │ ├── power_device_arm_wake_from_s0_t.end.hpp │ │ │ │ ├── power_device_arm_wake_from_s0_t.start.hpp │ │ │ │ ├── power_device_arm_wake_from_sx_t.end.hpp │ │ │ │ ├── power_device_arm_wake_from_sx_t.start.hpp │ │ │ │ ├── power_device_disable_wake_at_bus_t.end.hpp │ │ │ │ ├── power_device_disable_wake_at_bus_t.start.hpp │ │ │ │ ├── power_device_disarm_wake_from_s0_t.end.hpp │ │ │ │ ├── power_device_disarm_wake_from_s0_t.start.hpp │ │ │ │ ├── power_device_disarm_wake_from_sx_t.end.hpp │ │ │ │ ├── power_device_disarm_wake_from_sx_t.start.hpp │ │ │ │ ├── power_device_enable_wake_at_bus_t.end.hpp │ │ │ │ ├── power_device_enable_wake_at_bus_t.start.hpp │ │ │ │ ├── power_device_wake_from_s0_triggered_t.end.hpp │ │ │ │ ├── power_device_wake_from_s0_triggered_t.start.hpp │ │ │ │ ├── power_device_wake_from_sx_triggered_t.end.hpp │ │ │ │ ├── power_device_wake_from_sx_triggered_t.start.hpp │ │ │ │ ├── power_idle_machine_t.end.hpp │ │ │ │ ├── power_idle_machine_t.start.hpp │ │ │ │ ├── power_idle_target_state_t.end.hpp │ │ │ │ ├── power_idle_target_state_t.start.hpp │ │ │ │ ├── power_machine_event_queue_t.end.hpp │ │ │ │ ├── power_machine_event_queue_t.start.hpp │ │ │ │ ├── power_machine_state_history_t.end.hpp │ │ │ │ ├── power_machine_state_history_t.start.hpp │ │ │ │ ├── power_machine_t.end.hpp │ │ │ │ ├── power_machine_t.start.hpp │ │ │ │ ├── power_policy_machine_state_history_t.end.hpp │ │ │ │ ├── power_policy_machine_state_history_t.start.hpp │ │ │ │ ├── power_policy_machine_t.end.hpp │ │ │ │ ├── power_policy_machine_t.start.hpp │ │ │ │ ├── power_policy_owner_settings_t.end.hpp │ │ │ │ ├── power_policy_owner_settings_t.start.hpp │ │ │ │ ├── power_policy_state_callback_info_t.end.hpp │ │ │ │ ├── power_policy_state_callback_info_t.start.hpp │ │ │ │ ├── power_policy_state_callback_t.end.hpp │ │ │ │ ├── power_policy_state_callback_t.start.hpp │ │ │ │ ├── power_state_callback_info_t.end.hpp │ │ │ │ ├── power_state_callback_info_t.start.hpp │ │ │ │ ├── power_state_callback_t.end.hpp │ │ │ │ ├── power_state_callback_t.start.hpp │ │ │ │ ├── power_state_info_t.end.hpp │ │ │ │ ├── power_state_info_t.start.hpp │ │ │ │ ├── pox_interface_t.end.hpp │ │ │ │ ├── pox_interface_t.start.hpp │ │ │ │ ├── pre_post_callback_t.end.hpp │ │ │ │ ├── pre_post_callback_t.start.hpp │ │ │ │ ├── pwr_pol_state_info_t.end.hpp │ │ │ │ ├── pwr_pol_state_info_t.start.hpp │ │ │ │ ├── query_interface_params_t.end.hpp │ │ │ │ ├── query_interface_params_t.start.hpp │ │ │ │ ├── query_interface_t.end.hpp │ │ │ │ ├── query_interface_t.start.hpp │ │ │ │ ├── reg_key_t.end.hpp │ │ │ │ ├── reg_key_t.start.hpp │ │ │ │ ├── related_device_list_t.end.hpp │ │ │ │ ├── related_device_list_t.start.hpp │ │ │ │ ├── related_device_t.end.hpp │ │ │ │ ├── related_device_t.start.hpp │ │ │ │ ├── request_base_t.end.hpp │ │ │ │ ├── request_base_t.start.hpp │ │ │ │ ├── request_buffer_t.end.hpp │ │ │ │ ├── request_buffer_t.start.hpp │ │ │ │ ├── request_cancel_callback_t.end.hpp │ │ │ │ ├── request_cancel_callback_t.start.hpp │ │ │ │ ├── request_completion_callback_t.end.hpp │ │ │ │ ├── request_completion_callback_t.start.hpp │ │ │ │ ├── request_context_t.end.hpp │ │ │ │ ├── request_context_t.start.hpp │ │ │ │ ├── request_from_lookaside_t.end.hpp │ │ │ │ ├── request_from_lookaside_t.start.hpp │ │ │ │ ├── request_memory_t.end.hpp │ │ │ │ ├── request_memory_t.start.hpp │ │ │ │ ├── request_output_buffer_t.end.hpp │ │ │ │ ├── request_output_buffer_t.start.hpp │ │ │ │ ├── request_system_buffer_t.end.hpp │ │ │ │ ├── request_system_buffer_t.start.hpp │ │ │ │ ├── request_t.end.hpp │ │ │ │ ├── request_t.start.hpp │ │ │ │ ├── request_timer_t.end.hpp │ │ │ │ ├── request_timer_t.start.hpp │ │ │ │ ├── resource_cm_t.end.hpp │ │ │ │ ├── resource_cm_t.start.hpp │ │ │ │ ├── resource_collection_t.end.hpp │ │ │ │ ├── resource_collection_t.start.hpp │ │ │ │ ├── resource_io_t.end.hpp │ │ │ │ ├── resource_io_t.start.hpp │ │ │ │ ├── self_managed_io_machine_event_history_t.end.hpp │ │ │ │ ├── self_managed_io_machine_event_history_t.start.hpp │ │ │ │ ├── self_managed_io_machine_state_history_t.end.hpp │ │ │ │ ├── self_managed_io_machine_state_history_t.start.hpp │ │ │ │ ├── self_managed_io_machine_t.end.hpp │ │ │ │ ├── self_managed_io_machine_t.start.hpp │ │ │ │ ├── self_managed_io_state_table_t.end.hpp │ │ │ │ ├── self_managed_io_state_table_t.start.hpp │ │ │ │ ├── self_managed_io_target_state_t.end.hpp │ │ │ │ ├── self_managed_io_target_state_t.start.hpp │ │ │ │ ├── shut_down_t.end.hpp │ │ │ │ ├── shut_down_t.start.hpp │ │ │ │ ├── spin_lock_history_entry_t.end.hpp │ │ │ │ ├── spin_lock_history_entry_t.start.hpp │ │ │ │ ├── spin_lock_history_t.end.hpp │ │ │ │ ├── spin_lock_history_t.start.hpp │ │ │ │ ├── spin_lock_t.end.hpp │ │ │ │ ├── spin_lock_t.start.hpp │ │ │ │ ├── spin_lock_transactioned_list_t.end.hpp │ │ │ │ ├── spin_lock_transactioned_list_t.start.hpp │ │ │ │ ├── static_child_description_t.end.hpp │ │ │ │ ├── static_child_description_t.start.hpp │ │ │ │ ├── string_t.end.hpp │ │ │ │ ├── string_t.start.hpp │ │ │ │ ├── sync_request_t.end.hpp │ │ │ │ ├── sync_request_t.start.hpp │ │ │ │ ├── system_thread_t.end.hpp │ │ │ │ ├── system_thread_t.start.hpp │ │ │ │ ├── system_work_item_t.end.hpp │ │ │ │ ├── system_work_item_t.start.hpp │ │ │ │ ├── tag_history_t.end.hpp │ │ │ │ ├── tag_history_t.start.hpp │ │ │ │ ├── tag_tracker_t.end.hpp │ │ │ │ ├── tag_tracker_t.start.hpp │ │ │ │ ├── tag_tracking_block_t.end.hpp │ │ │ │ ├── tag_tracking_block_t.start.hpp │ │ │ │ ├── tag_tracking_stack_frames_t.end.hpp │ │ │ │ ├── tag_tracking_stack_frames_t.start.hpp │ │ │ │ ├── target_submit_sync_params_t.end.hpp │ │ │ │ ├── target_submit_sync_params_t.start.hpp │ │ │ │ ├── telemetry_context_t.end.hpp │ │ │ │ ├── telemetry_context_t.start.hpp │ │ │ │ ├── telemetry_driver_info_t.end.hpp │ │ │ │ ├── telemetry_driver_info_t.start.hpp │ │ │ │ ├── threaded_event_queue_t.end.hpp │ │ │ │ ├── threaded_event_queue_t.start.hpp │ │ │ │ ├── timer_t.end.hpp │ │ │ │ ├── timer_t.start.hpp │ │ │ │ ├── trace_info_t.end.hpp │ │ │ │ ├── trace_info_t.start.hpp │ │ │ │ ├── transactioned_entry_t.end.hpp │ │ │ │ ├── transactioned_entry_t.start.hpp │ │ │ │ ├── transactioned_list_t.end.hpp │ │ │ │ ├── transactioned_list_t.start.hpp │ │ │ │ ├── usage_workitem_parameters_t.end.hpp │ │ │ │ ├── usage_workitem_parameters_t.start.hpp │ │ │ │ ├── usb_device_control_context_t.end.hpp │ │ │ │ ├── usb_device_control_context_t.start.hpp │ │ │ │ ├── usb_device_string_context_t.end.hpp │ │ │ │ ├── usb_device_string_context_t.start.hpp │ │ │ │ ├── usb_device_t.end.hpp │ │ │ │ ├── usb_device_t.start.hpp │ │ │ │ ├── usb_idle_info_t.end.hpp │ │ │ │ ├── usb_idle_info_t.start.hpp │ │ │ │ ├── usb_interface_setting_t.end.hpp │ │ │ │ ├── usb_interface_setting_t.start.hpp │ │ │ │ ├── usb_interface_t.end.hpp │ │ │ │ ├── usb_interface_t.start.hpp │ │ │ │ ├── usb_pipe_continuous_reader_t.end.hpp │ │ │ │ ├── usb_pipe_continuous_reader_t.start.hpp │ │ │ │ ├── usb_pipe_repeat_reader_t.end.hpp │ │ │ │ ├── usb_pipe_repeat_reader_t.start.hpp │ │ │ │ ├── usb_pipe_request_context_t.end.hpp │ │ │ │ ├── usb_pipe_request_context_t.start.hpp │ │ │ │ ├── usb_pipe_t.end.hpp │ │ │ │ ├── usb_pipe_t.start.hpp │ │ │ │ ├── usb_pipe_transfer_context_t.end.hpp │ │ │ │ ├── usb_pipe_transfer_context_t.start.hpp │ │ │ │ ├── usb_request_context_t.end.hpp │ │ │ │ ├── usb_request_context_t.start.hpp │ │ │ │ ├── usb_urb_context_t.end.hpp │ │ │ │ ├── usb_urb_context_t.start.hpp │ │ │ │ ├── usb_urb_t.end.hpp │ │ │ │ ├── usb_urb_t.start.hpp │ │ │ │ ├── user_object_t.end.hpp │ │ │ │ ├── user_object_t.start.hpp │ │ │ │ ├── verifier_lock_t.end.hpp │ │ │ │ ├── verifier_lock_t.start.hpp │ │ │ │ ├── verifier_order_mapping_t.end.hpp │ │ │ │ ├── verifier_order_mapping_t.start.hpp │ │ │ │ ├── verifier_thread_table_entry_t.end.hpp │ │ │ │ ├── verifier_thread_table_entry_t.start.hpp │ │ │ │ ├── wait_lock_internal_t.end.hpp │ │ │ │ ├── wait_lock_internal_t.start.hpp │ │ │ │ ├── wait_lock_t.end.hpp │ │ │ │ ├── wait_lock_t.start.hpp │ │ │ │ ├── wait_lock_transactioned_list_t.end.hpp │ │ │ │ ├── wait_lock_transactioned_list_t.start.hpp │ │ │ │ ├── wake_interrupt_machine_state_history_t.end.hpp │ │ │ │ ├── wake_interrupt_machine_state_history_t.start.hpp │ │ │ │ ├── wake_interrupt_machine_t.end.hpp │ │ │ │ ├── wake_interrupt_machine_t.start.hpp │ │ │ │ ├── wake_interrupt_state_table_t.end.hpp │ │ │ │ ├── wake_interrupt_state_table_t.start.hpp │ │ │ │ ├── wake_interrupt_target_state_t.end.hpp │ │ │ │ ├── wake_interrupt_target_state_t.start.hpp │ │ │ │ ├── watchdog_t.end.hpp │ │ │ │ ├── watchdog_t.start.hpp │ │ │ │ ├── wdm_device_extension_t.end.hpp │ │ │ │ ├── wdm_device_extension_t.start.hpp │ │ │ │ ├── wmi_instance_execute_method_callback_t.end.hpp │ │ │ │ ├── wmi_instance_execute_method_callback_t.start.hpp │ │ │ │ ├── wmi_instance_external_t.end.hpp │ │ │ │ ├── wmi_instance_external_t.start.hpp │ │ │ │ ├── wmi_instance_internal_callbacks_t.end.hpp │ │ │ │ ├── wmi_instance_internal_callbacks_t.start.hpp │ │ │ │ ├── wmi_instance_internal_t.end.hpp │ │ │ │ ├── wmi_instance_internal_t.start.hpp │ │ │ │ ├── wmi_instance_query_instance_callback_t.end.hpp │ │ │ │ ├── wmi_instance_query_instance_callback_t.start.hpp │ │ │ │ ├── wmi_instance_set_instance_callback_t.end.hpp │ │ │ │ ├── wmi_instance_set_instance_callback_t.start.hpp │ │ │ │ ├── wmi_instance_set_item_callback_t.end.hpp │ │ │ │ ├── wmi_instance_set_item_callback_t.start.hpp │ │ │ │ ├── wmi_instance_t.end.hpp │ │ │ │ ├── wmi_instance_t.start.hpp │ │ │ │ ├── wmi_irp_handler_t.end.hpp │ │ │ │ ├── wmi_irp_handler_t.start.hpp │ │ │ │ ├── wmi_minor_entry_t.end.hpp │ │ │ │ ├── wmi_minor_entry_t.start.hpp │ │ │ │ ├── wmi_provider_function_control_callback_t.end.hpp │ │ │ │ ├── wmi_provider_function_control_callback_t.start.hpp │ │ │ │ ├── wmi_provider_t.end.hpp │ │ │ │ ├── wmi_provider_t.start.hpp │ │ │ │ ├── work_item_event_queue_t.end.hpp │ │ │ │ ├── work_item_event_queue_t.start.hpp │ │ │ │ ├── work_item_t.end.hpp │ │ │ │ └── work_item_t.start.hpp │ │ │ ├── mdl_debug_info_t.hpp │ │ │ ├── memory_buffer_from_lookaside_t.hpp │ │ │ ├── memory_buffer_from_pool_lookaside_t.hpp │ │ │ ├── memory_buffer_from_pool_t.hpp │ │ │ ├── memory_buffer_preallocated_t.hpp │ │ │ ├── memory_buffer_t.hpp │ │ │ ├── memory_object_t.hpp │ │ │ ├── memory_paged_buffer_from_pool_lookaside_t.hpp │ │ │ ├── memory_paged_buffer_from_pool_t.hpp │ │ │ ├── mp_device_t.hpp │ │ │ ├── n_paged_lookaside_list_from_pool_t.hpp │ │ │ ├── n_paged_lookaside_list_t.hpp │ │ │ ├── non_paged_object_t.hpp │ │ │ ├── object_debug_extension_t.hpp │ │ │ ├── object_debug_extension_values_t.hpp │ │ │ ├── object_debug_info_flags_t.hpp │ │ │ ├── object_debug_info_t.hpp │ │ │ ├── object_debug_leak_detection_t.hpp │ │ │ ├── object_dropped_event_t.hpp │ │ │ ├── object_info_t.hpp │ │ │ ├── object_lock_state_t.hpp │ │ │ ├── object_state_t.hpp │ │ │ ├── object_t.hpp │ │ │ ├── object_type_t.hpp │ │ │ ├── object_types_base_t.hpp │ │ │ ├── object_types_t.hpp │ │ │ ├── offset_and_name_t.hpp │ │ │ ├── package_t.hpp │ │ │ ├── paged_lookaside_list_from_pool_t.hpp │ │ │ ├── paged_object_t.hpp │ │ │ ├── pkg_fdo_t.hpp │ │ │ ├── pkg_general_t.hpp │ │ │ ├── pkg_io_t.hpp │ │ │ ├── pkg_pdo_t.hpp │ │ │ ├── pkg_pnp_t.hpp │ │ │ ├── pnp_cap_values_t.hpp │ │ │ ├── pnp_caps_t.hpp │ │ │ ├── pnp_device_d0_entry_post_hw_enabled_t.hpp │ │ │ ├── pnp_device_d0_entry_post_interrupts_enabled_t.hpp │ │ │ ├── pnp_device_d0_entry_t.hpp │ │ │ ├── pnp_device_d0_exit_pre_hw_disabled_t.hpp │ │ │ ├── pnp_device_d0_exit_pre_interrupts_disabled_t.hpp │ │ │ ├── pnp_device_d0_exit_t.hpp │ │ │ ├── pnp_device_eject_t.hpp │ │ │ ├── pnp_device_filter_resource_requirements_t.hpp │ │ │ ├── pnp_device_prepare_hardware_t.hpp │ │ │ ├── pnp_device_query_remove_t.hpp │ │ │ ├── pnp_device_query_stop_t.hpp │ │ │ ├── pnp_device_relations_query_t.hpp │ │ │ ├── pnp_device_release_hardware_t.hpp │ │ │ ├── pnp_device_remove_added_resources_t.hpp │ │ │ ├── pnp_device_reported_missing_t.hpp │ │ │ ├── pnp_device_resource_requirements_query_t.hpp │ │ │ ├── pnp_device_resources_query_t.hpp │ │ │ ├── pnp_device_self_managed_io_cleanup_t.hpp │ │ │ ├── pnp_device_self_managed_io_flush_t.hpp │ │ │ ├── pnp_device_self_managed_io_init_t.hpp │ │ │ ├── pnp_device_self_managed_io_restart_t.hpp │ │ │ ├── pnp_device_self_managed_io_suspend_t.hpp │ │ │ ├── pnp_device_set_lock_t.hpp │ │ │ ├── pnp_device_surprise_removal_t.hpp │ │ │ ├── pnp_device_usage_notification_ex_t.hpp │ │ │ ├── pnp_device_usage_notification_t.hpp │ │ │ ├── pnp_event_t.hpp │ │ │ ├── pnp_machine_state_history_t.hpp │ │ │ ├── pnp_machine_t.hpp │ │ │ ├── pnp_state_and_cap_values_t.hpp │ │ │ ├── pnp_state_and_caps_t.hpp │ │ │ ├── pnp_state_callback_info_t.hpp │ │ │ ├── pnp_state_callback_t.hpp │ │ │ ├── pnp_state_info_t.hpp │ │ │ ├── pnp_state_t.hpp │ │ │ ├── pnp_state_values_t.hpp │ │ │ ├── pool_header_t.hpp │ │ │ ├── pool_t.hpp │ │ │ ├── pool_tracker_t.hpp │ │ │ ├── pool_type_or_pool_flags_t.hpp │ │ │ ├── post_process_info_t.hpp │ │ │ ├── power_cap_values_t.hpp │ │ │ ├── power_caps_t.hpp │ │ │ ├── power_device_arm_wake_from_s0_t.hpp │ │ │ ├── power_device_arm_wake_from_sx_t.hpp │ │ │ ├── power_device_disable_wake_at_bus_t.hpp │ │ │ ├── power_device_disarm_wake_from_s0_t.hpp │ │ │ ├── power_device_disarm_wake_from_sx_t.hpp │ │ │ ├── power_device_enable_wake_at_bus_t.hpp │ │ │ ├── power_device_wake_from_s0_triggered_t.hpp │ │ │ ├── power_device_wake_from_sx_triggered_t.hpp │ │ │ ├── power_down_type_t.hpp │ │ │ ├── power_event_t.hpp │ │ │ ├── power_idle_events_t.hpp │ │ │ ├── power_idle_flags_t.hpp │ │ │ ├── power_idle_machine_t.hpp │ │ │ ├── power_idle_states_t.hpp │ │ │ ├── power_idle_target_state_t.hpp │ │ │ ├── power_machine_event_queue_t.hpp │ │ │ ├── power_machine_state_history_t.hpp │ │ │ ├── power_machine_t.hpp │ │ │ ├── power_policy_constants_t.hpp │ │ │ ├── power_policy_event_t.hpp │ │ │ ├── power_policy_machine_state_history_t.hpp │ │ │ ├── power_policy_machine_t.hpp │ │ │ ├── power_policy_owner_settings_t.hpp │ │ │ ├── power_policy_state_callback_info_t.hpp │ │ │ ├── power_policy_state_callback_t.hpp │ │ │ ├── power_policy_sx_wake_settings_flags_t.hpp │ │ │ ├── power_reference_flags_t.hpp │ │ │ ├── power_state_callback_info_t.hpp │ │ │ ├── power_state_callback_t.hpp │ │ │ ├── power_state_info_t.hpp │ │ │ ├── pox_interface_t.hpp │ │ │ ├── pre_post_callback_t.hpp │ │ │ ├── property_type_t.hpp │ │ │ ├── pwr_pol_state_info_t.hpp │ │ │ ├── query_interface_params_t.hpp │ │ │ ├── query_interface_t.hpp │ │ │ ├── reg_key_t.hpp │ │ │ ├── related_device_list_t.hpp │ │ │ ├── related_device_state_t.hpp │ │ │ ├── related_device_t.hpp │ │ │ ├── request_allocation_source_t.hpp │ │ │ ├── request_base_flags_t.hpp │ │ │ ├── request_base_static_flags_t.hpp │ │ │ ├── request_base_t.hpp │ │ │ ├── request_buffer_t.hpp │ │ │ ├── request_buffer_type_t.hpp │ │ │ ├── request_cancel_callback_t.hpp │ │ │ ├── request_completion_callback_t.hpp │ │ │ ├── request_completion_state_t.hpp │ │ │ ├── request_constructor_caller_t.hpp │ │ │ ├── request_context_t.hpp │ │ │ ├── request_context_types_t.hpp │ │ │ ├── request_from_lookaside_t.hpp │ │ │ ├── request_irp_ownership_t.hpp │ │ │ ├── request_memory_t.hpp │ │ │ ├── request_output_buffer_t.hpp │ │ │ ├── request_power_stop_state_t.hpp │ │ │ ├── request_system_buffer_t.hpp │ │ │ ├── request_t.hpp │ │ │ ├── request_target_flags_t.hpp │ │ │ ├── request_timer_t.hpp │ │ │ ├── request_verifier_flags_t.hpp │ │ │ ├── resource_access_flags_t.hpp │ │ │ ├── resource_cm_t.hpp │ │ │ ├── resource_collection_t.hpp │ │ │ ├── resource_io_t.hpp │ │ │ ├── self_managed_io_events_t.hpp │ │ │ ├── self_managed_io_machine_event_history_t.hpp │ │ │ ├── self_managed_io_machine_state_history_t.hpp │ │ │ ├── self_managed_io_machine_t.hpp │ │ │ ├── self_managed_io_state_table_t.hpp │ │ │ ├── self_managed_io_states_t.hpp │ │ │ ├── self_managed_io_target_state_t.hpp │ │ │ ├── shut_down_t.hpp │ │ │ ├── spin_lock_history_entry_t.hpp │ │ │ ├── spin_lock_history_t.hpp │ │ │ ├── spin_lock_t.hpp │ │ │ ├── spin_lock_transactioned_list_t.hpp │ │ │ ├── state_separation_detection_option_t.hpp │ │ │ ├── static_child_description_t.hpp │ │ │ ├── string_t.hpp │ │ │ ├── stump_t.hpp │ │ │ ├── sync_request_t.hpp │ │ │ ├── system_thread_t.hpp │ │ │ ├── system_work_item_t.hpp │ │ │ ├── tag_history_t.hpp │ │ │ ├── tag_ref_type_t.hpp │ │ │ ├── tag_tracker_t.hpp │ │ │ ├── tag_tracker_type_t.hpp │ │ │ ├── tag_tracking_block_t.hpp │ │ │ ├── tag_tracking_stack_frames_t.hpp │ │ │ ├── target_submit_sync_params_t.hpp │ │ │ ├── telemetry_context_t.hpp │ │ │ ├── telemetry_do_once_bits_t.hpp │ │ │ ├── telemetry_driver_info_t.hpp │ │ │ ├── threaded_event_queue_t.hpp │ │ │ ├── timer_t.hpp │ │ │ ├── to_object_itf_t.hpp │ │ │ ├── trace_info_t.hpp │ │ │ ├── track_power_option_t.hpp │ │ │ ├── transactioned_entry_t.hpp │ │ │ ├── transactioned_list_t.hpp │ │ │ ├── urb_type_t.hpp │ │ │ ├── usage_workitem_parameters_t.hpp │ │ │ ├── usb_device_control_context_t.hpp │ │ │ ├── usb_device_string_context_t.hpp │ │ │ ├── usb_device_t.hpp │ │ │ ├── usb_idle_info_t.hpp │ │ │ ├── usb_interface_setting_t.hpp │ │ │ ├── usb_interface_t.hpp │ │ │ ├── usb_pipe_continuous_reader_t.hpp │ │ │ ├── usb_pipe_max_transfer_size_t.hpp │ │ │ ├── usb_pipe_repeat_reader_t.hpp │ │ │ ├── usb_pipe_request_context_t.hpp │ │ │ ├── usb_pipe_t.hpp │ │ │ ├── usb_pipe_transfer_context_t.hpp │ │ │ ├── usb_request_context_t.hpp │ │ │ ├── usb_urb_context_t.hpp │ │ │ ├── usb_urb_t.hpp │ │ │ ├── usb_validate_descriptor_op_t.hpp │ │ │ ├── user_object_t.hpp │ │ │ ├── validate_functions_flags_t.hpp │ │ │ ├── validate_memory_descriptor_flags_t.hpp │ │ │ ├── verifier_downlevel_option_t.hpp │ │ │ ├── verifier_lock_t.hpp │ │ │ ├── verifier_order_mapping_t.hpp │ │ │ ├── verifier_thread_table_entry_t.hpp │ │ │ ├── wait_lock_internal_t.hpp │ │ │ ├── wait_lock_t.hpp │ │ │ ├── wait_lock_transactioned_list_t.hpp │ │ │ ├── wake_interrupt_events_t.hpp │ │ │ ├── wake_interrupt_machine_state_history_t.hpp │ │ │ ├── wake_interrupt_machine_t.hpp │ │ │ ├── wake_interrupt_state_table_t.hpp │ │ │ ├── wake_interrupt_states_t.hpp │ │ │ ├── wake_interrupt_target_state_t.hpp │ │ │ ├── watchdog_t.hpp │ │ │ ├── wdm_device_extension_t.hpp │ │ │ ├── wmi_instance_action_t.hpp │ │ │ ├── wmi_instance_execute_method_callback_t.hpp │ │ │ ├── wmi_instance_external_t.hpp │ │ │ ├── wmi_instance_internal_callbacks_t.hpp │ │ │ ├── wmi_instance_internal_t.hpp │ │ │ ├── wmi_instance_query_instance_callback_t.hpp │ │ │ ├── wmi_instance_set_instance_callback_t.hpp │ │ │ ├── wmi_instance_set_item_callback_t.hpp │ │ │ ├── wmi_instance_t.hpp │ │ │ ├── wmi_irp_handler_t.hpp │ │ │ ├── wmi_minor_entry_t.hpp │ │ │ ├── wmi_provider_function_control_callback_t.hpp │ │ │ ├── wmi_provider_t.hpp │ │ │ ├── work_item_event_queue_t.hpp │ │ │ └── work_item_t.hpp │ │ ├── gxp/ │ │ │ ├── api.hpp │ │ │ └── magic/ │ │ │ ├── api.end.hpp │ │ │ └── api.start.hpp │ │ ├── hal/ │ │ │ ├── amli_bad_io_address_list_t.hpp │ │ │ ├── api.hpp │ │ │ ├── apic_destination_mode_t.hpp │ │ │ ├── bus_information_t.hpp │ │ │ ├── callbacks_t.hpp │ │ │ ├── channel_memory_ranges_t.hpp │ │ │ ├── clock_timer_configuration_t.hpp │ │ │ ├── clock_timer_mode_t.hpp │ │ │ ├── dispatch_t.hpp │ │ │ ├── display_bios_information_t.hpp │ │ │ ├── dma_crash_dump_register_type_t.hpp │ │ │ ├── dp_replace_parameters_t.hpp │ │ │ ├── error_info_t.hpp │ │ │ ├── hv_dma_create_domain_info_t.hpp │ │ │ ├── hv_dma_domain_config_arch_t.hpp │ │ │ ├── hv_dma_domain_config_arm64_t.hpp │ │ │ ├── hv_dma_domain_config_t.hpp │ │ │ ├── hv_dma_domain_config_x64_t.hpp │ │ │ ├── hv_dma_domain_info_t.hpp │ │ │ ├── hv_dma_hybrid_passthrough_reserved_regions_t.hpp │ │ │ ├── hv_svm_device_capabilities_t.hpp │ │ │ ├── hv_svm_system_capabilities_t.hpp │ │ │ ├── init_phase_t.hpp │ │ │ ├── intel_enlightenment_information_t.hpp │ │ │ ├── iommu_dispatch_t.hpp │ │ │ ├── lbr_entry_t.hpp │ │ │ ├── log_register_context_t.hpp │ │ │ ├── magic/ │ │ │ │ ├── amli_bad_io_address_list_t.end.hpp │ │ │ │ ├── amli_bad_io_address_list_t.start.hpp │ │ │ │ ├── api.end.hpp │ │ │ │ ├── api.start.hpp │ │ │ │ ├── bus_information_t.end.hpp │ │ │ │ ├── bus_information_t.start.hpp │ │ │ │ ├── callbacks_t.end.hpp │ │ │ │ ├── callbacks_t.start.hpp │ │ │ │ ├── channel_memory_ranges_t.end.hpp │ │ │ │ ├── channel_memory_ranges_t.start.hpp │ │ │ │ ├── clock_timer_configuration_t.end.hpp │ │ │ │ ├── clock_timer_configuration_t.start.hpp │ │ │ │ ├── dispatch_t.end.hpp │ │ │ │ ├── dispatch_t.start.hpp │ │ │ │ ├── dp_replace_parameters_t.end.hpp │ │ │ │ ├── dp_replace_parameters_t.start.hpp │ │ │ │ ├── error_info_t.end.hpp │ │ │ │ ├── error_info_t.start.hpp │ │ │ │ ├── hv_dma_create_domain_info_t.end.hpp │ │ │ │ ├── hv_dma_create_domain_info_t.start.hpp │ │ │ │ ├── hv_dma_domain_config_arm64_t.end.hpp │ │ │ │ ├── hv_dma_domain_config_arm64_t.start.hpp │ │ │ │ ├── hv_dma_domain_config_t.end.hpp │ │ │ │ ├── hv_dma_domain_config_t.start.hpp │ │ │ │ ├── hv_dma_domain_config_x64_t.end.hpp │ │ │ │ ├── hv_dma_domain_config_x64_t.start.hpp │ │ │ │ ├── hv_dma_domain_info_t.end.hpp │ │ │ │ ├── hv_dma_domain_info_t.start.hpp │ │ │ │ ├── hv_dma_hybrid_passthrough_reserved_regions_t.end.hpp │ │ │ │ ├── hv_dma_hybrid_passthrough_reserved_regions_t.start.hpp │ │ │ │ ├── hv_svm_device_capabilities_t.end.hpp │ │ │ │ ├── hv_svm_device_capabilities_t.start.hpp │ │ │ │ ├── hv_svm_system_capabilities_t.end.hpp │ │ │ │ ├── hv_svm_system_capabilities_t.start.hpp │ │ │ │ ├── intel_enlightenment_information_t.end.hpp │ │ │ │ ├── intel_enlightenment_information_t.start.hpp │ │ │ │ ├── iommu_dispatch_t.end.hpp │ │ │ │ ├── iommu_dispatch_t.start.hpp │ │ │ │ ├── lbr_entry_t.end.hpp │ │ │ │ ├── lbr_entry_t.start.hpp │ │ │ │ ├── log_register_context_t.end.hpp │ │ │ │ ├── log_register_context_t.start.hpp │ │ │ │ ├── mca_interface_t.end.hpp │ │ │ │ ├── mca_interface_t.start.hpp │ │ │ │ ├── node_range_t.end.hpp │ │ │ │ ├── node_range_t.start.hpp │ │ │ │ ├── platform_information_t.end.hpp │ │ │ │ ├── platform_information_t.start.hpp │ │ │ │ ├── power_information_t.end.hpp │ │ │ │ ├── power_information_t.start.hpp │ │ │ │ ├── private_dispatch_t.end.hpp │ │ │ │ ├── private_dispatch_t.start.hpp │ │ │ │ ├── processor_feature_t.end.hpp │ │ │ │ ├── processor_feature_t.start.hpp │ │ │ │ ├── processor_speed_info_t.end.hpp │ │ │ │ ├── processor_speed_info_t.start.hpp │ │ │ │ ├── unmasked_interrupt_flags_t.end.hpp │ │ │ │ ├── unmasked_interrupt_flags_t.start.hpp │ │ │ │ ├── unmasked_interrupt_information_t.end.hpp │ │ │ │ └── unmasked_interrupt_information_t.start.hpp │ │ │ ├── mca_interface_t.hpp │ │ │ ├── node_range_t.hpp │ │ │ ├── platform_information_t.hpp │ │ │ ├── pmc_counters_t.hpp │ │ │ ├── power_information_t.hpp │ │ │ ├── private_dispatch_t.hpp │ │ │ ├── processor_feature_t.hpp │ │ │ ├── processor_speed_info_t.hpp │ │ │ ├── processor_stat_type_t.hpp │ │ │ ├── query_information_class_t.hpp │ │ │ ├── set_information_class_t.hpp │ │ │ ├── unmasked_interrupt_flags_t.hpp │ │ │ └── unmasked_interrupt_information_t.hpp │ │ ├── hali/ │ │ │ ├── api.hpp │ │ │ └── magic/ │ │ │ ├── api.end.hpp │ │ │ └── api.start.hpp │ │ ├── halp/ │ │ │ ├── alloc_context_t.hpp │ │ │ ├── api.hpp │ │ │ ├── dma_adapter_allocation_state_t.hpp │ │ │ ├── dma_adapter_object_t.hpp │ │ │ ├── dma_channel_t.hpp │ │ │ ├── dma_controller_t.hpp │ │ │ ├── dma_domain_object_t.hpp │ │ │ ├── dma_map_buffer_type_t.hpp │ │ │ ├── dma_master_adapter_object_t.hpp │ │ │ ├── dma_translation_buffer_position_t.hpp │ │ │ ├── dma_translation_buffer_t.hpp │ │ │ ├── dma_translation_entry_t.hpp │ │ │ ├── dma_translation_type_t.hpp │ │ │ ├── emergency_la_queue_entry_t.hpp │ │ │ ├── emergency_la_queue_type_t.hpp │ │ │ └── magic/ │ │ │ ├── alloc_context_t.end.hpp │ │ │ ├── alloc_context_t.start.hpp │ │ │ ├── api.end.hpp │ │ │ ├── api.start.hpp │ │ │ ├── dma_adapter_object_t.end.hpp │ │ │ ├── dma_adapter_object_t.start.hpp │ │ │ ├── dma_channel_t.end.hpp │ │ │ ├── dma_channel_t.start.hpp │ │ │ ├── dma_controller_t.end.hpp │ │ │ ├── dma_controller_t.start.hpp │ │ │ ├── dma_domain_object_t.end.hpp │ │ │ ├── dma_domain_object_t.start.hpp │ │ │ ├── dma_master_adapter_object_t.end.hpp │ │ │ ├── dma_master_adapter_object_t.start.hpp │ │ │ ├── dma_translation_buffer_position_t.end.hpp │ │ │ ├── dma_translation_buffer_position_t.start.hpp │ │ │ ├── dma_translation_buffer_t.end.hpp │ │ │ ├── dma_translation_buffer_t.start.hpp │ │ │ ├── dma_translation_entry_t.end.hpp │ │ │ ├── dma_translation_entry_t.start.hpp │ │ │ ├── emergency_la_queue_entry_t.end.hpp │ │ │ └── emergency_la_queue_entry_t.start.hpp │ │ ├── hdlsp/ │ │ │ ├── api.hpp │ │ │ └── magic/ │ │ │ ├── api.end.hpp │ │ │ └── api.start.hpp │ │ ├── heap/ │ │ │ ├── affinity_slot_assign_t.hpp │ │ │ ├── afinity_manager_enable_t.hpp │ │ │ ├── api.hpp │ │ │ ├── block_extra_information_t.hpp │ │ │ ├── block_information_t.hpp │ │ │ ├── block_settable_information_t.hpp │ │ │ ├── bucket_counters_t.hpp │ │ │ ├── bucket_run_info_t.hpp │ │ │ ├── bucket_t.hpp │ │ │ ├── commit_decommit_t.hpp │ │ │ ├── counters_t.hpp │ │ │ ├── descriptor_key_t.hpp │ │ │ ├── entry_extra_t.hpp │ │ │ ├── entry_t.hpp │ │ │ ├── event_commit_decommit_t.hpp │ │ │ ├── event_range_create_t.hpp │ │ │ ├── event_range_t.hpp │ │ │ ├── event_subsegment_alloc_free_t.hpp │ │ │ ├── extended_entry_t.hpp │ │ │ ├── extended_information_t.hpp │ │ │ ├── failure_information_t.hpp │ │ │ ├── failure_type_t.hpp │ │ │ ├── free_entry_extra_t.hpp │ │ │ ├── free_entry_t.hpp │ │ │ ├── global_appcompat_flags_t.hpp │ │ │ ├── information_class_t.hpp │ │ │ ├── information_item_t.hpp │ │ │ ├── information_t.hpp │ │ │ ├── large_alloc_data_t.hpp │ │ │ ├── lfh_affinity_slot_t.hpp │ │ │ ├── lfh_bucket_t.hpp │ │ │ ├── lfh_context_t.hpp │ │ │ ├── lfh_fast_ref_t.hpp │ │ │ ├── lfh_lockmode_t.hpp │ │ │ ├── lfh_mem_policies_t.hpp │ │ │ ├── lfh_ondemand_pointer_t.hpp │ │ │ ├── lfh_subsegment_cache_t.hpp │ │ │ ├── lfh_subsegment_delay_free_t.hpp │ │ │ ├── lfh_subsegment_encoded_offsets_t.hpp │ │ │ ├── lfh_subsegment_owner_t.hpp │ │ │ ├── lfh_subsegment_stat_t.hpp │ │ │ ├── lfh_subsegment_stats_t.hpp │ │ │ ├── lfh_subsegment_t.hpp │ │ │ ├── lfh_unused_bytes_info_t.hpp │ │ │ ├── list_lookup_t.hpp │ │ │ ├── local_data_t.hpp │ │ │ ├── local_segment_info_t.hpp │ │ │ ├── lock_t.hpp │ │ │ ├── lookaside_t.hpp │ │ │ ├── magic/ │ │ │ │ ├── affinity_slot_assign_t.end.hpp │ │ │ │ ├── affinity_slot_assign_t.start.hpp │ │ │ │ ├── afinity_manager_enable_t.end.hpp │ │ │ │ ├── afinity_manager_enable_t.start.hpp │ │ │ │ ├── api.end.hpp │ │ │ │ ├── api.start.hpp │ │ │ │ ├── block_extra_information_t.end.hpp │ │ │ │ ├── block_extra_information_t.start.hpp │ │ │ │ ├── block_information_t.end.hpp │ │ │ │ ├── block_information_t.start.hpp │ │ │ │ ├── block_settable_information_t.end.hpp │ │ │ │ ├── block_settable_information_t.start.hpp │ │ │ │ ├── bucket_counters_t.end.hpp │ │ │ │ ├── bucket_counters_t.start.hpp │ │ │ │ ├── bucket_run_info_t.end.hpp │ │ │ │ ├── bucket_run_info_t.start.hpp │ │ │ │ ├── bucket_t.end.hpp │ │ │ │ ├── bucket_t.start.hpp │ │ │ │ ├── commit_decommit_t.end.hpp │ │ │ │ ├── commit_decommit_t.start.hpp │ │ │ │ ├── counters_t.end.hpp │ │ │ │ ├── counters_t.start.hpp │ │ │ │ ├── descriptor_key_t.end.hpp │ │ │ │ ├── descriptor_key_t.start.hpp │ │ │ │ ├── entry_extra_t.end.hpp │ │ │ │ ├── entry_extra_t.start.hpp │ │ │ │ ├── entry_t.end.hpp │ │ │ │ ├── entry_t.start.hpp │ │ │ │ ├── event_commit_decommit_t.end.hpp │ │ │ │ ├── event_commit_decommit_t.start.hpp │ │ │ │ ├── event_range_create_t.end.hpp │ │ │ │ ├── event_range_create_t.start.hpp │ │ │ │ ├── event_range_t.end.hpp │ │ │ │ ├── event_range_t.start.hpp │ │ │ │ ├── event_subsegment_alloc_free_t.end.hpp │ │ │ │ ├── event_subsegment_alloc_free_t.start.hpp │ │ │ │ ├── extended_entry_t.end.hpp │ │ │ │ ├── extended_entry_t.start.hpp │ │ │ │ ├── extended_information_t.end.hpp │ │ │ │ ├── extended_information_t.start.hpp │ │ │ │ ├── failure_information_t.end.hpp │ │ │ │ ├── failure_information_t.start.hpp │ │ │ │ ├── free_entry_extra_t.end.hpp │ │ │ │ ├── free_entry_extra_t.start.hpp │ │ │ │ ├── free_entry_t.end.hpp │ │ │ │ ├── free_entry_t.start.hpp │ │ │ │ ├── global_appcompat_flags_t.end.hpp │ │ │ │ ├── global_appcompat_flags_t.start.hpp │ │ │ │ ├── information_item_t.end.hpp │ │ │ │ ├── information_item_t.start.hpp │ │ │ │ ├── information_t.end.hpp │ │ │ │ ├── information_t.start.hpp │ │ │ │ ├── large_alloc_data_t.end.hpp │ │ │ │ ├── large_alloc_data_t.start.hpp │ │ │ │ ├── lfh_affinity_slot_t.end.hpp │ │ │ │ ├── lfh_affinity_slot_t.start.hpp │ │ │ │ ├── lfh_bucket_t.end.hpp │ │ │ │ ├── lfh_bucket_t.start.hpp │ │ │ │ ├── lfh_context_t.end.hpp │ │ │ │ ├── lfh_context_t.start.hpp │ │ │ │ ├── lfh_fast_ref_t.end.hpp │ │ │ │ ├── lfh_fast_ref_t.start.hpp │ │ │ │ ├── lfh_mem_policies_t.end.hpp │ │ │ │ ├── lfh_mem_policies_t.start.hpp │ │ │ │ ├── lfh_ondemand_pointer_t.end.hpp │ │ │ │ ├── lfh_ondemand_pointer_t.start.hpp │ │ │ │ ├── lfh_subsegment_cache_t.end.hpp │ │ │ │ ├── lfh_subsegment_cache_t.start.hpp │ │ │ │ ├── lfh_subsegment_delay_free_t.end.hpp │ │ │ │ ├── lfh_subsegment_delay_free_t.start.hpp │ │ │ │ ├── lfh_subsegment_encoded_offsets_t.end.hpp │ │ │ │ ├── lfh_subsegment_encoded_offsets_t.start.hpp │ │ │ │ ├── lfh_subsegment_owner_t.end.hpp │ │ │ │ ├── lfh_subsegment_owner_t.start.hpp │ │ │ │ ├── lfh_subsegment_stat_t.end.hpp │ │ │ │ ├── lfh_subsegment_stat_t.start.hpp │ │ │ │ ├── lfh_subsegment_stats_t.end.hpp │ │ │ │ ├── lfh_subsegment_stats_t.start.hpp │ │ │ │ ├── lfh_subsegment_t.end.hpp │ │ │ │ ├── lfh_subsegment_t.start.hpp │ │ │ │ ├── lfh_unused_bytes_info_t.end.hpp │ │ │ │ ├── lfh_unused_bytes_info_t.start.hpp │ │ │ │ ├── list_lookup_t.end.hpp │ │ │ │ ├── list_lookup_t.start.hpp │ │ │ │ ├── local_data_t.end.hpp │ │ │ │ ├── local_data_t.start.hpp │ │ │ │ ├── local_segment_info_t.end.hpp │ │ │ │ ├── local_segment_info_t.start.hpp │ │ │ │ ├── lock_t.end.hpp │ │ │ │ ├── lock_t.start.hpp │ │ │ │ ├── lookaside_t.end.hpp │ │ │ │ ├── lookaside_t.start.hpp │ │ │ │ ├── opportunistic_large_page_stats_t.end.hpp │ │ │ │ ├── opportunistic_large_page_stats_t.start.hpp │ │ │ │ ├── optimize_resources_information_t.end.hpp │ │ │ │ ├── optimize_resources_information_t.start.hpp │ │ │ │ ├── page_range_descriptor_t.end.hpp │ │ │ │ ├── page_range_descriptor_t.start.hpp │ │ │ │ ├── page_segment_t.end.hpp │ │ │ │ ├── page_segment_t.start.hpp │ │ │ │ ├── performance_counters_information_t.end.hpp │ │ │ │ ├── performance_counters_information_t.start.hpp │ │ │ │ ├── pseudo_tag_entry_t.end.hpp │ │ │ │ ├── pseudo_tag_entry_t.start.hpp │ │ │ │ ├── range_create_t.end.hpp │ │ │ │ ├── range_create_t.start.hpp │ │ │ │ ├── range_destroy_t.end.hpp │ │ │ │ ├── range_destroy_t.start.hpp │ │ │ │ ├── range_information_t.end.hpp │ │ │ │ ├── range_information_t.start.hpp │ │ │ │ ├── range_log_t.end.hpp │ │ │ │ ├── range_log_t.start.hpp │ │ │ │ ├── region_information_t.end.hpp │ │ │ │ ├── region_information_t.start.hpp │ │ │ │ ├── reuse_threshold_activated_t.end.hpp │ │ │ │ ├── reuse_threshold_activated_t.start.hpp │ │ │ │ ├── runtime_memory_stats_t.end.hpp │ │ │ │ ├── runtime_memory_stats_t.start.hpp │ │ │ │ ├── seg_context_t.end.hpp │ │ │ │ ├── seg_context_t.start.hpp │ │ │ │ ├── segment_mgr_commit_state_t.end.hpp │ │ │ │ ├── segment_mgr_commit_state_t.start.hpp │ │ │ │ ├── segment_t.end.hpp │ │ │ │ ├── segment_t.start.hpp │ │ │ │ ├── stop_on_tag_t.end.hpp │ │ │ │ ├── stop_on_tag_t.start.hpp │ │ │ │ ├── stop_on_values_t.end.hpp │ │ │ │ ├── stop_on_values_t.start.hpp │ │ │ │ ├── suballocator_callbacks_t.end.hpp │ │ │ │ ├── suballocator_callbacks_t.start.hpp │ │ │ │ ├── subsegment_activated_t.end.hpp │ │ │ │ ├── subsegment_activated_t.start.hpp │ │ │ │ ├── subsegment_alloc_t.end.hpp │ │ │ │ ├── subsegment_alloc_t.start.hpp │ │ │ │ ├── subsegment_free_t.end.hpp │ │ │ │ ├── subsegment_free_t.start.hpp │ │ │ │ ├── subsegment_init_t.end.hpp │ │ │ │ ├── subsegment_init_t.start.hpp │ │ │ │ ├── subsegment_t.end.hpp │ │ │ │ ├── subsegment_t.start.hpp │ │ │ │ ├── summary_t.end.hpp │ │ │ │ ├── summary_t.start.hpp │ │ │ │ ├── tag_entry_t.end.hpp │ │ │ │ ├── tag_entry_t.start.hpp │ │ │ │ ├── tuning_parameters_t.end.hpp │ │ │ │ ├── tuning_parameters_t.start.hpp │ │ │ │ ├── ucr_descriptor_t.end.hpp │ │ │ │ ├── ucr_descriptor_t.start.hpp │ │ │ │ ├── unpacked_entry_t.end.hpp │ │ │ │ ├── unpacked_entry_t.start.hpp │ │ │ │ ├── userdata_header_t.end.hpp │ │ │ │ ├── userdata_header_t.start.hpp │ │ │ │ ├── userdata_offsets_t.end.hpp │ │ │ │ ├── userdata_offsets_t.start.hpp │ │ │ │ ├── vamgr_allocator_t.end.hpp │ │ │ │ ├── vamgr_allocator_t.start.hpp │ │ │ │ ├── vamgr_ctx_t.end.hpp │ │ │ │ ├── vamgr_ctx_t.start.hpp │ │ │ │ ├── vamgr_range_t.end.hpp │ │ │ │ ├── vamgr_range_t.start.hpp │ │ │ │ ├── vamgr_vaspace_t.end.hpp │ │ │ │ ├── vamgr_vaspace_t.start.hpp │ │ │ │ ├── virtual_alloc_entry_t.end.hpp │ │ │ │ ├── virtual_alloc_entry_t.start.hpp │ │ │ │ ├── vs_chunk_free_header_t.end.hpp │ │ │ │ ├── vs_chunk_free_header_t.start.hpp │ │ │ │ ├── vs_chunk_header_size_t.end.hpp │ │ │ │ ├── vs_chunk_header_size_t.start.hpp │ │ │ │ ├── vs_chunk_header_t.end.hpp │ │ │ │ ├── vs_chunk_header_t.start.hpp │ │ │ │ ├── vs_context_t.end.hpp │ │ │ │ ├── vs_context_t.start.hpp │ │ │ │ ├── vs_delay_free_context_t.end.hpp │ │ │ │ ├── vs_delay_free_context_t.start.hpp │ │ │ │ ├── vs_subsegment_t.end.hpp │ │ │ │ ├── vs_subsegment_t.start.hpp │ │ │ │ ├── vs_unused_bytes_info_t.end.hpp │ │ │ │ └── vs_unused_bytes_info_t.start.hpp │ │ │ ├── opportunistic_large_page_stats_t.hpp │ │ │ ├── optimize_resources_information_t.hpp │ │ │ ├── page_range_descriptor_t.hpp │ │ │ ├── page_segment_t.hpp │ │ │ ├── performance_counters_information_t.hpp │ │ │ ├── pseudo_tag_entry_t.hpp │ │ │ ├── range_create_t.hpp │ │ │ ├── range_destroy_t.hpp │ │ │ ├── range_information_t.hpp │ │ │ ├── range_log_t.hpp │ │ │ ├── region_information_t.hpp │ │ │ ├── reuse_threshold_activated_t.hpp │ │ │ ├── runtime_memory_stats_t.hpp │ │ │ ├── seg_context_t.hpp │ │ │ ├── seg_range_type_t.hpp │ │ │ ├── segment_mgr_commit_state_t.hpp │ │ │ ├── segment_t.hpp │ │ │ ├── segmgr_large_page_policy_t.hpp │ │ │ ├── stop_on_tag_t.hpp │ │ │ ├── stop_on_values_t.hpp │ │ │ ├── suballocator_callbacks_t.hpp │ │ │ ├── subsegment_activated_t.hpp │ │ │ ├── subsegment_alloc_t.hpp │ │ │ ├── subsegment_free_t.hpp │ │ │ ├── subsegment_init_t.hpp │ │ │ ├── subsegment_t.hpp │ │ │ ├── summary_t.hpp │ │ │ ├── tag_entry_t.hpp │ │ │ ├── tuning_parameters_t.hpp │ │ │ ├── ucr_descriptor_t.hpp │ │ │ ├── unpacked_entry_t.hpp │ │ │ ├── userdata_header_t.hpp │ │ │ ├── userdata_offsets_t.hpp │ │ │ ├── vamgr_allocator_t.hpp │ │ │ ├── vamgr_ctx_t.hpp │ │ │ ├── vamgr_range_t.hpp │ │ │ ├── vamgr_vaspace_t.hpp │ │ │ ├── virtual_alloc_entry_t.hpp │ │ │ ├── vs_chunk_free_header_t.hpp │ │ │ ├── vs_chunk_header_size_t.hpp │ │ │ ├── vs_chunk_header_t.hpp │ │ │ ├── vs_context_t.hpp │ │ │ ├── vs_delay_free_context_t.hpp │ │ │ ├── vs_subsegment_t.hpp │ │ │ └── vs_unused_bytes_info_t.hpp │ │ ├── hid/ │ │ │ ├── api.hpp │ │ │ ├── collection_information_t.hpp │ │ │ ├── collection_state_t.hpp │ │ │ ├── descriptor_desc_list_t.hpp │ │ │ ├── descriptor_t.hpp │ │ │ ├── device_attributes_t.hpp │ │ │ ├── device_extension_t.hpp │ │ │ ├── device_object_state_t.hpp │ │ │ ├── devicepresence_t.hpp │ │ │ ├── devicereset_t.hpp │ │ │ ├── event_priority_t.hpp │ │ │ ├── event_queue_t.hpp │ │ │ ├── event_t.hpp │ │ │ ├── fdo_extension_t.hpp │ │ │ ├── generic_state_t.hpp │ │ │ ├── handle_tracking_types_t.hpp │ │ │ ├── hidclass_collection_t.hpp │ │ │ ├── hidclass_collection_type_t.hpp │ │ │ ├── hidclass_device_extension_t.hpp │ │ │ ├── hidclass_driver_extension_t.hpp │ │ │ ├── hidclass_pingpong_t.hpp │ │ │ ├── hidsm_event_t.hpp │ │ │ ├── hidsm_state_t.hpp │ │ │ ├── hidsm_subsm_flags_t.hpp │ │ │ ├── input_suppression_support_t.hpp │ │ │ ├── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ ├── api.start.hpp │ │ │ │ ├── collection_information_t.end.hpp │ │ │ │ ├── collection_information_t.start.hpp │ │ │ │ ├── descriptor_desc_list_t.end.hpp │ │ │ │ ├── descriptor_desc_list_t.start.hpp │ │ │ │ ├── descriptor_t.end.hpp │ │ │ │ ├── descriptor_t.start.hpp │ │ │ │ ├── device_attributes_t.end.hpp │ │ │ │ ├── device_attributes_t.start.hpp │ │ │ │ ├── device_extension_t.end.hpp │ │ │ │ ├── device_extension_t.start.hpp │ │ │ │ ├── devicepresence_t.end.hpp │ │ │ │ ├── devicepresence_t.start.hpp │ │ │ │ ├── devicereset_t.end.hpp │ │ │ │ ├── devicereset_t.start.hpp │ │ │ │ ├── event_queue_t.end.hpp │ │ │ │ ├── event_queue_t.start.hpp │ │ │ │ ├── event_t.end.hpp │ │ │ │ ├── event_t.start.hpp │ │ │ │ ├── fdo_extension_t.end.hpp │ │ │ │ ├── fdo_extension_t.start.hpp │ │ │ │ ├── hidclass_collection_t.end.hpp │ │ │ │ ├── hidclass_collection_t.start.hpp │ │ │ │ ├── hidclass_device_extension_t.end.hpp │ │ │ │ ├── hidclass_device_extension_t.start.hpp │ │ │ │ ├── hidclass_driver_extension_t.end.hpp │ │ │ │ ├── hidclass_driver_extension_t.start.hpp │ │ │ │ ├── hidclass_pingpong_t.end.hpp │ │ │ │ ├── hidclass_pingpong_t.start.hpp │ │ │ │ ├── pdo_extension_t.end.hpp │ │ │ │ ├── pdo_extension_t.start.hpp │ │ │ │ ├── pofx_ref_tracker_t.end.hpp │ │ │ │ ├── pofx_ref_tracker_t.start.hpp │ │ │ │ ├── rt_power_data_t.end.hpp │ │ │ │ ├── rt_power_data_t.start.hpp │ │ │ │ ├── rt_power_engine_t.end.hpp │ │ │ │ ├── rt_power_engine_t.start.hpp │ │ │ │ ├── rt_power_state_t.end.hpp │ │ │ │ ├── rt_power_state_t.start.hpp │ │ │ │ ├── state_entry_t.end.hpp │ │ │ │ ├── state_entry_t.start.hpp │ │ │ │ ├── state_log_t.end.hpp │ │ │ │ ├── state_log_t.start.hpp │ │ │ │ ├── state_t.end.hpp │ │ │ │ ├── state_t.start.hpp │ │ │ │ ├── state_transition_t.end.hpp │ │ │ │ ├── state_transition_t.start.hpp │ │ │ │ ├── submit_idle_notification_callback_info_t.end.hpp │ │ │ │ ├── submit_idle_notification_callback_info_t.start.hpp │ │ │ │ ├── subsm_entry_t.end.hpp │ │ │ │ ├── subsm_entry_t.start.hpp │ │ │ │ ├── subsm_flags_t.end.hpp │ │ │ │ ├── subsm_flags_t.start.hpp │ │ │ │ ├── wmiguidreginfo_t.end.hpp │ │ │ │ ├── wmiguidreginfo_t.start.hpp │ │ │ │ ├── wmilib_context_t.end.hpp │ │ │ │ └── wmilib_context_t.start.hpp │ │ │ ├── pdo_extension_t.hpp │ │ │ ├── ping_pong_state_t.hpp │ │ │ ├── pofx_ref_tracker_t.hpp │ │ │ ├── power_policy_t.hpp │ │ │ ├── rt_power_data_t.hpp │ │ │ ├── rt_power_engine_t.hpp │ │ │ ├── rt_power_state_t.hpp │ │ │ ├── ss_component_t.hpp │ │ │ ├── state_entry_t.hpp │ │ │ ├── state_flags_t.hpp │ │ │ ├── state_log_t.hpp │ │ │ ├── state_t.hpp │ │ │ ├── state_transition_t.hpp │ │ │ ├── submit_idle_notification_callback_info_t.hpp │ │ │ ├── subsm_entry_t.hpp │ │ │ ├── subsm_flags_t.hpp │ │ │ ├── system_input_suppression_support_t.hpp │ │ │ ├── wake_screen_on_input_support_t.hpp │ │ │ ├── wakestate_t.hpp │ │ │ ├── wmienabledisablecontrol_t.hpp │ │ │ ├── wmiguidreginfo_t.hpp │ │ │ ├── wmilib_context_t.hpp │ │ │ └── xfer_packet_t.hpp │ │ ├── hidp/ │ │ │ ├── api.hpp │ │ │ ├── collection_desc_t.hpp │ │ │ ├── device_desc_t.hpp │ │ │ ├── getcoldesc_dbg_t.hpp │ │ │ ├── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ ├── api.start.hpp │ │ │ │ ├── collection_desc_t.end.hpp │ │ │ │ ├── collection_desc_t.start.hpp │ │ │ │ ├── device_desc_t.end.hpp │ │ │ │ ├── device_desc_t.start.hpp │ │ │ │ ├── getcoldesc_dbg_t.end.hpp │ │ │ │ ├── getcoldesc_dbg_t.start.hpp │ │ │ │ ├── report_ids_t.end.hpp │ │ │ │ └── report_ids_t.start.hpp │ │ │ ├── preparsed_data_t.hpp │ │ │ └── report_ids_t.hpp │ │ ├── hsa/ │ │ │ ├── api.hpp │ │ │ └── magic/ │ │ │ ├── api.end.hpp │ │ │ └── api.start.hpp │ │ ├── hv/ │ │ │ ├── api.hpp │ │ │ ├── details_t.hpp │ │ │ ├── ext_epf_mode_t.hpp │ │ │ ├── get_bin_context_t.hpp │ │ │ ├── get_cell_context_t.hpp │ │ │ ├── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ ├── api.start.hpp │ │ │ │ ├── details_t.end.hpp │ │ │ │ ├── details_t.start.hpp │ │ │ │ ├── get_bin_context_t.end.hpp │ │ │ │ ├── get_bin_context_t.start.hpp │ │ │ │ ├── get_cell_context_t.end.hpp │ │ │ │ ├── get_cell_context_t.start.hpp │ │ │ │ ├── partition_privilege_mask_t.end.hpp │ │ │ │ ├── partition_privilege_mask_t.start.hpp │ │ │ │ ├── x64_hypervisor_features_t.end.hpp │ │ │ │ └── x64_hypervisor_features_t.start.hpp │ │ │ ├── partition_privilege_mask_t.hpp │ │ │ ├── subnode_type_t.hpp │ │ │ └── x64_hypervisor_features_t.hpp │ │ ├── hvi/ │ │ │ ├── api.hpp │ │ │ └── magic/ │ │ │ ├── api.end.hpp │ │ │ └── api.start.hpp │ │ ├── hvl/ │ │ │ ├── api.hpp │ │ │ └── magic/ │ │ │ ├── api.end.hpp │ │ │ └── api.start.hpp │ │ ├── hvlp/ │ │ │ ├── api.hpp │ │ │ └── magic/ │ │ │ ├── api.end.hpp │ │ │ └── api.start.hpp │ │ ├── hvp/ │ │ │ ├── api.hpp │ │ │ ├── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ ├── api.start.hpp │ │ │ │ ├── view_map_t.end.hpp │ │ │ │ └── view_map_t.start.hpp │ │ │ └── view_map_t.hpp │ │ ├── image/ │ │ │ ├── alpha64_runtime_function_entry_t.hpp │ │ │ ├── alpha_runtime_function_entry_t.hpp │ │ │ ├── api.hpp │ │ │ ├── architecture_entry_t.hpp │ │ │ ├── architecture_header_t.hpp │ │ │ ├── archive_member_header_t.hpp │ │ │ ├── arm64_runtime_function_entry_t.hpp │ │ │ ├── arm64_runtime_function_entry_xdata_t.hpp │ │ │ ├── arm64ec_code_range_entry_point_t.hpp │ │ │ ├── arm64ec_metadata_t.hpp │ │ │ ├── arm64ec_redirection_entry_t.hpp │ │ │ ├── arm_runtime_function_entry_t.hpp │ │ │ ├── aux_symbol_ex_t.hpp │ │ │ ├── aux_symbol_t.hpp │ │ │ ├── aux_symbol_token_def_t.hpp │ │ │ ├── aux_symbol_type_t.hpp │ │ │ ├── base_relocation_t.hpp │ │ │ ├── bound_forwarder_ref_t.hpp │ │ │ ├── bound_import_descriptor_t.hpp │ │ │ ├── ce_runtime_function_entry_t.hpp │ │ │ ├── chpe_metadata_x86_t.hpp │ │ │ ├── chpe_range_entry_t.hpp │ │ │ ├── coff_symbols_header_t.hpp │ │ │ ├── cor20_header_t.hpp │ │ │ ├── cor_ilmethod_fat_t.hpp │ │ │ ├── cor_ilmethod_sect_eh_clause_fat_t.hpp │ │ │ ├── cor_ilmethod_sect_eh_clause_small_t.hpp │ │ │ ├── cor_ilmethod_sect_eh_fat_t.hpp │ │ │ ├── cor_ilmethod_sect_eh_small_t.hpp │ │ │ ├── cor_ilmethod_sect_eh_t.hpp │ │ │ ├── cor_ilmethod_sect_fat_t.hpp │ │ │ ├── cor_ilmethod_sect_small_t.hpp │ │ │ ├── cor_ilmethod_t.hpp │ │ │ ├── cor_ilmethod_tiny_t.hpp │ │ │ ├── cor_vtablefixup_t.hpp │ │ │ ├── data_directory_t.hpp │ │ │ ├── debug_directory_t.hpp │ │ │ ├── debug_misc_t.hpp │ │ │ ├── delayload_descriptor_t.hpp │ │ │ ├── dos_header_t.hpp │ │ │ ├── dvrt_arm64x_delta_fixup_record_t.hpp │ │ │ ├── dvrt_arm64x_fixup_record_t.hpp │ │ │ ├── dynamic_relocation32_t.hpp │ │ │ ├── dynamic_relocation32_v2_t.hpp │ │ │ ├── dynamic_relocation64_t.hpp │ │ │ ├── dynamic_relocation64_v2_t.hpp │ │ │ ├── dynamic_relocation_t.hpp │ │ │ ├── dynamic_relocation_table_t.hpp │ │ │ ├── enclave_config32_t.hpp │ │ │ ├── enclave_config64_t.hpp │ │ │ ├── enclave_import_t.hpp │ │ │ ├── epilogue_dynamic_relocation_header_t.hpp │ │ │ ├── export_directory_t.hpp │ │ │ ├── file_header_t.hpp │ │ │ ├── function_entry64_t.hpp │ │ │ ├── function_entry_t.hpp │ │ │ ├── hot_patch_base_t.hpp │ │ │ ├── hot_patch_hashes_t.hpp │ │ │ ├── hot_patch_info_t.hpp │ │ │ ├── hybrid_metadata_x86_t.hpp │ │ │ ├── hybrid_range_entry_t.hpp │ │ │ ├── import_by_name_t.hpp │ │ │ ├── import_control_transfer_dynamic_relocation_t.hpp │ │ │ ├── import_descriptor_t.hpp │ │ │ ├── indir_control_transfer_dynamic_relocation_t.hpp │ │ │ ├── info_ex_t.hpp │ │ │ ├── info_t.hpp │ │ │ ├── linenumber_t.hpp │ │ │ ├── load_config_code_integrity_t.hpp │ │ │ ├── load_config_directory32_t.hpp │ │ │ ├── load_config_directory64_t.hpp │ │ │ ├── magic/ │ │ │ │ ├── alpha64_runtime_function_entry_t.end.hpp │ │ │ │ ├── alpha64_runtime_function_entry_t.start.hpp │ │ │ │ ├── alpha_runtime_function_entry_t.end.hpp │ │ │ │ ├── alpha_runtime_function_entry_t.start.hpp │ │ │ │ ├── api.end.hpp │ │ │ │ ├── api.start.hpp │ │ │ │ ├── architecture_entry_t.end.hpp │ │ │ │ ├── architecture_entry_t.start.hpp │ │ │ │ ├── architecture_header_t.end.hpp │ │ │ │ ├── architecture_header_t.start.hpp │ │ │ │ ├── archive_member_header_t.end.hpp │ │ │ │ ├── archive_member_header_t.start.hpp │ │ │ │ ├── arm64_runtime_function_entry_t.end.hpp │ │ │ │ ├── arm64_runtime_function_entry_t.start.hpp │ │ │ │ ├── arm64_runtime_function_entry_xdata_t.end.hpp │ │ │ │ ├── arm64_runtime_function_entry_xdata_t.start.hpp │ │ │ │ ├── arm64ec_code_range_entry_point_t.end.hpp │ │ │ │ ├── arm64ec_code_range_entry_point_t.start.hpp │ │ │ │ ├── arm64ec_metadata_t.end.hpp │ │ │ │ ├── arm64ec_metadata_t.start.hpp │ │ │ │ ├── arm64ec_redirection_entry_t.end.hpp │ │ │ │ ├── arm64ec_redirection_entry_t.start.hpp │ │ │ │ ├── arm_runtime_function_entry_t.end.hpp │ │ │ │ ├── arm_runtime_function_entry_t.start.hpp │ │ │ │ ├── aux_symbol_ex_t.end.hpp │ │ │ │ ├── aux_symbol_ex_t.start.hpp │ │ │ │ ├── aux_symbol_t.end.hpp │ │ │ │ ├── aux_symbol_t.start.hpp │ │ │ │ ├── aux_symbol_token_def_t.end.hpp │ │ │ │ ├── aux_symbol_token_def_t.start.hpp │ │ │ │ ├── base_relocation_t.end.hpp │ │ │ │ ├── base_relocation_t.start.hpp │ │ │ │ ├── bound_forwarder_ref_t.end.hpp │ │ │ │ ├── bound_forwarder_ref_t.start.hpp │ │ │ │ ├── bound_import_descriptor_t.end.hpp │ │ │ │ ├── bound_import_descriptor_t.start.hpp │ │ │ │ ├── ce_runtime_function_entry_t.end.hpp │ │ │ │ ├── ce_runtime_function_entry_t.start.hpp │ │ │ │ ├── chpe_metadata_x86_t.end.hpp │ │ │ │ ├── chpe_metadata_x86_t.start.hpp │ │ │ │ ├── chpe_range_entry_t.end.hpp │ │ │ │ ├── chpe_range_entry_t.start.hpp │ │ │ │ ├── coff_symbols_header_t.end.hpp │ │ │ │ ├── coff_symbols_header_t.start.hpp │ │ │ │ ├── cor20_header_t.end.hpp │ │ │ │ ├── cor20_header_t.start.hpp │ │ │ │ ├── cor_ilmethod_fat_t.end.hpp │ │ │ │ ├── cor_ilmethod_fat_t.start.hpp │ │ │ │ ├── cor_ilmethod_sect_eh_clause_fat_t.end.hpp │ │ │ │ ├── cor_ilmethod_sect_eh_clause_fat_t.start.hpp │ │ │ │ ├── cor_ilmethod_sect_eh_clause_small_t.end.hpp │ │ │ │ ├── cor_ilmethod_sect_eh_clause_small_t.start.hpp │ │ │ │ ├── cor_ilmethod_sect_eh_fat_t.end.hpp │ │ │ │ ├── cor_ilmethod_sect_eh_fat_t.start.hpp │ │ │ │ ├── cor_ilmethod_sect_eh_small_t.end.hpp │ │ │ │ ├── cor_ilmethod_sect_eh_small_t.start.hpp │ │ │ │ ├── cor_ilmethod_sect_eh_t.end.hpp │ │ │ │ ├── cor_ilmethod_sect_eh_t.start.hpp │ │ │ │ ├── cor_ilmethod_sect_fat_t.end.hpp │ │ │ │ ├── cor_ilmethod_sect_fat_t.start.hpp │ │ │ │ ├── cor_ilmethod_sect_small_t.end.hpp │ │ │ │ ├── cor_ilmethod_sect_small_t.start.hpp │ │ │ │ ├── cor_ilmethod_t.end.hpp │ │ │ │ ├── cor_ilmethod_t.start.hpp │ │ │ │ ├── cor_ilmethod_tiny_t.end.hpp │ │ │ │ ├── cor_ilmethod_tiny_t.start.hpp │ │ │ │ ├── cor_vtablefixup_t.end.hpp │ │ │ │ ├── cor_vtablefixup_t.start.hpp │ │ │ │ ├── data_directory_t.end.hpp │ │ │ │ ├── data_directory_t.start.hpp │ │ │ │ ├── debug_directory_t.end.hpp │ │ │ │ ├── debug_directory_t.start.hpp │ │ │ │ ├── debug_misc_t.end.hpp │ │ │ │ ├── debug_misc_t.start.hpp │ │ │ │ ├── delayload_descriptor_t.end.hpp │ │ │ │ ├── delayload_descriptor_t.start.hpp │ │ │ │ ├── dos_header_t.end.hpp │ │ │ │ ├── dos_header_t.start.hpp │ │ │ │ ├── dvrt_arm64x_delta_fixup_record_t.end.hpp │ │ │ │ ├── dvrt_arm64x_delta_fixup_record_t.start.hpp │ │ │ │ ├── dvrt_arm64x_fixup_record_t.end.hpp │ │ │ │ ├── dvrt_arm64x_fixup_record_t.start.hpp │ │ │ │ ├── dynamic_relocation32_t.end.hpp │ │ │ │ ├── dynamic_relocation32_t.start.hpp │ │ │ │ ├── dynamic_relocation32_v2_t.end.hpp │ │ │ │ ├── dynamic_relocation32_v2_t.start.hpp │ │ │ │ ├── dynamic_relocation64_t.end.hpp │ │ │ │ ├── dynamic_relocation64_t.start.hpp │ │ │ │ ├── dynamic_relocation64_v2_t.end.hpp │ │ │ │ ├── dynamic_relocation64_v2_t.start.hpp │ │ │ │ ├── dynamic_relocation_t.end.hpp │ │ │ │ ├── dynamic_relocation_t.start.hpp │ │ │ │ ├── dynamic_relocation_table_t.end.hpp │ │ │ │ ├── dynamic_relocation_table_t.start.hpp │ │ │ │ ├── enclave_config32_t.end.hpp │ │ │ │ ├── enclave_config32_t.start.hpp │ │ │ │ ├── enclave_config64_t.end.hpp │ │ │ │ ├── enclave_config64_t.start.hpp │ │ │ │ ├── enclave_import_t.end.hpp │ │ │ │ ├── enclave_import_t.start.hpp │ │ │ │ ├── epilogue_dynamic_relocation_header_t.end.hpp │ │ │ │ ├── epilogue_dynamic_relocation_header_t.start.hpp │ │ │ │ ├── export_directory_t.end.hpp │ │ │ │ ├── export_directory_t.start.hpp │ │ │ │ ├── file_header_t.end.hpp │ │ │ │ ├── file_header_t.start.hpp │ │ │ │ ├── function_entry64_t.end.hpp │ │ │ │ ├── function_entry64_t.start.hpp │ │ │ │ ├── function_entry_t.end.hpp │ │ │ │ ├── function_entry_t.start.hpp │ │ │ │ ├── hot_patch_base_t.end.hpp │ │ │ │ ├── hot_patch_base_t.start.hpp │ │ │ │ ├── hot_patch_hashes_t.end.hpp │ │ │ │ ├── hot_patch_hashes_t.start.hpp │ │ │ │ ├── hot_patch_info_t.end.hpp │ │ │ │ ├── hot_patch_info_t.start.hpp │ │ │ │ ├── hybrid_metadata_x86_t.end.hpp │ │ │ │ ├── hybrid_metadata_x86_t.start.hpp │ │ │ │ ├── hybrid_range_entry_t.end.hpp │ │ │ │ ├── hybrid_range_entry_t.start.hpp │ │ │ │ ├── import_by_name_t.end.hpp │ │ │ │ ├── import_by_name_t.start.hpp │ │ │ │ ├── import_control_transfer_dynamic_relocation_t.end.hpp │ │ │ │ ├── import_control_transfer_dynamic_relocation_t.start.hpp │ │ │ │ ├── import_descriptor_t.end.hpp │ │ │ │ ├── import_descriptor_t.start.hpp │ │ │ │ ├── indir_control_transfer_dynamic_relocation_t.end.hpp │ │ │ │ ├── indir_control_transfer_dynamic_relocation_t.start.hpp │ │ │ │ ├── info_ex_t.end.hpp │ │ │ │ ├── info_ex_t.start.hpp │ │ │ │ ├── info_t.end.hpp │ │ │ │ ├── info_t.start.hpp │ │ │ │ ├── linenumber_t.end.hpp │ │ │ │ ├── linenumber_t.start.hpp │ │ │ │ ├── load_config_code_integrity_t.end.hpp │ │ │ │ ├── load_config_code_integrity_t.start.hpp │ │ │ │ ├── load_config_directory32_t.end.hpp │ │ │ │ ├── load_config_directory32_t.start.hpp │ │ │ │ ├── load_config_directory64_t.end.hpp │ │ │ │ ├── load_config_directory64_t.start.hpp │ │ │ │ ├── nt_headers64_t.end.hpp │ │ │ │ ├── nt_headers64_t.start.hpp │ │ │ │ ├── nt_headers_t.end.hpp │ │ │ │ ├── nt_headers_t.start.hpp │ │ │ │ ├── optional_header64_t.end.hpp │ │ │ │ ├── optional_header64_t.start.hpp │ │ │ │ ├── optional_header_t.end.hpp │ │ │ │ ├── optional_header_t.start.hpp │ │ │ │ ├── os2_header_t.end.hpp │ │ │ │ ├── os2_header_t.start.hpp │ │ │ │ ├── policy_entry_t.end.hpp │ │ │ │ ├── policy_entry_t.start.hpp │ │ │ │ ├── policy_metadata_t.end.hpp │ │ │ │ ├── policy_metadata_t.start.hpp │ │ │ │ ├── prologue_dynamic_relocation_header_t.end.hpp │ │ │ │ ├── prologue_dynamic_relocation_header_t.start.hpp │ │ │ │ ├── relocation_t.end.hpp │ │ │ │ ├── relocation_t.start.hpp │ │ │ │ ├── resource_data_entry_t.end.hpp │ │ │ │ ├── resource_data_entry_t.start.hpp │ │ │ │ ├── resource_dir_string_u_t.end.hpp │ │ │ │ ├── resource_dir_string_u_t.start.hpp │ │ │ │ ├── resource_directory_entry_t.end.hpp │ │ │ │ ├── resource_directory_entry_t.start.hpp │ │ │ │ ├── resource_directory_string_t.end.hpp │ │ │ │ ├── resource_directory_string_t.start.hpp │ │ │ │ ├── resource_directory_t.end.hpp │ │ │ │ ├── resource_directory_t.start.hpp │ │ │ │ ├── rom_headers_t.end.hpp │ │ │ │ ├── rom_headers_t.start.hpp │ │ │ │ ├── rom_optional_header_t.end.hpp │ │ │ │ ├── rom_optional_header_t.start.hpp │ │ │ │ ├── runtime_function_entry_t.end.hpp │ │ │ │ ├── runtime_function_entry_t.start.hpp │ │ │ │ ├── section_header_t.end.hpp │ │ │ │ ├── section_header_t.start.hpp │ │ │ │ ├── security_context_t.end.hpp │ │ │ │ ├── security_context_t.start.hpp │ │ │ │ ├── separate_debug_header_t.end.hpp │ │ │ │ ├── separate_debug_header_t.start.hpp │ │ │ │ ├── switchtable_branch_dynamic_relocation_t.end.hpp │ │ │ │ ├── switchtable_branch_dynamic_relocation_t.start.hpp │ │ │ │ ├── symbol_ex_t.end.hpp │ │ │ │ ├── symbol_ex_t.start.hpp │ │ │ │ ├── symbol_t.end.hpp │ │ │ │ ├── symbol_t.start.hpp │ │ │ │ ├── thunk_data32_t.end.hpp │ │ │ │ ├── thunk_data32_t.start.hpp │ │ │ │ ├── thunk_data64_t.end.hpp │ │ │ │ ├── thunk_data64_t.start.hpp │ │ │ │ ├── tls_directory32_t.end.hpp │ │ │ │ ├── tls_directory32_t.start.hpp │ │ │ │ ├── tls_directory64_t.end.hpp │ │ │ │ ├── tls_directory64_t.start.hpp │ │ │ │ ├── vxd_header_t.end.hpp │ │ │ │ └── vxd_header_t.start.hpp │ │ │ ├── mitigation_policy_t.hpp │ │ │ ├── nt_headers64_t.hpp │ │ │ ├── nt_headers_t.hpp │ │ │ ├── optional_header64_t.hpp │ │ │ ├── optional_header_t.hpp │ │ │ ├── os2_header_t.hpp │ │ │ ├── path_t.hpp │ │ │ ├── policy_entry_t.hpp │ │ │ ├── policy_entry_type_t.hpp │ │ │ ├── policy_id_t.hpp │ │ │ ├── policy_metadata_t.hpp │ │ │ ├── prologue_dynamic_relocation_header_t.hpp │ │ │ ├── relocation_t.hpp │ │ │ ├── resource_data_entry_t.hpp │ │ │ ├── resource_dir_string_u_t.hpp │ │ │ ├── resource_directory_entry_t.hpp │ │ │ ├── resource_directory_string_t.hpp │ │ │ ├── resource_directory_t.hpp │ │ │ ├── rom_headers_t.hpp │ │ │ ├── rom_optional_header_t.hpp │ │ │ ├── runtime_function_entry_t.hpp │ │ │ ├── section_header_t.hpp │ │ │ ├── security_context_t.hpp │ │ │ ├── separate_debug_header_t.hpp │ │ │ ├── switchtable_branch_dynamic_relocation_t.hpp │ │ │ ├── symbol_ex_t.hpp │ │ │ ├── symbol_t.hpp │ │ │ ├── thunk_data32_t.hpp │ │ │ ├── thunk_data64_t.hpp │ │ │ ├── tls_directory32_t.hpp │ │ │ ├── tls_directory64_t.hpp │ │ │ └── vxd_header_t.hpp │ │ ├── io/ │ │ │ ├── access_mode_t.hpp │ │ │ ├── access_type_t.hpp │ │ │ ├── adapter_crypto_key_descriptor_t.hpp │ │ │ ├── adapter_crypto_parameters_t.hpp │ │ │ ├── allocation_action_t.hpp │ │ │ ├── api.hpp │ │ │ ├── apic_data_t.hpp │ │ │ ├── apic_registers_t.hpp │ │ │ ├── attribution_information_t.hpp │ │ │ ├── client_extension_t.hpp │ │ │ ├── completion_basic_information_t.hpp │ │ │ ├── completion_context_t.hpp │ │ │ ├── completion_information_class_t.hpp │ │ │ ├── completion_routine_result_t.hpp │ │ │ ├── connect_interrupt_fully_specified_parameters_t.hpp │ │ │ ├── connect_interrupt_line_based_parameters_t.hpp │ │ │ ├── connect_interrupt_message_based_parameters_t.hpp │ │ │ ├── connect_interrupt_parameters_t.hpp │ │ │ ├── cont_resource_list_t.hpp │ │ │ ├── container_information_class_t.hpp │ │ │ ├── container_notification_class_t.hpp │ │ │ ├── counters_t.hpp │ │ │ ├── create_stream_file_options_t.hpp │ │ │ ├── csq_irp_context_t.hpp │ │ │ ├── csq_t.hpp │ │ │ ├── device_hint_ecp_context_t.hpp │ │ │ ├── disconnect_interrupt_parameters_t.hpp │ │ │ ├── driver_create_context_t.hpp │ │ │ ├── error_log_message_t.hpp │ │ │ ├── error_log_packet_t.hpp │ │ │ ├── foext_silo_parameters_t.hpp │ │ │ ├── gate_state_t.hpp │ │ │ ├── interrupt_message_info_entry_t.hpp │ │ │ ├── interrupt_message_info_t.hpp │ │ │ ├── irp_ext_track_offset_header_t.hpp │ │ │ ├── load_crashdump_params_t.hpp │ │ │ ├── load_crashdump_result_t.hpp │ │ │ ├── magic/ │ │ │ │ ├── adapter_crypto_key_descriptor_t.end.hpp │ │ │ │ ├── adapter_crypto_key_descriptor_t.start.hpp │ │ │ │ ├── adapter_crypto_parameters_t.end.hpp │ │ │ │ ├── adapter_crypto_parameters_t.start.hpp │ │ │ │ ├── api.end.hpp │ │ │ │ ├── api.start.hpp │ │ │ │ ├── apic_data_t.end.hpp │ │ │ │ ├── apic_data_t.start.hpp │ │ │ │ ├── apic_registers_t.end.hpp │ │ │ │ ├── apic_registers_t.start.hpp │ │ │ │ ├── attribution_information_t.end.hpp │ │ │ │ ├── attribution_information_t.start.hpp │ │ │ │ ├── client_extension_t.end.hpp │ │ │ │ ├── client_extension_t.start.hpp │ │ │ │ ├── completion_basic_information_t.end.hpp │ │ │ │ ├── completion_basic_information_t.start.hpp │ │ │ │ ├── completion_context_t.end.hpp │ │ │ │ ├── completion_context_t.start.hpp │ │ │ │ ├── connect_interrupt_fully_specified_parameters_t.end.hpp │ │ │ │ ├── connect_interrupt_fully_specified_parameters_t.start.hpp │ │ │ │ ├── connect_interrupt_line_based_parameters_t.end.hpp │ │ │ │ ├── connect_interrupt_line_based_parameters_t.start.hpp │ │ │ │ ├── connect_interrupt_message_based_parameters_t.end.hpp │ │ │ │ ├── connect_interrupt_message_based_parameters_t.start.hpp │ │ │ │ ├── connect_interrupt_parameters_t.end.hpp │ │ │ │ ├── connect_interrupt_parameters_t.start.hpp │ │ │ │ ├── cont_resource_list_t.end.hpp │ │ │ │ ├── cont_resource_list_t.start.hpp │ │ │ │ ├── counters_t.end.hpp │ │ │ │ ├── counters_t.start.hpp │ │ │ │ ├── create_stream_file_options_t.end.hpp │ │ │ │ ├── create_stream_file_options_t.start.hpp │ │ │ │ ├── csq_irp_context_t.end.hpp │ │ │ │ ├── csq_irp_context_t.start.hpp │ │ │ │ ├── csq_t.end.hpp │ │ │ │ ├── csq_t.start.hpp │ │ │ │ ├── device_hint_ecp_context_t.end.hpp │ │ │ │ ├── device_hint_ecp_context_t.start.hpp │ │ │ │ ├── disconnect_interrupt_parameters_t.end.hpp │ │ │ │ ├── disconnect_interrupt_parameters_t.start.hpp │ │ │ │ ├── driver_create_context_t.end.hpp │ │ │ │ ├── driver_create_context_t.start.hpp │ │ │ │ ├── error_log_message_t.end.hpp │ │ │ │ ├── error_log_message_t.start.hpp │ │ │ │ ├── error_log_packet_t.end.hpp │ │ │ │ ├── error_log_packet_t.start.hpp │ │ │ │ ├── foext_silo_parameters_t.end.hpp │ │ │ │ ├── foext_silo_parameters_t.start.hpp │ │ │ │ ├── interrupt_message_info_entry_t.end.hpp │ │ │ │ ├── interrupt_message_info_entry_t.start.hpp │ │ │ │ ├── interrupt_message_info_t.end.hpp │ │ │ │ ├── interrupt_message_info_t.start.hpp │ │ │ │ ├── irp_ext_track_offset_header_t.end.hpp │ │ │ │ ├── irp_ext_track_offset_header_t.start.hpp │ │ │ │ ├── mini_completion_packet_user_t.end.hpp │ │ │ │ ├── mini_completion_packet_user_t.start.hpp │ │ │ │ ├── nmisource_t.end.hpp │ │ │ │ ├── nmisource_t.start.hpp │ │ │ │ ├── priority_info_t.end.hpp │ │ │ │ ├── priority_info_t.start.hpp │ │ │ │ ├── queue_t.end.hpp │ │ │ │ ├── queue_t.start.hpp │ │ │ │ ├── remove_lock_common_block_t.end.hpp │ │ │ │ ├── remove_lock_common_block_t.start.hpp │ │ │ │ ├── remove_lock_dbg_block_t.end.hpp │ │ │ │ ├── remove_lock_dbg_block_t.start.hpp │ │ │ │ ├── remove_lock_t.end.hpp │ │ │ │ ├── remove_lock_t.start.hpp │ │ │ │ ├── report_interrupt_active_state_parameters_t.end.hpp │ │ │ │ ├── report_interrupt_active_state_parameters_t.start.hpp │ │ │ │ ├── resource_descriptor_t.end.hpp │ │ │ │ ├── resource_descriptor_t.start.hpp │ │ │ │ ├── resource_entry_t.end.hpp │ │ │ │ ├── resource_entry_t.start.hpp │ │ │ │ ├── resource_list_t.end.hpp │ │ │ │ ├── resource_list_t.start.hpp │ │ │ │ ├── resource_requirements_list_t.end.hpp │ │ │ │ ├── resource_requirements_list_t.start.hpp │ │ │ │ ├── scsi_capabilities_t.end.hpp │ │ │ │ ├── scsi_capabilities_t.start.hpp │ │ │ │ ├── security_context_t.end.hpp │ │ │ │ ├── security_context_t.start.hpp │ │ │ │ ├── session_connect_info_t.end.hpp │ │ │ │ ├── session_connect_info_t.start.hpp │ │ │ │ ├── session_state_information_t.end.hpp │ │ │ │ ├── session_state_information_t.start.hpp │ │ │ │ ├── session_state_notification_t.end.hpp │ │ │ │ ├── session_state_notification_t.start.hpp │ │ │ │ ├── stack_location_t.end.hpp │ │ │ │ ├── stack_location_t.start.hpp │ │ │ │ ├── status_block32_t.end.hpp │ │ │ │ ├── status_block32_t.start.hpp │ │ │ │ ├── status_block_t.end.hpp │ │ │ │ ├── status_block_t.start.hpp │ │ │ │ ├── stop_on_symlink_filter_ecp_v0_t.end.hpp │ │ │ │ ├── stop_on_symlink_filter_ecp_v0_t.start.hpp │ │ │ │ ├── timer_t.end.hpp │ │ │ │ ├── timer_t.start.hpp │ │ │ │ ├── workitem_t.end.hpp │ │ │ │ └── workitem_t.start.hpp │ │ │ ├── mini_completion_packet_user_t.hpp │ │ │ ├── mini_packet_callback_routine_t.hpp │ │ │ ├── nmisource_t.hpp │ │ │ ├── notification_event_category_t.hpp │ │ │ ├── paging_priority_t.hpp │ │ │ ├── priority_hint_t.hpp │ │ │ ├── priority_info_t.hpp │ │ │ ├── query_device_data_format_t.hpp │ │ │ ├── queue_t.hpp │ │ │ ├── rate_control_type_t.hpp │ │ │ ├── remove_lock_common_block_t.hpp │ │ │ ├── remove_lock_dbg_block_t.hpp │ │ │ ├── remove_lock_t.hpp │ │ │ ├── remove_lock_tracking_block_t.hpp │ │ │ ├── report_interrupt_active_state_parameters_t.hpp │ │ │ ├── resource_descriptor_t.hpp │ │ │ ├── resource_entry_t.hpp │ │ │ ├── resource_list_t.hpp │ │ │ ├── resource_requirements_list_t.hpp │ │ │ ├── scsi_capabilities_t.hpp │ │ │ ├── security_context_t.hpp │ │ │ ├── session_connect_info_t.hpp │ │ │ ├── session_event_t.hpp │ │ │ ├── session_state_information_t.hpp │ │ │ ├── session_state_notification_t.hpp │ │ │ ├── session_state_t.hpp │ │ │ ├── stack_location_t.hpp │ │ │ ├── status_block32_t.hpp │ │ │ ├── status_block_t.hpp │ │ │ ├── steer_interrupt_connection_t.hpp │ │ │ ├── steer_interrupt_target_t.hpp │ │ │ ├── stop_on_symlink_filter_ecp_v0_t.hpp │ │ │ ├── timer_t.hpp │ │ │ └── workitem_t.hpp │ │ ├── iop/ │ │ │ ├── api.hpp │ │ │ ├── file_object_extension_t.hpp │ │ │ ├── irp_extension_status_t.hpp │ │ │ ├── irp_extension_t.hpp │ │ │ ├── irp_stack_profiler_t.hpp │ │ │ ├── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ ├── api.start.hpp │ │ │ │ ├── file_object_extension_t.end.hpp │ │ │ │ ├── file_object_extension_t.start.hpp │ │ │ │ ├── irp_extension_status_t.end.hpp │ │ │ │ ├── irp_extension_status_t.start.hpp │ │ │ │ ├── irp_extension_t.end.hpp │ │ │ │ ├── irp_extension_t.start.hpp │ │ │ │ ├── irp_stack_profiler_t.end.hpp │ │ │ │ ├── irp_stack_profiler_t.start.hpp │ │ │ │ ├── mc_be_page_node_t.end.hpp │ │ │ │ ├── mc_be_page_node_t.start.hpp │ │ │ │ ├── mc_buffer_entry_t.end.hpp │ │ │ │ └── mc_buffer_entry_t.start.hpp │ │ │ ├── mc_be_page_node_t.hpp │ │ │ ├── mc_buffer_entry_flags_t.hpp │ │ │ ├── mc_buffer_entry_t.hpp │ │ │ └── priority_hint_t.hpp │ │ ├── iopf/ │ │ │ ├── api.hpp │ │ │ └── magic/ │ │ │ ├── api.end.hpp │ │ │ └── api.start.hpp │ │ ├── iov/ │ │ │ ├── api.hpp │ │ │ ├── forced_pending_trace_t.hpp │ │ │ ├── irp_trace_t.hpp │ │ │ └── magic/ │ │ │ ├── api.end.hpp │ │ │ ├── api.start.hpp │ │ │ ├── forced_pending_trace_t.end.hpp │ │ │ ├── forced_pending_trace_t.start.hpp │ │ │ ├── irp_trace_t.end.hpp │ │ │ └── irp_trace_t.start.hpp │ │ ├── iovp/ │ │ │ ├── api.hpp │ │ │ └── magic/ │ │ │ ├── api.end.hpp │ │ │ └── api.start.hpp │ │ ├── kaux/ │ │ │ ├── access_data_t.hpp │ │ │ ├── api.hpp │ │ │ ├── klib_fns_t.hpp │ │ │ ├── magic/ │ │ │ │ ├── access_data_t.end.hpp │ │ │ │ ├── access_data_t.start.hpp │ │ │ │ ├── api.end.hpp │ │ │ │ ├── api.start.hpp │ │ │ │ ├── klib_fns_t.end.hpp │ │ │ │ ├── klib_fns_t.start.hpp │ │ │ │ ├── module_basic_info_t.end.hpp │ │ │ │ ├── module_basic_info_t.start.hpp │ │ │ │ ├── module_extended_info_t.end.hpp │ │ │ │ ├── module_extended_info_t.start.hpp │ │ │ │ ├── process_module_information_t.end.hpp │ │ │ │ ├── process_module_information_t.start.hpp │ │ │ │ ├── process_modules_t.end.hpp │ │ │ │ └── process_modules_t.start.hpp │ │ │ ├── module_basic_info_t.hpp │ │ │ ├── module_extended_info_t.hpp │ │ │ ├── process_module_information_t.hpp │ │ │ ├── process_modules_t.hpp │ │ │ └── system_information_class_t.hpp │ │ ├── kbd/ │ │ │ ├── api.hpp │ │ │ └── magic/ │ │ │ ├── api.end.hpp │ │ │ └── api.start.hpp │ │ ├── kd/ │ │ │ ├── api.hpp │ │ │ ├── callback_action_t.hpp │ │ │ ├── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── namespace_enum_t.hpp │ │ │ └── option_t.hpp │ │ ├── kdp/ │ │ │ ├── api.hpp │ │ │ └── magic/ │ │ │ ├── api.end.hpp │ │ │ └── api.start.hpp │ │ ├── ke/ │ │ │ ├── api.hpp │ │ │ ├── ideal_processor_assignment_block_t.hpp │ │ │ ├── ideal_processor_set_breakpoints_t.hpp │ │ │ ├── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ ├── api.start.hpp │ │ │ │ ├── ideal_processor_assignment_block_t.end.hpp │ │ │ │ ├── ideal_processor_assignment_block_t.start.hpp │ │ │ │ ├── ideal_processor_set_breakpoints_t.end.hpp │ │ │ │ ├── ideal_processor_set_breakpoints_t.start.hpp │ │ │ │ ├── process_concurrency_count_t.end.hpp │ │ │ │ ├── process_concurrency_count_t.start.hpp │ │ │ │ ├── processor_change_notify_context_t.end.hpp │ │ │ │ └── processor_change_notify_context_t.start.hpp │ │ │ ├── process_concurrency_count_t.hpp │ │ │ ├── processor_change_notify_context_t.hpp │ │ │ ├── processor_change_notify_state_t.hpp │ │ │ └── wake_source_type_t.hpp │ │ ├── kev/ │ │ │ ├── api.hpp │ │ │ └── magic/ │ │ │ ├── api.end.hpp │ │ │ └── api.start.hpp │ │ ├── ki/ │ │ │ ├── api.hpp │ │ │ ├── callback_t.hpp │ │ │ └── magic/ │ │ │ ├── api.end.hpp │ │ │ └── api.start.hpp │ │ ├── kse/ │ │ │ ├── api.hpp │ │ │ └── magic/ │ │ │ ├── api.end.hpp │ │ │ └── api.start.hpp │ │ ├── ksep/ │ │ │ ├── api.hpp │ │ │ └── magic/ │ │ │ ├── api.end.hpp │ │ │ └── api.start.hpp │ │ ├── kuser/ │ │ │ ├── activation_object_config_behavior_t.hpp │ │ │ ├── activation_object_state_t.hpp │ │ │ ├── advanced_window_pos/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── api.hpp │ │ │ ├── api_set_edition_crit/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── atomic_execution_check/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── attachobj/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── auto_exclusive_umfd_file_view_lock/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── auto_free_string/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── auto_shared_push_lock/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── auto_shared_umfd_file_view_lock/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── auto_shared_umfd_lookup_lock/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── auto_tgo/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── bezier/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── bezier32/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── bezier64/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── bltrecord/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── bmpdevopen/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── boundcliprgntosurface/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── brush/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── brushmemobj/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── brushselobj/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── c_accessibility_timer/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── c_activation_object/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── c_activation_object_manager/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── c_async_key_event_monitor/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── c_auto_mutex/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── c_auto_push_lock_ex/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── c_auto_push_lock_sh/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── c_base_input/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── c_base_processor/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── c_base_ptp_engine/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── c_check_ll_hook_time/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── c_composition_buffer/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── c_composition_surface/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── c_content_rects/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── c_cursor_clip/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── c_cursor_sizes/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── c_desktop_input_sink/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── c_desktop_input_transform/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── c_device_acceleration/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── c_device_identity/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── c_discard_input_queue/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── c_domain_lock_assistant/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── c_etw_trace_dispatch_message/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── c_etw_trace_translate_message/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── c_event_pool/ │ │ │ │ ├── api.hpp │ │ │ │ ├── c_event_pool_entry/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── c_flip_ex_buffer/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── c_flip_token/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── c_foreground_info/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── c_hid_input/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── c_hit_test_state/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── c_hwnd_bitmap_prop/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── c_hwnd_target_prop/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── c_ignore_input_queue/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── c_inertia_manager/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── c_inp_lock_exclusive_if_needed/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── c_inp_lock_guard/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── c_inp_lock_guard_exclusive/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── c_inp_lock_guard_exclusive_if_needed/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── c_inp_lock_guard_shared/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── c_inp_lock_shared_if_needed/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── c_inp_push_lock/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── c_inp_unlock_guard_exclusive/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── c_input_config/ │ │ │ │ ├── api.hpp │ │ │ │ ├── c_mouse_config/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── iter/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── c_input_dest/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── c_input_globals/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── c_input_manager/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── c_input_queue/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── c_input_queue_prop/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── c_input_sink/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── c_input_space/ │ │ │ │ ├── api.hpp │ │ │ │ ├── iter/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── c_input_space_region/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── c_input_system_metrics/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── c_input_thread/ │ │ │ │ ├── api.hpp │ │ │ │ ├── input_thread_state/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── c_input_thread_base/ │ │ │ │ ├── api.hpp │ │ │ │ ├── input_thread_state/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── c_kernel_sensor_thread/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── c_kernel_stack_swap/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── c_kernel_stack_swap_auto/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── c_keyboard_processor/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── c_keyboard_sensor/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── c_legacy_rotation_mgr/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── c_legacy_token_buffer/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── c_locked_input_space/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── c_locked_input_space_region/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── c_manual_reset_event/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── c_master_input_thread/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── c_monitor_api/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── c_monitor_pdo/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── c_monitor_topology/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── c_mouse_acceleration/ │ │ │ │ ├── api.hpp │ │ │ │ ├── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ └── mouse_sensitivity_info/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── c_mouse_processor/ │ │ │ │ ├── api.hpp │ │ │ │ ├── buffered_mouse_input_list/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_button_event/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_mouse_event/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_mouse_queue/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_mouse_raw_input/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_move_event/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_wheel_event/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── container_mouse_input_buffer/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── event_time/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── inertia_end_suppression/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── mouse_input_data_ex/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── mouse_intercept_state/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ ├── magic/ │ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ │ └── api.start.hpp │ │ │ │ │ └── marshal_sync/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── mouse_move_times/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── mouse_owner/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── root_cursor_async/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── telemetry/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ └── update_pointer_graphic_device/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── c_mouse_sensor/ │ │ │ │ ├── api.hpp │ │ │ │ ├── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ └── mouse_rate_limit_holding_frame/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── c_move_size_request/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── c_multi_per_object_lock_exclusive_ppi_pti_q/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── c_multiple_consumer_work_queue/ │ │ │ │ ├── api.hpp │ │ │ │ ├── c_waitable_work_item/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── c_mutex/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── c_palm_reject_zone_info/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── c_physical_monitor_handle/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── c_pointer_info_node/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── c_push_lock/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── c_rapid_hpd_info/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── c_recalc_prop/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── c_recalc_state/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── c_ref_un_ref_pointer_msg_id/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── c_region/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── c_rit_timer_scan_wake_system/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── c_rotation_mgr/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── c_save_restore_check_point/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── c_smart_floating_save/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── c_spatial_processor/ │ │ │ │ ├── api.hpp │ │ │ │ ├── c_input_stream_token_generator/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── c_swap_chain_prop/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── c_temp_w32_tls_for_thread/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── c_thread_lock_input_dest/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── c_token/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── c_token_base/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── c_token_manager/ │ │ │ │ ├── api.hpp │ │ │ │ ├── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ └── token_queue_table_entry/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── c_token_queue/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── c_topology_manager/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── c_touch_processor/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── c_touchpad_acceleration/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── c_user_play_sound/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── c_vis_rgn_tracker_prop/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── c_window/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── c_window_group/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── c_window_group_manager/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── c_window_prop/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── c_work_item_queue/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── call_shell/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── chm_ref_hwnd_by_handle/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── cit_data_reader/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── cit_desktop_active_tracker/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── cit_user_active_tracker/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── cit_user_activity_stat/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── colortransformobj/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── composition_input_object/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── composition_object/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── composition_surface_object/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── copm/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── copm_protected_output/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── core_messaging/ │ │ │ │ └── calling/ │ │ │ │ ├── fail_fast/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── receive_processor/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ └── send_processor/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── core_messaging_k/ │ │ │ │ ├── buffer_cache/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── client_port_info/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── connection_target_info/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── core_msg_object/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── entry_lock/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── h_result_util/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── receive_host/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── registrar_client/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── runtime/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── send_host/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── server_port_info/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ └── server_ports/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── core_window_prop/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── cptp_engine/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── cptp_processor/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── cptp_processor_factory/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── crdp_recalc_state/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── crim_base/ │ │ │ │ ├── api.hpp │ │ │ │ ├── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ └── sensor_dispatcher_object/ │ │ │ │ ├── api.hpp │ │ │ │ ├── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ └── marshaling_completion/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── cursor_api_router/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── d3dddiformat_t.hpp │ │ │ ├── dc/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dcmemobj/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dcobj/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dcobja/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dcomposition_telemetry_animation_scenario_packed_info/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dcvisrgnlock/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dcvisrgnsharelock/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dda_clipline/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── deadzone_palm_telemetry/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── delay_zone_palm_rejection/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── delay_zone_telemetry/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── delegation_api/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── desktop_recalc/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── desktop_recalc_settings/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── destroy_font_request/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── devexcluderect/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── devexcludewndobj/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── device_pftobj/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── devlockbltobj/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── devlockobj/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── devlockobj_wndobj/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── devpropcompkey_t.hpp │ │ │ ├── dialog_control_dpi_change_behaviors_t.hpp │ │ │ ├── dialog_dpi_change_behaviors_t.hpp │ │ │ ├── direct_composition/ │ │ │ │ ├── api.hpp │ │ │ │ ├── c_affine_transform2d_effect_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_analog_compositor_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_analog_exclusive_view_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_analog_texture_target_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_animation_binding/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_animation_logging_manager_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_animation_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_animation_time_list/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_animation_trigger_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_application_channel/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ ├── magic/ │ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ │ └── api.start.hpp │ │ │ │ │ └── wait_for_commit_completion_data/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_arithmetic_composite_effect_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_backdrop_brush_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_base_animation_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_base_clip_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_base_expression_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_base_transform_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_batch/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ ├── c_batch_list_proxy/ │ │ │ │ │ │ ├── api.hpp │ │ │ │ │ │ └── magic/ │ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ │ └── api.start.hpp │ │ │ │ │ ├── c_system_resource_reference/ │ │ │ │ │ │ ├── api.hpp │ │ │ │ │ │ └── magic/ │ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ │ └── api.start.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_batch_shared_memory_pool/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_batch_shared_memory_pool_set/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_blend_effect_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_blurred_wallpaper_backdrop_brush_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_brightness_effect_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_brush_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_capture_controller_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_capture_render_target_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_channel/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_channel_group/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_clip_group_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_color_brush_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_color_gradient_stop_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_color_matrix_effect_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_comp_clock_info/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_compiled_effect_template_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_component_transform2d_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_component_transform3d_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_composite_effect_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_composition_ambient_light_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_composition_cube_map_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_composition_distant_light_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_composition_frame/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_composition_glyph_run_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_composition_light_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_composition_mipmap_surface_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_composition_point_light_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_composition_sky_box_brush_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_composition_spot_light_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_composition_surface_bitmap_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_composition_text_line_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_conditional_expression_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_connection/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ ├── c_frame_stats/ │ │ │ │ │ │ ├── api.hpp │ │ │ │ │ │ └── magic/ │ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ │ └── api.start.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_container_shape_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_critical_section/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_cross_channel_child_visual_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_cross_channel_parent_visual_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_cross_container_guest_read_write_shared_section_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_cross_container_host_read_only_shared_section_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_cursor_visual_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_data_source_reader_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_deleted_notification_list/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_desktop_target_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_desktop_tree_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_drop_shadow_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_dwm_channel/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_effect_brush_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_effect_group_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_effect_input_set/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_ellipse_geometry_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_event/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_expression_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_filter_effect_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_flood_effect_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_gaussian_blur_effect_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_gdi_sprite_bitmap_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_generic_ink_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_generic_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_generic_property_list/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_geometry_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_global_d_comp_visual_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_gradient_brush_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_holographic_composition_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_holographic_display_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_holographic_exclusive_mode_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_holographic_exclusive_view_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_holographic_interop_texture_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_holographic_viewer_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_host_visual_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_hover_pointer_source_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_hue_rotation_effect_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_hwnd_bitmap_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_injection_animation_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_ink_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_interaction_configuration_group/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_interaction_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_interaction_tracker_binding_manager_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_interaction_tracker_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_keyframe_animation_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_layer_visual_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_legacy_animation_trigger_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_legacy_render_target_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_legacy_stereo_render_target_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_line_geometry_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_linear_gradient_brush_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_linear_object_table_base/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_linear_transfer_effect_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_manipulation_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_manipulation_transform_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_marshaled_array_base/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_mask_brush_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_material_properties_table/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_matrix_transform3d_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_matrix_transform_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_natural_animation_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_nine_grid_brush_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_notification_resource_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_notified_deletion_resource/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_particle_attractor_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_particle_base_behavior_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_particle_behaviors_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_particle_emitter_visual_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_particle_generator_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_path_geometry_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_pencil_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_primitive_color_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_primitive_group_layer_clip_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_primitive_group_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_process_data/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_projected_shadow_caster_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_projected_shadow_receiver_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_projected_shadow_scene_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_property_bag_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_property_change_resource_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_property_set_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_proxy_geometry_clip_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_push_lock_critical_section/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_radial_gradient_brush_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_rectangle_clip_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_redirect_visual_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_reference_property/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_region_geometry_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_remote_app_render_target_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_remote_render_target_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_render_target_group_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_render_target_target_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_resource_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_resource_marshaler_array/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_resource_marshaler_array_base/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_rotate_transform3d_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_rotate_transform_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_saturation_effect_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_scalar_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_scale_transform3d_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_scale_transform_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_scene_mesh_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_scene_mesh_renderer_component_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_scene_metallic_roughness_material_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_scene_model_transform_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_scene_node_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_scene_pbr_material_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_scene_surface_material_input_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_scene_visual_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_shadow_effect_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_shape_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_shape_visual_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_shared_client_projected_shadow_caster_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_shared_composition_ambient_light_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_shared_composition_distant_light_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_shared_composition_point_light_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_shared_composition_spot_light_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_shared_holographic_interop_texture_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_shared_host_projected_shadow_caster_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_shared_interaction_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_shared_manipulation_transform_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_shared_matrix_transform3d_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_shared_matrix_transform_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_shared_read_animation_trigger_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_shared_read_base_animation_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_shared_read_capture_controller_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_shared_read_composition_light_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_shared_read_content_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_shared_read_desktop_target_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_shared_read_holographic_interop_texture_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_shared_read_interaction_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_shared_read_legacy_animation_trigger_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_shared_read_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_shared_read_primitive_color_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_shared_read_remote_app_render_target_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_shared_read_scalar_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_shared_read_surface_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_shared_read_transform_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_shared_read_visual_reference_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_shared_section_base_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_shared_section_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_shared_section_wrapper_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_shared_system_resource/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_shared_visual_reference_controller_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_shared_visual_surface_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_shared_write_animation_trigger_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_shared_write_capture_controller_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_shared_write_desktop_target_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_shared_write_legacy_animation_trigger_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_shared_write_primitive_color_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_shared_write_remote_app_render_target_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_shared_write_scalar_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_skew_transform_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_snapshot_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_sprite_shape_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_sprite_visual_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_super_wet_ink_visual_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_surface_brush_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_synchronization_info/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_synchronization_manager/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_synchronous_super_wet_ink_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_system_channel/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_table_transfer_effect_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_target_visual_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_telemetry_info/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_text_object_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_text_visual_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_transform3d_group_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_transform_group_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_translate_transform3d_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_translate_transform_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_turbulence_effect_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_view_box_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_virtual_monitor_capture_render_target_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_visual_bitmap_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_visual_capture_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_visual_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_visual_reference_controller_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_visual_surface_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_visual_target_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_window_backdrop_brush_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── cd_comp_dynamic_array_base/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── cd_comp_mapped_shared_section_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── cd_display_render_target_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── cy_cb_cr_surface_marshaler/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── resource_information/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── resource_object/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ └── synchronization_object/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── disp_broker/ │ │ │ │ └── disp_broker_client/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── disp_config_types/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dit_hittestattributes_t.hpp │ │ │ ├── dlodcobj/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dlt_active/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dlt_asynckeystate/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dlt_clientlib/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dlt_desktop/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dlt_etw/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dlt_foreground/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dlt_handlemanager/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dlt_hook/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dlt_inputdelegation/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dlt_job/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dlt_post/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dlt_powertransitionsstate/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dlt_processinfo/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dlt_queue/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dlt_queuemgmt/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dlt_rawinput/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dlt_threadinfo/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dlt_threadlock/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dlt_threadrundown/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dlt_window/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dlt_winevent/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dpi_hosting_behavior_t.hpp │ │ │ ├── dpi_internal/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dwmaltspriteref/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dwmscreenreadmodifywriteassist/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dwmsprite/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dwmspritelock/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dwmspriteref/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dynamicmodechangelock/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dynamicmodechangesharelock/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── ebox/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── ebrushobj/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── eclipobj/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── eclipobjtmpifneeded/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── edgy/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── efloat/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── efsmemobj/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── efsobj/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── einfo_t.hpp │ │ │ ├── eng_mode_state/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── enter_leave_crit/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── enter_leave_crit_by_velocity/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── enter_leave_crit_by_velocity_with_disposition_override/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── enter_leave_crit_mit_rit_hand_off_hazard/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── entry_t.hpp │ │ │ ├── entryobj/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── enumareas/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── enumfhobj/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── enumuncovered/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── enumunderlays/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── epalobj/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── epathfontobj/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── epathobj/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── epointfix/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── epointfl/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── epointl/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── erectfx/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── erectl/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── escape_request/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── estrobj/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── ewndobj/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── exclusive_winlogn_request_lock/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── exformobj/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── exlateobj/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── feedback/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── fhmemobj/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── fhobj/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── find_next_top_window/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── floodbm/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── font_driver_ddi_request/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── font_management_request/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── foreground_boost/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── foreground_launch/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── foreground_management/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── free_request/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── gdi_handle_bit_fields_t.hpp │ │ │ ├── gdi_handle_entry_directory/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── gdi_handle_entry_table/ │ │ │ │ ├── api.hpp │ │ │ │ ├── entry_data_lookup_table/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── gdi_handle_manager/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── gdi_lo_obj_type_t.hpp │ │ │ ├── gdi_obj_type_t.hpp │ │ │ ├── get_true_type_file_request/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── group_window_management_policy_t.hpp │ │ │ ├── group_window_role_t.hpp │ │ │ ├── grouped_fg_boost_prop/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── grouped_process_foreground_boost/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── handlelock/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── hfdbasis32/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── hfdbasis64/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── hide_ink_cursor_provider/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── hmg_insert_object_helper/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── hobj_t.hpp │ │ │ ├── hsemaphore_t.hpp │ │ │ ├── htsemobj/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── i_composition_object/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── i_registrar_client_msg_call_info/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── i_registrar_server_msg_call_info/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── identify_primary_destroy_target/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── ifiobj/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── ifiobjr/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── ink_device/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── ink_device_parser/ │ │ │ │ ├── api.hpp │ │ │ │ ├── device_features_report/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ └── payload_report/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── ink_feedback_provider_base/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── ink_feedback_server/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── ink_processor/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── input_config/ │ │ │ │ ├── api.hpp │ │ │ │ ├── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ └── mouse/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── input_delegation/ │ │ │ │ ├── api.hpp │ │ │ │ ├── c_input_delegation_info/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── input_destination_identity_t.hpp │ │ │ ├── input_destination_routing_mode_t.hpp │ │ │ ├── input_extensibility_callout/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── input_object_map/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── input_space_flags_t.hpp │ │ │ ├── input_space_region_flags_t.hpp │ │ │ ├── input_trace_logging/ │ │ │ │ ├── api.hpp │ │ │ │ ├── cursor/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── d_manip/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── delivery/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── desktop_recalc/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── input_config/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── input_sink/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── keyboard/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── mouse/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── perf/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── pointer/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── ptp/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── rim/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── telemetry_debug/ │ │ │ │ │ ├── pointer/ │ │ │ │ │ │ ├── api.hpp │ │ │ │ │ │ └── magic/ │ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ │ └── api.start.hpp │ │ │ │ │ └── rim/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── thread_locked_perf_region/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── virtual_touchpad/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ └── win32k/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── input_transform/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── input_virtualization/ │ │ │ │ └── root_synthesized_mouse_list/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── inputdelegation_mode_flags_t.hpp │ │ │ ├── interactive_control_default_scroller/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── interactive_control_device/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── interactive_control_input/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── interactive_control_manager/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── interactive_control_parser/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── interactive_control_settings/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── io/ │ │ │ │ └── device_object_pointer/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── iocp_dispatcher/ │ │ │ │ ├── api.hpp │ │ │ │ ├── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ └── sensor_iocpwcp/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── iptp_engine/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── iv_container_foreground_sync/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── iv_content_rects_sync/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── iv_foreground_sync/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── iv_root_deliver/ │ │ │ │ ├── keyboard/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ ├── detail/ │ │ │ │ │ │ ├── api.hpp │ │ │ │ │ │ └── magic/ │ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ │ └── api.start.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── mouse/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ ├── detail/ │ │ │ │ │ │ ├── api.hpp │ │ │ │ │ │ └── magic/ │ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ │ └── api.start.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── pn_p/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ ├── detail/ │ │ │ │ │ │ ├── api.hpp │ │ │ │ │ │ └── magic/ │ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ │ └── api.start.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── pointer/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ └── settings/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── keyboard_input_telemetry/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── keyboard_processing/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── leave_enter_crit/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── leave_enter_crit_proper_disposition/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── leave_enter_user_crit_if_acquired/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── legacy_input_dispatcher/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── lfontobj/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── liner/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── load_font_file_request/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── lt/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ ├── api.start.hpp │ │ │ │ ├── devpropcompkey_t.end.hpp │ │ │ │ ├── devpropcompkey_t.start.hpp │ │ │ │ ├── einfo_t.end.hpp │ │ │ │ ├── einfo_t.start.hpp │ │ │ │ ├── entry_t.end.hpp │ │ │ │ ├── entry_t.start.hpp │ │ │ │ ├── gdi_handle_bit_fields_t.end.hpp │ │ │ │ ├── gdi_handle_bit_fields_t.start.hpp │ │ │ │ ├── objectowner_s_t.end.hpp │ │ │ │ ├── objectowner_s_t.start.hpp │ │ │ │ ├── objectowner_t.end.hpp │ │ │ │ ├── objectowner_t.start.hpp │ │ │ │ ├── tl_t.end.hpp │ │ │ │ ├── tl_t.start.hpp │ │ │ │ ├── tlspritestate_t.end.hpp │ │ │ │ ├── tlspritestate_t.start.hpp │ │ │ │ ├── upper_handle_bits_t.end.hpp │ │ │ │ ├── upper_handle_bits_t.start.hpp │ │ │ │ ├── w32process_t.end.hpp │ │ │ │ ├── w32process_t.start.hpp │ │ │ │ ├── w32thread_t.end.hpp │ │ │ │ ├── w32thread_t.start.hpp │ │ │ │ ├── w32threadnonpaged_t.end.hpp │ │ │ │ ├── w32threadnonpaged_t.start.hpp │ │ │ │ ├── watchdog_timeout_report_t.end.hpp │ │ │ │ ├── watchdog_timeout_report_t.start.hpp │ │ │ │ ├── wd_livereport_flags_t.end.hpp │ │ │ │ └── wd_livereport_flags_t.start.hpp │ │ │ ├── mallocobj/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── mapper/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── mark_accdrv_notification/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── material_property/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── mdcobj/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── mdcobja/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── menu_helpers/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── menu_state_owner_lockxxx_unlock/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── metaregion/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── microsoft/ │ │ │ │ └── core_ui/ │ │ │ │ ├── message_call/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ └── registrar/ │ │ │ │ ├── i_registrar_client_msg_call_info/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ └── i_registrar_server_msg_call_info/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── miracast_watchdog_step_t.hpp │ │ │ ├── modern_scale_factor_t.hpp │ │ │ ├── monitor_dpi_type_t.hpp │ │ │ ├── mouse_perf_stage/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── mouse_perf_summary/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── movesizedata/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── msurf/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── multibrush/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── multidevlockobj/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── multifont/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── multipansurflock/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── multisortbltorder/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── multispriteddiaccess/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── multisurf/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── needddilock/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── needdynamicmodechangesharelock/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── needgrelock/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── notify_shell/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── ns_instrumentation/ │ │ │ │ ├── api.hpp │ │ │ │ ├── c_back_trace/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_back_trace_bucket/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_back_trace_storage_unit/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_back_trace_store_ex/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_leak_tracking_allocator/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_platform_reader_writer_lock/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_platform_signal/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_platform_single_watier_signal/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_pointer_hash_table/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_prioritized_writer_lock/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_reference_tracker/ │ │ │ │ │ └── c_reference_counted_type/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── object/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── objectowner_s_t.hpp │ │ │ ├── objectowner_t.hpp │ │ │ ├── oct_banned_api_t.hpp │ │ │ ├── opm/ │ │ │ │ ├── api.hpp │ │ │ │ ├── c_monitor_pdo/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── c_mutex/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── orientation_preference_t.hpp │ │ │ ├── palm_rejection/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── palm_telemetry/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── palmemobj/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── pandevlock/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── pansurflock/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── pathalloc/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── pathmemobj/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── pathstackobj/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── pdev/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── pdevobj/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── pfememobj/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── pfeobj/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── pffmemobj/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── pffobj/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── pffrefobj/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── pftobj/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── pidlockspritearea/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── place_holder_monitor/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── pointer/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── pointer_frame_list/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── pointer_list/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── pointer_promotion/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── precompute/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── prediction/ │ │ │ │ ├── api.hpp │ │ │ │ ├── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── tag_expo_smoother/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ └── tag_rls_filter/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── priority_boost/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── priority_boost_cui/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── process_ui_flags_t.hpp │ │ │ ├── protocols/ │ │ │ │ └── super_wet_ink/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── proxyport/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── ptp_engine_trace_producer/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── ptp_telemetry/ │ │ │ │ ├── api.hpp │ │ │ │ ├── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ └── usage/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── public_pftobj/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── pushlockex/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── q_helper/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── qdc_auto_buffers/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── query_advance_widths_request/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── query_font_data_request/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── query_font_file_request/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── query_font_request/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── query_font_tree_request/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── query_glyph_attrs_request/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── query_glyph_metrics_plus_bits_request/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── query_true_type_outline_request/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── query_true_type_table_request/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── rapid_hpd/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── raw_input_manager_object/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── rbrush/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── re_enter_leave_crit/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── reader/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── rectanglepathobj/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── rediropen/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── region/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── release_and_reacquire_per_object_locks/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── resetfcobj/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── restoresavedcattrs/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── rfontobj/ │ │ │ │ ├── address_map/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── rfonttmpobj/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── rgnmemobj/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── rgnmemobjtmp/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── rgnmemobjtmpifneeded/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── rgnobj/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── rgnobjapi/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── rim/ │ │ │ │ └── rim_backed_device_base/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── rim_deadzone/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── rim_drop_and_re_acquire_sync_lock/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── rim_telemetry/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── rimlock_exclusive_if_needed/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── rtp_pathmemobj/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── semobj/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── semobjex/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── semobjexorshared/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── semobjshared/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── semobjsharedstarveex/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── set_window_group_options_t.hpp │ │ │ ├── sfm_state/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── sfm_token_array/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── sfmaltlogicalsurfaceref/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── sfmlogicalsurface/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── sfmlogicalsurfaceref/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── shell_window_management/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── shell_window_management_property/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── shell_window_pos/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── shellsetwindowpos_options_t.hpp │ │ │ ├── simple_haptics_controller/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── singlereaderlock/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── spatial_input_activation_policy_t.hpp │ │ │ ├── spriteddiaccess/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── spritelock/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── spriterangelock/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── stackmemobj/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── stackobj/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── styler/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── surface/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── surfmem/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── surfref/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── surfrefdc/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── surfrefview/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── thread_guarded_epathobj/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── tl_t.hpp │ │ │ ├── tlspritestate_t.hpp │ │ │ ├── touch_extensibility/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── trackobj/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── true_type_free_glyphset_request/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── txtcleanup/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── ui_privelege_isolation/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── umfd_allocation/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── umfd_client_side_file_view_mapper/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── umfd_font_cache_entry/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── umfd_host_life_time_manager/ │ │ │ │ ├── api.hpp │ │ │ │ ├── auto_attach_fon_drv_process/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── umfd_tls/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── umfd_um_buffer/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── umpd_release_acquire_rfont_sem/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── umpdobj/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── umpdref/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── umpdsurfobj/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── undodesktopcoord/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── undoengupdatedevicesurface/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── undorenderlockcounts/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── undow32threadpidlocks/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── undowndobjspriteoverlapclip/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── unload_font_file_request/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── upper_handle_bits_t.hpp │ │ │ ├── user_atomic_check/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── user_crit_telemetry/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── virtual_touchpad_processor/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── vptp_contact/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── vptp_touchpad/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── w32pidlock/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── w32process_t.hpp │ │ │ ├── w32thread_t.hpp │ │ │ ├── w32threadnonpaged_t.hpp │ │ │ ├── watchdog_timeout_report_t.hpp │ │ │ ├── wd_diag_notify_user_message_t.hpp │ │ │ ├── wd_livereport_flags_t.hpp │ │ │ ├── wd_logevent_level_t.hpp │ │ │ ├── wd_logevent_source_t.hpp │ │ │ ├── widener/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── widepathobj/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── widepenobj/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── win32k_syscall_filter_list/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── window_arrangement/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── window_arrangement_options_t.hpp │ │ │ ├── window_arrangement_sequence/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── window_arrangement_spi/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── window_grouping_feature/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── window_grouping_window_management/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── window_management_extended/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── window_margins/ │ │ │ │ ├── api.hpp │ │ │ │ ├── c_window_margin_prop/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── window_size_progress_request_t.hpp │ │ │ ├── windowcompositionattrib_t.hpp │ │ │ ├── wo_cleanup/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── xclipobj/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── xdcobj/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── xebrushobj/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── xepalobj/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── xepathobj/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── xferdcobj/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── xlate/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── xlatememobj/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── xumpdobj/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ └── zz/ │ │ │ ├── api.hpp │ │ │ └── magic/ │ │ │ ├── api.end.hpp │ │ │ └── api.start.hpp │ │ ├── kx/ │ │ │ ├── api.hpp │ │ │ └── magic/ │ │ │ ├── api.end.hpp │ │ │ └── api.start.hpp │ │ ├── kz/ │ │ │ ├── api.hpp │ │ │ └── magic/ │ │ │ ├── api.end.hpp │ │ │ └── api.start.hpp │ │ ├── ldr/ │ │ │ ├── api.hpp │ │ │ ├── data_table_entry32_t.hpp │ │ │ ├── data_table_entry64_t.hpp │ │ │ ├── data_table_entry_t.hpp │ │ │ ├── ddag_node_t.hpp │ │ │ ├── ddag_state_t.hpp │ │ │ ├── dll_load_reason_t.hpp │ │ │ ├── dll_loaded_notification_data_t.hpp │ │ │ ├── dll_notification_data_t.hpp │ │ │ ├── dll_unloaded_notification_data_t.hpp │ │ │ ├── enum_resource_entry_t.hpp │ │ │ ├── failure_data_t.hpp │ │ │ ├── hot_patch_data_t.hpp │ │ │ ├── hot_patch_state_t.hpp │ │ │ ├── import_callback_info_t.hpp │ │ │ ├── km/ │ │ │ │ ├── data_table_entry32_t.hpp │ │ │ │ ├── data_table_entry64_t.hpp │ │ │ │ ├── data_table_entry_t.hpp │ │ │ │ └── magic/ │ │ │ │ ├── data_table_entry32_t.end.hpp │ │ │ │ ├── data_table_entry32_t.start.hpp │ │ │ │ ├── data_table_entry64_t.end.hpp │ │ │ │ ├── data_table_entry64_t.start.hpp │ │ │ │ ├── data_table_entry_t.end.hpp │ │ │ │ └── data_table_entry_t.start.hpp │ │ │ ├── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ ├── api.start.hpp │ │ │ │ ├── data_table_entry32_t.end.hpp │ │ │ │ ├── data_table_entry32_t.start.hpp │ │ │ │ ├── data_table_entry64_t.end.hpp │ │ │ │ ├── data_table_entry64_t.start.hpp │ │ │ │ ├── data_table_entry_t.end.hpp │ │ │ │ ├── data_table_entry_t.start.hpp │ │ │ │ ├── ddag_node_t.end.hpp │ │ │ │ ├── ddag_node_t.start.hpp │ │ │ │ ├── dll_loaded_notification_data_t.end.hpp │ │ │ │ ├── dll_loaded_notification_data_t.start.hpp │ │ │ │ ├── dll_notification_data_t.end.hpp │ │ │ │ ├── dll_notification_data_t.start.hpp │ │ │ │ ├── dll_unloaded_notification_data_t.end.hpp │ │ │ │ ├── dll_unloaded_notification_data_t.start.hpp │ │ │ │ ├── enum_resource_entry_t.end.hpp │ │ │ │ ├── enum_resource_entry_t.start.hpp │ │ │ │ ├── failure_data_t.end.hpp │ │ │ │ ├── failure_data_t.start.hpp │ │ │ │ ├── hot_patch_data_t.end.hpp │ │ │ │ ├── hot_patch_data_t.start.hpp │ │ │ │ ├── import_callback_info_t.end.hpp │ │ │ │ ├── import_callback_info_t.start.hpp │ │ │ │ ├── resloader_ret_t.end.hpp │ │ │ │ ├── resloader_ret_t.start.hpp │ │ │ │ ├── resource_info_t.end.hpp │ │ │ │ ├── resource_info_t.start.hpp │ │ │ │ ├── section_info_t.end.hpp │ │ │ │ ├── section_info_t.start.hpp │ │ │ │ ├── service_tag_record_t.end.hpp │ │ │ │ ├── service_tag_record_t.start.hpp │ │ │ │ ├── verify_image_info_t.end.hpp │ │ │ │ └── verify_image_info_t.start.hpp │ │ │ ├── resloader_ret_t.hpp │ │ │ ├── resource_info_t.hpp │ │ │ ├── section_info_t.hpp │ │ │ ├── service_tag_record_t.hpp │ │ │ └── verify_image_info_t.hpp │ │ ├── ldrp/ │ │ │ ├── api.hpp │ │ │ ├── cslist_t.hpp │ │ │ ├── load_context_t.hpp │ │ │ └── magic/ │ │ │ ├── api.end.hpp │ │ │ ├── api.start.hpp │ │ │ ├── cslist_t.end.hpp │ │ │ └── cslist_t.start.hpp │ │ ├── lpc/ │ │ │ ├── api.hpp │ │ │ ├── client_died_msg_t.hpp │ │ │ ├── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ ├── api.start.hpp │ │ │ │ ├── client_died_msg_t.end.hpp │ │ │ │ ├── client_died_msg_t.start.hpp │ │ │ │ ├── unregister_process_msg_t.end.hpp │ │ │ │ └── unregister_process_msg_t.start.hpp │ │ │ └── unregister_process_msg_t.hpp │ │ ├── lpcp/ │ │ │ ├── api.hpp │ │ │ ├── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ ├── api.start.hpp │ │ │ │ ├── message_t.end.hpp │ │ │ │ ├── message_t.start.hpp │ │ │ │ ├── nonpaged_port_queue_t.end.hpp │ │ │ │ ├── nonpaged_port_queue_t.start.hpp │ │ │ │ ├── port_object_t.end.hpp │ │ │ │ ├── port_object_t.start.hpp │ │ │ │ ├── port_queue_t.end.hpp │ │ │ │ └── port_queue_t.start.hpp │ │ │ ├── message_t.hpp │ │ │ ├── nonpaged_port_queue_t.hpp │ │ │ ├── port_object_t.hpp │ │ │ └── port_queue_t.hpp │ │ ├── lsa/ │ │ │ ├── api.hpp │ │ │ ├── forest_trust_record_type_t.hpp │ │ │ ├── lookup_domain_info_class_t.hpp │ │ │ └── magic/ │ │ │ ├── api.end.hpp │ │ │ └── api.start.hpp │ │ ├── mi/ │ │ │ ├── access_log_state_t.hpp │ │ │ ├── access_violation_range_t.hpp │ │ │ ├── active_pfn_t.hpp │ │ │ ├── active_wsle_listhead_t.hpp │ │ │ ├── aligned_slist_t.hpp │ │ │ ├── alternate_lock_va_type_t.hpp │ │ │ ├── api.hpp │ │ │ ├── assigned_region_types_t.hpp │ │ │ ├── available_page_wait_states_t.hpp │ │ │ ├── available_page_wait_types_t.hpp │ │ │ ├── bad_memory_event_entry_t.hpp │ │ │ ├── cached_pte_t.hpp │ │ │ ├── cached_ptes_t.hpp │ │ │ ├── cfg_bitmap_type_t.hpp │ │ │ ├── clone_block_flags_t.hpp │ │ │ ├── combine_page_listhead_t.hpp │ │ │ ├── combine_state_t.hpp │ │ │ ├── combine_workitem_t.hpp │ │ │ ├── common_page_state_t.hpp │ │ │ ├── control_area_wait_block_t.hpp │ │ │ ├── cross_partition_charge_type_t.hpp │ │ │ ├── cross_partition_charges_t.hpp │ │ │ ├── debugger_state_t.hpp │ │ │ ├── decay_timer_link_t.hpp │ │ │ ├── decay_timer_linkage_t.hpp │ │ │ ├── deferred_pfns_to_free_t.hpp │ │ │ ├── dll_overflow_area_t.hpp │ │ │ ├── driver_va_t.hpp │ │ │ ├── dynamic_bitmap_t.hpp │ │ │ ├── dynamicbase_bitmap_t.hpp │ │ │ ├── enclave_state_t.hpp │ │ │ ├── enclave_type_t.hpp │ │ │ ├── engine_type_t.hpp │ │ │ ├── error_state_t.hpp │ │ │ ├── extent_deletion_wait_block_t.hpp │ │ │ ├── extra_image_information_t.hpp │ │ │ ├── file_extent_types_t.hpp │ │ │ ├── flags_t.hpp │ │ │ ├── forced_commits_t.hpp │ │ │ ├── free_large_page_list_t.hpp │ │ │ ├── free_large_pages_t.hpp │ │ │ ├── hard_fault_state_t.hpp │ │ │ ├── hardware_state_t.hpp │ │ │ ├── hot_patch_process_context_t.hpp │ │ │ ├── hot_patch_state_t.hpp │ │ │ ├── huge_pfn_t.hpp │ │ │ ├── huge_system_view_head_t.hpp │ │ │ ├── image_security_reference_t.hpp │ │ │ ├── inpage_support_types_t.hpp │ │ │ ├── io_cache_stats_t.hpp │ │ │ ├── io_page_state_t.hpp │ │ │ ├── io_pfn_type_t.hpp │ │ │ ├── kstack_type_t.hpp │ │ │ ├── large_page_lists_changing_t.hpp │ │ │ ├── largepage_image_info_t.hpp │ │ │ ├── largepage_vad_info_t.hpp │ │ │ ├── ldw_work_context_t.hpp │ │ │ ├── magic/ │ │ │ │ ├── access_log_state_t.end.hpp │ │ │ │ ├── access_log_state_t.start.hpp │ │ │ │ ├── access_violation_range_t.end.hpp │ │ │ │ ├── access_violation_range_t.start.hpp │ │ │ │ ├── active_pfn_t.end.hpp │ │ │ │ ├── active_pfn_t.start.hpp │ │ │ │ ├── active_wsle_listhead_t.end.hpp │ │ │ │ ├── active_wsle_listhead_t.start.hpp │ │ │ │ ├── aligned_slist_t.end.hpp │ │ │ │ ├── aligned_slist_t.start.hpp │ │ │ │ ├── api.end.hpp │ │ │ │ ├── api.start.hpp │ │ │ │ ├── available_page_wait_states_t.end.hpp │ │ │ │ ├── available_page_wait_states_t.start.hpp │ │ │ │ ├── bad_memory_event_entry_t.end.hpp │ │ │ │ ├── bad_memory_event_entry_t.start.hpp │ │ │ │ ├── cached_pte_t.end.hpp │ │ │ │ ├── cached_pte_t.start.hpp │ │ │ │ ├── cached_ptes_t.end.hpp │ │ │ │ ├── cached_ptes_t.start.hpp │ │ │ │ ├── clone_block_flags_t.end.hpp │ │ │ │ ├── clone_block_flags_t.start.hpp │ │ │ │ ├── combine_page_listhead_t.end.hpp │ │ │ │ ├── combine_page_listhead_t.start.hpp │ │ │ │ ├── combine_state_t.end.hpp │ │ │ │ ├── combine_state_t.start.hpp │ │ │ │ ├── combine_workitem_t.end.hpp │ │ │ │ ├── combine_workitem_t.start.hpp │ │ │ │ ├── common_page_state_t.end.hpp │ │ │ │ ├── common_page_state_t.start.hpp │ │ │ │ ├── control_area_wait_block_t.end.hpp │ │ │ │ ├── control_area_wait_block_t.start.hpp │ │ │ │ ├── cross_partition_charges_t.end.hpp │ │ │ │ ├── cross_partition_charges_t.start.hpp │ │ │ │ ├── debugger_state_t.end.hpp │ │ │ │ ├── debugger_state_t.start.hpp │ │ │ │ ├── decay_timer_link_t.end.hpp │ │ │ │ ├── decay_timer_link_t.start.hpp │ │ │ │ ├── decay_timer_linkage_t.end.hpp │ │ │ │ ├── decay_timer_linkage_t.start.hpp │ │ │ │ ├── deferred_pfns_to_free_t.end.hpp │ │ │ │ ├── deferred_pfns_to_free_t.start.hpp │ │ │ │ ├── dll_overflow_area_t.end.hpp │ │ │ │ ├── dll_overflow_area_t.start.hpp │ │ │ │ ├── driver_va_t.end.hpp │ │ │ │ ├── driver_va_t.start.hpp │ │ │ │ ├── dynamic_bitmap_t.end.hpp │ │ │ │ ├── dynamic_bitmap_t.start.hpp │ │ │ │ ├── enclave_state_t.end.hpp │ │ │ │ ├── enclave_state_t.start.hpp │ │ │ │ ├── error_state_t.end.hpp │ │ │ │ ├── error_state_t.start.hpp │ │ │ │ ├── extent_deletion_wait_block_t.end.hpp │ │ │ │ ├── extent_deletion_wait_block_t.start.hpp │ │ │ │ ├── extra_image_information_t.end.hpp │ │ │ │ ├── extra_image_information_t.start.hpp │ │ │ │ ├── flags_t.end.hpp │ │ │ │ ├── flags_t.start.hpp │ │ │ │ ├── forced_commits_t.end.hpp │ │ │ │ ├── forced_commits_t.start.hpp │ │ │ │ ├── free_large_page_list_t.end.hpp │ │ │ │ ├── free_large_page_list_t.start.hpp │ │ │ │ ├── free_large_pages_t.end.hpp │ │ │ │ ├── free_large_pages_t.start.hpp │ │ │ │ ├── hard_fault_state_t.end.hpp │ │ │ │ ├── hard_fault_state_t.start.hpp │ │ │ │ ├── hardware_state_t.end.hpp │ │ │ │ ├── hardware_state_t.start.hpp │ │ │ │ ├── hot_patch_process_context_t.end.hpp │ │ │ │ ├── hot_patch_process_context_t.start.hpp │ │ │ │ ├── hot_patch_state_t.end.hpp │ │ │ │ ├── hot_patch_state_t.start.hpp │ │ │ │ ├── huge_pfn_t.end.hpp │ │ │ │ ├── huge_pfn_t.start.hpp │ │ │ │ ├── huge_system_view_head_t.end.hpp │ │ │ │ ├── huge_system_view_head_t.start.hpp │ │ │ │ ├── image_security_reference_t.end.hpp │ │ │ │ ├── image_security_reference_t.start.hpp │ │ │ │ ├── io_cache_stats_t.end.hpp │ │ │ │ ├── io_cache_stats_t.start.hpp │ │ │ │ ├── io_page_state_t.end.hpp │ │ │ │ ├── io_page_state_t.start.hpp │ │ │ │ ├── large_page_lists_changing_t.end.hpp │ │ │ │ ├── large_page_lists_changing_t.start.hpp │ │ │ │ ├── largepage_image_info_t.end.hpp │ │ │ │ ├── largepage_image_info_t.start.hpp │ │ │ │ ├── largepage_vad_info_t.end.hpp │ │ │ │ ├── largepage_vad_info_t.start.hpp │ │ │ │ ├── ldw_work_context_t.end.hpp │ │ │ │ ├── ldw_work_context_t.start.hpp │ │ │ │ ├── modwrite_data_t.end.hpp │ │ │ │ ├── modwrite_data_t.start.hpp │ │ │ │ ├── node_information_t.end.hpp │ │ │ │ ├── node_information_t.start.hpp │ │ │ │ ├── node_number_zero_based_t.end.hpp │ │ │ │ ├── node_number_zero_based_t.start.hpp │ │ │ │ ├── page_colors_t.end.hpp │ │ │ │ ├── page_colors_t.start.hpp │ │ │ │ ├── page_combine_statistics_t.end.hpp │ │ │ │ ├── page_combine_statistics_t.start.hpp │ │ │ │ ├── page_combining_support_t.end.hpp │ │ │ │ ├── page_combining_support_t.start.hpp │ │ │ │ ├── page_hash_t.end.hpp │ │ │ │ ├── page_hash_t.start.hpp │ │ │ │ ├── pagefile_bitmaps_cache_entry_t.end.hpp │ │ │ │ ├── pagefile_bitmaps_cache_entry_t.start.hpp │ │ │ │ ├── pagefile_metadata_layout_t.end.hpp │ │ │ │ ├── pagefile_metadata_layout_t.start.hpp │ │ │ │ ├── pagefile_traces_t.end.hpp │ │ │ │ ├── pagefile_traces_t.start.hpp │ │ │ │ ├── pagelist_state_t.end.hpp │ │ │ │ ├── pagelist_state_t.start.hpp │ │ │ │ ├── paging_file_space_bitmaps_t.end.hpp │ │ │ │ ├── paging_file_space_bitmaps_t.start.hpp │ │ │ │ ├── paging_io_state_t.end.hpp │ │ │ │ ├── paging_io_state_t.start.hpp │ │ │ │ ├── partition_commit_t.end.hpp │ │ │ │ ├── partition_commit_t.start.hpp │ │ │ │ ├── partition_core_t.end.hpp │ │ │ │ ├── partition_core_t.start.hpp │ │ │ │ ├── partition_flags_t.end.hpp │ │ │ │ ├── partition_flags_t.start.hpp │ │ │ │ ├── partition_modwrites_t.end.hpp │ │ │ │ ├── partition_modwrites_t.start.hpp │ │ │ │ ├── partition_page_lists_t.end.hpp │ │ │ │ ├── partition_page_lists_t.start.hpp │ │ │ │ ├── partition_segments_t.end.hpp │ │ │ │ ├── partition_segments_t.start.hpp │ │ │ │ ├── partition_state_t.end.hpp │ │ │ │ ├── partition_state_t.start.hpp │ │ │ │ ├── partition_stores_t.end.hpp │ │ │ │ ├── partition_stores_t.start.hpp │ │ │ │ ├── partition_t.end.hpp │ │ │ │ ├── partition_t.start.hpp │ │ │ │ ├── partition_zeroing_t.end.hpp │ │ │ │ ├── partition_zeroing_t.start.hpp │ │ │ │ ├── per_session_protos_t.end.hpp │ │ │ │ ├── per_session_protos_t.start.hpp │ │ │ │ ├── pfn_ulong5_t.end.hpp │ │ │ │ ├── pfn_ulong5_t.start.hpp │ │ │ │ ├── physical_view_t.end.hpp │ │ │ │ ├── physical_view_t.start.hpp │ │ │ │ ├── pool_failure_reasons_t.end.hpp │ │ │ │ ├── pool_failure_reasons_t.start.hpp │ │ │ │ ├── pool_state_t.end.hpp │ │ │ │ ├── pool_state_t.start.hpp │ │ │ │ ├── probe_raise_tracker_t.end.hpp │ │ │ │ ├── probe_raise_tracker_t.start.hpp │ │ │ │ ├── process_state_t.end.hpp │ │ │ │ ├── process_state_t.start.hpp │ │ │ │ ├── prototype_ptes_node_t.end.hpp │ │ │ │ ├── prototype_ptes_node_t.start.hpp │ │ │ │ ├── pte_chain_head_t.end.hpp │ │ │ │ ├── pte_chain_head_t.start.hpp │ │ │ │ ├── queued_deadstack_workitem_t.end.hpp │ │ │ │ ├── queued_deadstack_workitem_t.start.hpp │ │ │ │ ├── rebuild_large_page_timer_t.end.hpp │ │ │ │ ├── rebuild_large_page_timer_t.start.hpp │ │ │ │ ├── removal_requested_page_t.end.hpp │ │ │ │ ├── removal_requested_page_t.start.hpp │ │ │ │ ├── resavail_failures_t.end.hpp │ │ │ │ ├── resavail_failures_t.start.hpp │ │ │ │ ├── reservation_cluster_info_t.end.hpp │ │ │ │ ├── reservation_cluster_info_t.start.hpp │ │ │ │ ├── restricted_modwrites_t.end.hpp │ │ │ │ ├── restricted_modwrites_t.start.hpp │ │ │ │ ├── resume_workitem_t.end.hpp │ │ │ │ ├── resume_workitem_t.start.hpp │ │ │ │ ├── reverse_view_map_t.end.hpp │ │ │ │ ├── reverse_view_map_t.start.hpp │ │ │ │ ├── section_image_information_t.end.hpp │ │ │ │ ├── section_image_information_t.start.hpp │ │ │ │ ├── section_state_t.end.hpp │ │ │ │ ├── section_state_t.start.hpp │ │ │ │ ├── section_wow_state_t.end.hpp │ │ │ │ ├── section_wow_state_t.start.hpp │ │ │ │ ├── session_driver_unload_t.end.hpp │ │ │ │ ├── session_driver_unload_t.start.hpp │ │ │ │ ├── session_state_t.end.hpp │ │ │ │ ├── session_state_t.start.hpp │ │ │ │ ├── shutdown_state_t.end.hpp │ │ │ │ ├── shutdown_state_t.start.hpp │ │ │ │ ├── slab_allocator_context_t.end.hpp │ │ │ │ ├── slab_allocator_context_t.start.hpp │ │ │ │ ├── special_pool_t.end.hpp │ │ │ │ ├── special_pool_t.start.hpp │ │ │ │ ├── special_purpose_memory_state_t.end.hpp │ │ │ │ ├── special_purpose_memory_state_t.start.hpp │ │ │ │ ├── standby_lookaside_t.end.hpp │ │ │ │ ├── standby_lookaside_t.start.hpp │ │ │ │ ├── standby_state_t.end.hpp │ │ │ │ ├── standby_state_t.start.hpp │ │ │ │ ├── store_inpage_complete_flags_t.end.hpp │ │ │ │ ├── store_inpage_complete_flags_t.start.hpp │ │ │ │ ├── sub64k_free_ranges_t.end.hpp │ │ │ │ ├── sub64k_free_ranges_t.start.hpp │ │ │ │ ├── subsection_entry1_t.end.hpp │ │ │ │ ├── subsection_entry1_t.start.hpp │ │ │ │ ├── system_accelerators_t.end.hpp │ │ │ │ ├── system_accelerators_t.start.hpp │ │ │ │ ├── system_cache_view_attributes_t.end.hpp │ │ │ │ ├── system_cache_view_attributes_t.start.hpp │ │ │ │ ├── system_image_state_t.end.hpp │ │ │ │ ├── system_image_state_t.start.hpp │ │ │ │ ├── system_information_t.end.hpp │ │ │ │ ├── system_information_t.start.hpp │ │ │ │ ├── system_node_information_t.end.hpp │ │ │ │ ├── system_node_information_t.start.hpp │ │ │ │ ├── system_node_nonpaged_pool_t.end.hpp │ │ │ │ ├── system_node_nonpaged_pool_t.start.hpp │ │ │ │ ├── system_pte_state_t.end.hpp │ │ │ │ ├── system_pte_state_t.start.hpp │ │ │ │ ├── system_pte_type_t.end.hpp │ │ │ │ ├── system_pte_type_t.start.hpp │ │ │ │ ├── system_trim_state_t.end.hpp │ │ │ │ ├── system_trim_state_t.start.hpp │ │ │ │ ├── system_va_assignment_t.end.hpp │ │ │ │ ├── system_va_assignment_t.start.hpp │ │ │ │ ├── system_va_state_t.end.hpp │ │ │ │ ├── system_va_state_t.start.hpp │ │ │ │ ├── triage_dump_data_t.end.hpp │ │ │ │ ├── triage_dump_data_t.start.hpp │ │ │ │ ├── ultra_mdl_node_t.end.hpp │ │ │ │ ├── ultra_mdl_node_t.start.hpp │ │ │ │ ├── ultra_va_context_t.end.hpp │ │ │ │ ├── ultra_va_context_t.start.hpp │ │ │ │ ├── vad_event_block_t.end.hpp │ │ │ │ ├── vad_event_block_t.start.hpp │ │ │ │ ├── vad_sequential_info_t.end.hpp │ │ │ │ ├── vad_sequential_info_t.start.hpp │ │ │ │ ├── verifier_pool_header_t.end.hpp │ │ │ │ ├── verifier_pool_header_t.start.hpp │ │ │ │ ├── visible_partition_t.end.hpp │ │ │ │ ├── visible_partition_t.start.hpp │ │ │ │ ├── visible_state_t.end.hpp │ │ │ │ ├── visible_state_t.start.hpp │ │ │ │ ├── write_calibration_t.end.hpp │ │ │ │ ├── write_calibration_t.start.hpp │ │ │ │ ├── write_modes_t.end.hpp │ │ │ │ ├── write_modes_t.start.hpp │ │ │ │ ├── wsle_t.end.hpp │ │ │ │ ├── wsle_t.start.hpp │ │ │ │ ├── zero_cost_counts_t.end.hpp │ │ │ │ └── zero_cost_counts_t.start.hpp │ │ │ ├── memory_event_types_t.hpp │ │ │ ├── memory_highlow_t.hpp │ │ │ ├── mirror_bitmap_types_t.hpp │ │ │ ├── modwrite_data_t.hpp │ │ │ ├── node_information_t.hpp │ │ │ ├── node_nonpaged_pool_bitmap_t.hpp │ │ │ ├── node_number_zero_based_t.hpp │ │ │ ├── page_colors_t.hpp │ │ │ ├── page_combine_statistics_t.hpp │ │ │ ├── page_combining_support_t.hpp │ │ │ ├── page_hash_error_behavior_t.hpp │ │ │ ├── page_hash_t.hpp │ │ │ ├── pagefile_bitmaps_cache_entry_t.hpp │ │ │ ├── pagefile_metadata_layout_t.hpp │ │ │ ├── pagefile_traces_t.hpp │ │ │ ├── pagelist_lock_types_t.hpp │ │ │ ├── pagelist_state_t.hpp │ │ │ ├── paging_file_space_bitmaps_t.hpp │ │ │ ├── paging_io_state_t.hpp │ │ │ ├── partition_commit_t.hpp │ │ │ ├── partition_core_t.hpp │ │ │ ├── partition_flags_t.hpp │ │ │ ├── partition_modwrites_t.hpp │ │ │ ├── partition_page_lists_t.hpp │ │ │ ├── partition_segments_t.hpp │ │ │ ├── partition_state_t.hpp │ │ │ ├── partition_stores_t.hpp │ │ │ ├── partition_t.hpp │ │ │ ├── partition_thread_t.hpp │ │ │ ├── partition_zeroing_t.hpp │ │ │ ├── per_session_protos_t.hpp │ │ │ ├── pfn_cache_attribute_t.hpp │ │ │ ├── pfn_ulong5_t.hpp │ │ │ ├── physical_view_t.hpp │ │ │ ├── pool_failure_reasons_t.hpp │ │ │ ├── pool_state_t.hpp │ │ │ ├── probe_raise_tracker_t.hpp │ │ │ ├── process_state_t.hpp │ │ │ ├── prototype_ptes_node_t.hpp │ │ │ ├── pte_chain_head_t.hpp │ │ │ ├── queued_deadstack_workitem_t.hpp │ │ │ ├── rebuild_large_page_timer_t.hpp │ │ │ ├── removal_requested_page_t.hpp │ │ │ ├── resavail_failures_t.hpp │ │ │ ├── reservation_cluster_info_t.hpp │ │ │ ├── restricted_modwrites_t.hpp │ │ │ ├── resume_workitem_t.hpp │ │ │ ├── reverse_view_map_t.hpp │ │ │ ├── rva_list_filter_type_t.hpp │ │ │ ├── section_image_information_t.hpp │ │ │ ├── section_state_t.hpp │ │ │ ├── section_wow_state_t.hpp │ │ │ ├── session_driver_unload_t.hpp │ │ │ ├── session_state_t.hpp │ │ │ ├── shared_user_page_types_t.hpp │ │ │ ├── shutdown_state_t.hpp │ │ │ ├── slab_allocator_context_t.hpp │ │ │ ├── slab_allocator_entry_t.hpp │ │ │ ├── slab_allocator_protection_t.hpp │ │ │ ├── slab_allocator_type_t.hpp │ │ │ ├── special_pool_t.hpp │ │ │ ├── special_purpose_memory_state_t.hpp │ │ │ ├── standby_lookaside_t.hpp │ │ │ ├── standby_state_t.hpp │ │ │ ├── store_inpage_complete_flags_t.hpp │ │ │ ├── store_virtual_pagefile_value_t.hpp │ │ │ ├── sub64k_free_ranges_t.hpp │ │ │ ├── subsection_entry1_t.hpp │ │ │ ├── subvad_lists_t.hpp │ │ │ ├── system_accelerators_t.hpp │ │ │ ├── system_cache_view_attributes_t.hpp │ │ │ ├── system_image_state_t.hpp │ │ │ ├── system_information_t.hpp │ │ │ ├── system_node_information_t.hpp │ │ │ ├── system_node_nonpaged_pool_t.hpp │ │ │ ├── system_pte_state_t.hpp │ │ │ ├── system_pte_type_t.hpp │ │ │ ├── system_trim_state_t.hpp │ │ │ ├── system_va_assignment_t.hpp │ │ │ ├── system_va_state_t.hpp │ │ │ ├── system_va_type_t.hpp │ │ │ ├── triage_dump_data_t.hpp │ │ │ ├── ultra_mdl_node_t.hpp │ │ │ ├── ultra_va_context_t.hpp │ │ │ ├── vad_64k_types_t.hpp │ │ │ ├── vad_allocation_cell_type_t.hpp │ │ │ ├── vad_event_block_t.hpp │ │ │ ├── vad_sequential_info_t.hpp │ │ │ ├── verifier_pool_header_t.hpp │ │ │ ├── visible_partition_t.hpp │ │ │ ├── visible_state_t.hpp │ │ │ ├── working_set_type_t.hpp │ │ │ ├── write_calibration_t.hpp │ │ │ ├── write_modes_t.hpp │ │ │ ├── write_types_t.hpp │ │ │ ├── wsle_t.hpp │ │ │ ├── zero_cost_counts_t.hpp │ │ │ └── zero_thread_context_t.hpp │ │ ├── mm/ │ │ │ ├── api.hpp │ │ │ ├── broadcast32_enum_t.hpp │ │ │ ├── broadcast64_enum_t.hpp │ │ │ ├── cmpint_enum_t.hpp │ │ │ ├── copy_address_t.hpp │ │ │ ├── driver_verifier_data_t.hpp │ │ │ ├── etw_page_extra_info_t.hpp │ │ │ ├── etw_page_info_ex_t.hpp │ │ │ ├── etw_page_info_t.hpp │ │ │ ├── etw_working_set_pfn_rundown_t.hpp │ │ │ ├── etw_working_set_type_t.hpp │ │ │ ├── exp_adj_enum_t.hpp │ │ │ ├── fixupresult_enum_t.hpp │ │ │ ├── graphics_vad_flags_t.hpp │ │ │ ├── index_scale_enum_t.hpp │ │ │ ├── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ ├── api.start.hpp │ │ │ │ ├── copy_address_t.end.hpp │ │ │ │ ├── copy_address_t.start.hpp │ │ │ │ ├── driver_verifier_data_t.end.hpp │ │ │ │ ├── driver_verifier_data_t.start.hpp │ │ │ │ ├── etw_page_extra_info_t.end.hpp │ │ │ │ ├── etw_page_extra_info_t.start.hpp │ │ │ │ ├── etw_page_info_ex_t.end.hpp │ │ │ │ ├── etw_page_info_ex_t.start.hpp │ │ │ │ ├── etw_page_info_t.end.hpp │ │ │ │ ├── etw_page_info_t.start.hpp │ │ │ │ ├── etw_working_set_pfn_rundown_t.end.hpp │ │ │ │ ├── etw_working_set_pfn_rundown_t.start.hpp │ │ │ │ ├── graphics_vad_flags_t.end.hpp │ │ │ │ ├── graphics_vad_flags_t.start.hpp │ │ │ │ ├── page_access_info_flags_t.end.hpp │ │ │ │ ├── page_access_info_flags_t.start.hpp │ │ │ │ ├── page_access_info_header_t.end.hpp │ │ │ │ ├── page_access_info_header_t.start.hpp │ │ │ │ ├── page_access_info_t.end.hpp │ │ │ │ ├── page_access_info_t.start.hpp │ │ │ │ ├── paged_pool_info_t.end.hpp │ │ │ │ ├── paged_pool_info_t.start.hpp │ │ │ │ ├── physical_address_list_t.end.hpp │ │ │ │ ├── physical_address_list_t.start.hpp │ │ │ │ ├── prefetch_flags_t.end.hpp │ │ │ │ ├── prefetch_flags_t.start.hpp │ │ │ │ ├── private_vad_flags_t.end.hpp │ │ │ │ ├── private_vad_flags_t.start.hpp │ │ │ │ ├── session_space_flags_t.end.hpp │ │ │ │ ├── session_space_flags_t.start.hpp │ │ │ │ ├── session_space_t.end.hpp │ │ │ │ ├── session_space_t.start.hpp │ │ │ │ ├── shared_vad_flags_t.end.hpp │ │ │ │ ├── shared_vad_flags_t.start.hpp │ │ │ │ ├── store_key_t.end.hpp │ │ │ │ ├── store_key_t.start.hpp │ │ │ │ ├── system_page_counts_t.end.hpp │ │ │ │ └── system_page_counts_t.start.hpp │ │ │ ├── mantissa_norm_enum_t.hpp │ │ │ ├── mantissa_sign_enum_t.hpp │ │ │ ├── mdl_page_contents_state_t.hpp │ │ │ ├── page_access_info_flags_t.hpp │ │ │ ├── page_access_info_header_t.hpp │ │ │ ├── page_access_info_t.hpp │ │ │ ├── page_access_type_t.hpp │ │ │ ├── page_priority_t.hpp │ │ │ ├── paged_pool_info_t.hpp │ │ │ ├── perm_enum_t.hpp │ │ │ ├── physical_address_list_t.hpp │ │ │ ├── pool_priorities_t.hpp │ │ │ ├── pool_types_t.hpp │ │ │ ├── preemptive_trims_t.hpp │ │ │ ├── prefetch_flags_t.hpp │ │ │ ├── private_vad_flags_t.hpp │ │ │ ├── rotate_direction_t.hpp │ │ │ ├── round_mode_enum_t.hpp │ │ │ ├── session_space_flags_t.hpp │ │ │ ├── session_space_t.hpp │ │ │ ├── shared_vad_flags_t.hpp │ │ │ ├── store_key_t.hpp │ │ │ ├── system_page_counts_t.hpp │ │ │ └── system_size_t.hpp │ │ ├── mou/ │ │ │ ├── api.hpp │ │ │ └── magic/ │ │ │ ├── api.end.hpp │ │ │ └── api.start.hpp │ │ ├── mx/ │ │ │ ├── api.hpp │ │ │ ├── auto_work_item_t.hpp │ │ │ ├── device_object_t.hpp │ │ │ ├── driver_object_t.hpp │ │ │ ├── event_t.hpp │ │ │ ├── file_object_t.hpp │ │ │ ├── lock_no_dynam_t.hpp │ │ │ ├── lock_t.hpp │ │ │ ├── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ ├── api.start.hpp │ │ │ │ ├── auto_work_item_t.end.hpp │ │ │ │ ├── auto_work_item_t.start.hpp │ │ │ │ ├── device_object_t.end.hpp │ │ │ │ ├── device_object_t.start.hpp │ │ │ │ ├── driver_object_t.end.hpp │ │ │ │ ├── driver_object_t.start.hpp │ │ │ │ ├── event_t.end.hpp │ │ │ │ ├── event_t.start.hpp │ │ │ │ ├── file_object_t.end.hpp │ │ │ │ ├── file_object_t.start.hpp │ │ │ │ ├── lock_no_dynam_t.end.hpp │ │ │ │ ├── lock_no_dynam_t.start.hpp │ │ │ │ ├── lock_t.end.hpp │ │ │ │ ├── lock_t.start.hpp │ │ │ │ ├── paged_lock_no_dynam_t.end.hpp │ │ │ │ ├── paged_lock_no_dynam_t.start.hpp │ │ │ │ ├── paged_lock_t.end.hpp │ │ │ │ ├── paged_lock_t.start.hpp │ │ │ │ ├── timer_t.end.hpp │ │ │ │ ├── timer_t.start.hpp │ │ │ │ ├── wnf_subscription_context_t.end.hpp │ │ │ │ ├── wnf_subscription_context_t.start.hpp │ │ │ │ ├── work_item_t.end.hpp │ │ │ │ └── work_item_t.start.hpp │ │ │ ├── memory_t.hpp │ │ │ ├── paged_lock_no_dynam_t.hpp │ │ │ ├── paged_lock_t.hpp │ │ │ ├── timer_t.hpp │ │ │ ├── wnf_subscription_context_t.hpp │ │ │ ├── wnf_t.hpp │ │ │ └── work_item_t.hpp │ │ ├── ndis/ │ │ │ ├── _802_11_ai_reqfi_t.hpp │ │ │ ├── _802_11_ai_resfi_t.hpp │ │ │ ├── _802_11_association_information_t.hpp │ │ │ ├── _802_11_authentication_encryption_t.hpp │ │ │ ├── _802_11_authentication_event_t.hpp │ │ │ ├── _802_11_authentication_mode_t.hpp │ │ │ ├── _802_11_authentication_request_t.hpp │ │ │ ├── _802_11_bssid_list_ex_t.hpp │ │ │ ├── _802_11_bssid_list_t.hpp │ │ │ ├── _802_11_capability_t.hpp │ │ │ ├── _802_11_configuration_fh_t.hpp │ │ │ ├── _802_11_configuration_t.hpp │ │ │ ├── _802_11_fixed_i_es_t.hpp │ │ │ ├── _802_11_key_t.hpp │ │ │ ├── _802_11_network_infrastructure_t.hpp │ │ │ ├── _802_11_network_type_list_t.hpp │ │ │ ├── _802_11_network_type_t.hpp │ │ │ ├── _802_11_non_bcast_ssid_list_t.hpp │ │ │ ├── _802_11_pmkid_candidate_list_t.hpp │ │ │ ├── _802_11_pmkid_t.hpp │ │ │ ├── _802_11_remove_key_t.hpp │ │ │ ├── _802_11_ssid_t.hpp │ │ │ ├── _802_11_statistics_t.hpp │ │ │ ├── _802_11_status_indication_t.hpp │ │ │ ├── _802_11_status_type_t.hpp │ │ │ ├── _802_11_test_t.hpp │ │ │ ├── _802_11_variable_i_es_t.hpp │ │ │ ├── _802_11_wep_status_t.hpp │ │ │ ├── _802_11_wep_t.hpp │ │ │ ├── adddevice_parameters/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── adddevice_parameters_t.hpp │ │ │ ├── af_list_t.hpp │ │ │ ├── allocate_shared_memory_telemetry/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── aoac_component_ref_time_t.hpp │ │ │ ├── api.hpp │ │ │ ├── arp_header_field_t.hpp │ │ │ ├── auto_acquire_miniport_spin_lock/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── binary_data_t.hpp │ │ │ ├── bind_builder_global/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── bind_driver_base/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── bind_driver_base_t.hpp │ │ │ ├── bind_filter_driver/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── bind_filter_driver_t.hpp │ │ │ ├── bind_filter_flags_t.hpp │ │ │ ├── bind_filter_link_t.hpp │ │ │ ├── bind_link_base/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── bind_link_base_t.hpp │ │ │ ├── bind_parameters_t.hpp │ │ │ ├── bind_paths_t.hpp │ │ │ ├── bind_protocol_driver/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── bind_protocol_driver_t.hpp │ │ │ ├── bind_protocol_link_t.hpp │ │ │ ├── bind_source_state_t.hpp │ │ │ ├── binding_enabled_or_disabled_t.hpp │ │ │ ├── bssid_info_t.hpp │ │ │ ├── bucketizer/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── call_manager_characteristics_t.hpp │ │ │ ├── call_run_mode_t.hpp │ │ │ ├── chimney_offload_type_t.hpp │ │ │ ├── class_id_t.hpp │ │ │ ├── client_characteristics_t.hpp │ │ │ ├── client_chimney_offload_generic_characteristics_t.hpp │ │ │ ├── client_chimney_offload_tcp_characteristics_t.hpp │ │ │ ├── close_registry_handle_t.hpp │ │ │ ├── co_address_family_t.hpp │ │ │ ├── co_address_list_t.hpp │ │ │ ├── co_address_t.hpp │ │ │ ├── co_af_block_t.hpp │ │ │ ├── co_call_manager_optional_handlers_t.hpp │ │ │ ├── co_call_manager_parameters_t.hpp │ │ │ ├── co_call_parameters_t.hpp │ │ │ ├── co_client_optional_handlers_t.hpp │ │ │ ├── co_media_parameters_t.hpp │ │ │ ├── co_party_block_t.hpp │ │ │ ├── co_pvc_t.hpp │ │ │ ├── co_sap_block_t.hpp │ │ │ ├── co_sap_t.hpp │ │ │ ├── co_specific_parameters_t.hpp │ │ │ ├── co_vc_block_t.hpp │ │ │ ├── co_vc_ptr_block_t.hpp │ │ │ ├── common_open_block_t.hpp │ │ │ ├── compartment_id_t.hpp │ │ │ ├── config_knob_flag_t.hpp │ │ │ ├── config_knob_namespace_t.hpp │ │ │ ├── config_knob_namespace_type_t.hpp │ │ │ ├── config_knob_source_t.hpp │ │ │ ├── configuration_object_t.hpp │ │ │ ├── configuration_parameter_t.hpp │ │ │ ├── connection_info_t.hpp │ │ │ ├── cs_traffic_stats_t.hpp │ │ │ ├── d0_signal_work_item_t.hpp │ │ │ ├── data_path_type_t.hpp │ │ │ ├── device_bus_specific_reset_info_t.hpp │ │ │ ├── device_bus_specific_reset_type_t.hpp │ │ │ ├── device_object_attributes_t.hpp │ │ │ ├── device_pnp_event_t.hpp │ │ │ ├── device_power_state_t.hpp │ │ │ ├── device_reset_interface_standard_t.hpp │ │ │ ├── device_reset_type_t.hpp │ │ │ ├── dl_address_type_t.hpp │ │ │ ├── dl_ei48_t.hpp │ │ │ ├── dl_eui48_t.hpp │ │ │ ├── dl_oui_t.hpp │ │ │ ├── dma_allocation_histogram_stopwatch/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dma_block_t.hpp │ │ │ ├── dma_description_t.hpp │ │ │ ├── do_not_bind_reason_t.hpp │ │ │ ├── dot11_additional_ie_t.hpp │ │ │ ├── dot11_association_info_ex_t.hpp │ │ │ ├── dot11_association_info_list_t.hpp │ │ │ ├── dot11_association_params_t.hpp │ │ │ ├── dot11_association_state_t.hpp │ │ │ ├── dot11_auth_algorithm_list_t.hpp │ │ │ ├── dot11_auth_algorithm_t.hpp │ │ │ ├── dot11_auth_cipher_pair_list_t.hpp │ │ │ ├── dot11_auth_cipher_pair_t.hpp │ │ │ ├── dot11_available_channel_list_t.hpp │ │ │ ├── dot11_available_frequency_list_t.hpp │ │ │ ├── dot11_bssid_list_t.hpp │ │ │ ├── dot11_byte_array_t.hpp │ │ │ ├── dot11_cipher_algorithm_list_t.hpp │ │ │ ├── dot11_cipher_algorithm_t.hpp │ │ │ ├── dot11_cipher_default_key_value_t.hpp │ │ │ ├── dot11_country_or_region_string_list_t.hpp │ │ │ ├── dot11_data_rate_mapping_entry_t.hpp │ │ │ ├── dot11_disassociate_peer_request_t.hpp │ │ │ ├── dot11_diversity_support_t.hpp │ │ │ ├── dot11_erp_phy_attributes_t.hpp │ │ │ ├── dot11_extap_attributes_t.hpp │ │ │ ├── dot11_extsta_attributes_t.hpp │ │ │ ├── dot11_extsta_capability_t.hpp │ │ │ ├── dot11_hrdsss_phy_attributes_t.hpp │ │ │ ├── dot11_ibss_params_t.hpp │ │ │ ├── dot11_incoming_assoc_decision_t.hpp │ │ │ ├── dot11_mac_address_list_t.hpp │ │ │ ├── dot11_mac_frame_statistics_t.hpp │ │ │ ├── dot11_ofdm_phy_attributes_t.hpp │ │ │ ├── dot11_peer_info_list_t.hpp │ │ │ ├── dot11_peer_info_t.hpp │ │ │ ├── dot11_peer_statistics_t.hpp │ │ │ ├── dot11_phy_attributes_t.hpp │ │ │ ├── dot11_phy_frame_statistics_t.hpp │ │ │ ├── dot11_phy_id_list_t.hpp │ │ │ ├── dot11_phy_type_t.hpp │ │ │ ├── dot11_pmkid_entry_t.hpp │ │ │ ├── dot11_pmkid_list_t.hpp │ │ │ ├── dot11_port_state_notification_t.hpp │ │ │ ├── dot11_power_mode_t.hpp │ │ │ ├── dot11_privacy_exemption_list_t.hpp │ │ │ ├── dot11_privacy_exemption_t.hpp │ │ │ ├── dot11_qos_params_t.hpp │ │ │ ├── dot11_ssid_list_t.hpp │ │ │ ├── dot11_ssid_t.hpp │ │ │ ├── dot11_statistics_t.hpp │ │ │ ├── dot11_supported_data_rates_value_v2_t.hpp │ │ │ ├── dot11_temp_type_t.hpp │ │ │ ├── dot11_vwifi_attributes_t.hpp │ │ │ ├── dot11_vwifi_combination_t.hpp │ │ │ ├── dot11_wfd_attributes_t.hpp │ │ │ ├── dpc_work_item_t.hpp │ │ │ ├── driver_optional_handlers_t.hpp │ │ │ ├── driver_service/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── driver_wrapper_handle_t.hpp │ │ │ ├── empty_c_variant_feature_staging_minio_networking_t.hpp │ │ │ ├── encapsulated_packet_task_offload_t.hpp │ │ │ ├── encapsulated_packet_task_offload_v2_t.hpp │ │ │ ├── encapsulation_format_t.hpp │ │ │ ├── encapsulation_t.hpp │ │ │ ├── entry_header_t.hpp │ │ │ ├── enum_filters_t.hpp │ │ │ ├── environment_type_t.hpp │ │ │ ├── eth_multicast_wrapper_t.hpp │ │ │ ├── event_log_entry_t.hpp │ │ │ ├── event_log_handle_t.hpp │ │ │ ├── event_log_t.hpp │ │ │ ├── event_t.hpp │ │ │ ├── execution_context_configuration_t.hpp │ │ │ ├── execution_context_flags_t.hpp │ │ │ ├── execution_context_knob_collection/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── execution_context_library/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── execution_context_runtime_knobs_t.hpp │ │ │ ├── execution_context_work_unit_knobs_t.hpp │ │ │ ├── filter_attach_parameters_t.hpp │ │ │ ├── filter_attributes_t.hpp │ │ │ ├── filter_block/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── filter_block_t.hpp │ │ │ ├── filter_driver_block_t.hpp │ │ │ ├── filter_driver_characteristics_t.hpp │ │ │ ├── filter_interface_t.hpp │ │ │ ├── filter_partial_characteristics_t.hpp │ │ │ ├── filter_pause_parameters_t.hpp │ │ │ ├── filter_pause_restart_context_t.hpp │ │ │ ├── filter_restart_parameters_t.hpp │ │ │ ├── filter_state_t.hpp │ │ │ ├── filter_task_offload_t.hpp │ │ │ ├── filterdbs_t.hpp │ │ │ ├── filterlist_item_t.hpp │ │ │ ├── flowspec_t.hpp │ │ │ ├── fpnp_reftag_t.hpp │ │ │ ├── frame_header_t.hpp │ │ │ ├── frame_type_and_open_t.hpp │ │ │ ├── frame_type_record_t.hpp │ │ │ ├── free_shared_memory_telemetry/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── gen_get_netcard_time_t.hpp │ │ │ ├── gen_get_time_caps_t.hpp │ │ │ ├── generic_object_t.hpp │ │ │ ├── gfp_ethernet_header_fields_t.hpp │ │ │ ├── gfp_exact_match_profile_t.hpp │ │ │ ├── gfp_header_group_exact_match_profile_t.hpp │ │ │ ├── gfp_header_group_exact_match_t.hpp │ │ │ ├── gfp_header_group_wildcard_match_profile_t.hpp │ │ │ ├── gfp_header_group_wildcard_match_t.hpp │ │ │ ├── gfp_ip_src_and_dest_address_wildcard_match_t.hpp │ │ │ ├── gfp_ipv4_address_wildcard_match_t.hpp │ │ │ ├── gfp_ipv4_src_and_dest_address_wildcard_match_t.hpp │ │ │ ├── gfp_ipv6_address_wildcard_match_t.hpp │ │ │ ├── gfp_ipv6_src_and_dest_address_wildcard_match_t.hpp │ │ │ ├── gfp_table_type_t.hpp │ │ │ ├── gfp_transport_port_wildcard_match_t.hpp │ │ │ ├── gfp_transport_src_and_dest_port_wildcard_match_t.hpp │ │ │ ├── gfp_wildcard_match_profile_t.hpp │ │ │ ├── gfp_wildcard_match_type_t.hpp │ │ │ ├── gft_byte_counter_value_t.hpp │ │ │ ├── gft_counter_info_array_t.hpp │ │ │ ├── gft_counter_info_t.hpp │ │ │ ├── gft_counter_parameters_t.hpp │ │ │ ├── gft_counter_type_t.hpp │ │ │ ├── gft_counter_update_frequency_t.hpp │ │ │ ├── gft_counter_value_array_t.hpp │ │ │ ├── gft_counter_value_t.hpp │ │ │ ├── gft_custom_action_profile_t.hpp │ │ │ ├── gft_custom_action_t.hpp │ │ │ ├── gft_delete_profile_parameters_t.hpp │ │ │ ├── gft_delete_table_parameters_t.hpp │ │ │ ├── gft_exact_match_flow_entry_t.hpp │ │ │ ├── gft_flow_entry_array_t.hpp │ │ │ ├── gft_flow_entry_cache_hint_t.hpp │ │ │ ├── gft_flow_entry_id_and_counter_t.hpp │ │ │ ├── gft_flow_entry_id_array_t.hpp │ │ │ ├── gft_flow_entry_info_array_t.hpp │ │ │ ├── gft_flow_entry_state_t.hpp │ │ │ ├── gft_flow_entry_type_t.hpp │ │ │ ├── gft_flow_state_t.hpp │ │ │ ├── gft_free_counter_parameters_t.hpp │ │ │ ├── gft_header_group_transposition_action_t.hpp │ │ │ ├── gft_header_group_transposition_profile_t.hpp │ │ │ ├── gft_header_group_transposition_t.hpp │ │ │ ├── gft_header_transposition_profile_t.hpp │ │ │ ├── gft_offload_capabilities_t.hpp │ │ │ ├── gft_offload_parameters_t.hpp │ │ │ ├── gft_packet_byte_counter_value_and_state_t.hpp │ │ │ ├── gft_packet_byte_counter_value_t.hpp │ │ │ ├── gft_packet_counter_value_t.hpp │ │ │ ├── gft_profile_info_array_t.hpp │ │ │ ├── gft_profile_info_t.hpp │ │ │ ├── gft_profile_type_t.hpp │ │ │ ├── gft_statistics_t.hpp │ │ │ ├── gft_table_info_array_t.hpp │ │ │ ├── gft_table_info_t.hpp │ │ │ ├── gft_table_parameters_t.hpp │ │ │ ├── gft_vport_parameters_t.hpp │ │ │ ├── gft_wildcard_action_t.hpp │ │ │ ├── gft_wildcard_match_flow_entry_t.hpp │ │ │ ├── global_triage_block_t.hpp │ │ │ ├── guid_t.hpp │ │ │ ├── halt_action_t.hpp │ │ │ ├── hd_split_attributes_t.hpp │ │ │ ├── hd_split_current_config_t.hpp │ │ │ ├── idle_condition_t.hpp │ │ │ ├── if_block_source_t.hpp │ │ │ ├── if_block_t.hpp │ │ │ ├── if_compartment_block_t.hpp │ │ │ ├── if_counted_string_lh_t.hpp │ │ │ ├── if_index_range/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── if_network_block_t.hpp │ │ │ ├── if_physical_address_lh_t.hpp │ │ │ ├── if_provider_block_t.hpp │ │ │ ├── if_provider_characteristics_t.hpp │ │ │ ├── if_rcv_address_t.hpp │ │ │ ├── if_reftag_t.hpp │ │ │ ├── if_stack_entry_t.hpp │ │ │ ├── indicate_offload_event_t.hpp │ │ │ ├── interface_type_t.hpp │ │ │ ├── interrupt_block_t.hpp │ │ │ ├── interrupt_moderation_parameters_t.hpp │ │ │ ├── interrupt_moderation_t.hpp │ │ │ ├── interrupt_type_t.hpp │ │ │ ├── ip_offload_stats_t.hpp │ │ │ ├── ipsec_offload_v1_net_buffer_list_info_t.hpp │ │ │ ├── ipsec_offload_v1_t.hpp │ │ │ ├── ipsec_offload_v2_add_sa_t.hpp │ │ │ ├── ipsec_offload_v2_algorithm_info_t.hpp │ │ │ ├── ipsec_offload_v2_delete_sa_t.hpp │ │ │ ├── ipsec_offload_v2_header_net_buffer_list_info_t.hpp │ │ │ ├── ipsec_offload_v2_net_buffer_list_info_t.hpp │ │ │ ├── ipsec_offload_v2_operation_t.hpp │ │ │ ├── ipsec_offload_v2_security_association_t.hpp │ │ │ ├── ipsec_offload_v2_t.hpp │ │ │ ├── ipsec_offload_v2_tunnel_net_buffer_list_info_t.hpp │ │ │ ├── ipsec_offload_v2_update_sa_t.hpp │ │ │ ├── ipsec_packet_info_t.hpp │ │ │ ├── ipv4_header_field_t.hpp │ │ │ ├── ipv4_header_t.hpp │ │ │ ├── ipv6_fragment_header_t.hpp │ │ │ ├── ipv6_header_field_t.hpp │ │ │ ├── irp_work_item_t.hpp │ │ │ ├── iterative_data_path_tracker_entry_t.hpp │ │ │ ├── k_acquire_spin_lock/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── k_acquire_spin_lock_t.hpp │ │ │ ├── k_auto_event_t.hpp │ │ │ ├── k_critical_region_t.hpp │ │ │ ├── k_default_region_t.hpp │ │ │ ├── k_histogram/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── k_irql_region_t.hpp │ │ │ ├── k_loader/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── k_lock_holder/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── k_lock_holder_t.hpp │ │ │ ├── k_lock_this_exclusive/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── k_lock_this_exclusive_t.hpp │ │ │ ├── k_lock_this_shared/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── k_lock_this_shared_t.hpp │ │ │ ├── k_module/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── k_push_lock/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── k_push_lock_base_t.hpp │ │ │ ├── k_push_lock_manual_construct/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── k_push_lock_t.hpp │ │ │ ├── k_reg_key/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── k_reg_key_t.hpp │ │ │ ├── k_rundown_base/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── k_rundown_base_t.hpp │ │ │ ├── k_rundown_holder/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── k_rundown_holder_t.hpp │ │ │ ├── k_rundown_manual_construct_t.hpp │ │ │ ├── k_rundown_t.hpp │ │ │ ├── k_spin_lock_base_t.hpp │ │ │ ├── k_spin_lock_manual_construct_t.hpp │ │ │ ├── k_spin_lock_t.hpp │ │ │ ├── k_stopwatch/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── k_wait_event_base/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── k_wait_event_base_t.hpp │ │ │ ├── k_wait_event_manual_construct_t.hpp │ │ │ ├── k_wait_event_t.hpp │ │ │ ├── knob_collection/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── knob_collection_t.hpp │ │ │ ├── knob_descriptor/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── knob_descriptor_t.hpp │ │ │ ├── knob_information_t.hpp │ │ │ ├── knob_namespace/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── knob_namespace_t.hpp │ │ │ ├── knob_state_t.hpp │ │ │ ├── ks_compression_t.hpp │ │ │ ├── ks_framing_item_t.hpp │ │ │ ├── ks_framing_range_t.hpp │ │ │ ├── ks_framing_range_weighted_t.hpp │ │ │ ├── ksallocator_dispatch_t.hpp │ │ │ ├── ksallocator_framing_ex_t.hpp │ │ │ ├── ksallocator_framing_t.hpp │ │ │ ├── ksattribute_list_t.hpp │ │ │ ├── ksattribute_t.hpp │ │ │ ├── ksautomation_table_t.hpp │ │ │ ├── ksbuffer_item_t.hpp │ │ │ ├── ksclock_dispatch_t.hpp │ │ │ ├── kscomponentid_t.hpp │ │ │ ├── ksdataformat_t.hpp │ │ │ ├── ksdevice_descriptor_t.hpp │ │ │ ├── ksdevice_dispatch_t.hpp │ │ │ ├── ksdevice_t.hpp │ │ │ ├── ksdpc_item_t.hpp │ │ │ ├── ksevent_entry_t.hpp │ │ │ ├── ksevent_item_t.hpp │ │ │ ├── ksevent_set_t.hpp │ │ │ ├── kseventdata_t.hpp │ │ │ ├── ksfastmethod_item_t.hpp │ │ │ ├── ksfastproperty_item_t.hpp │ │ │ ├── ksfilter_descriptor_t.hpp │ │ │ ├── ksfilter_dispatch_t.hpp │ │ │ ├── ksfilter_t.hpp │ │ │ ├── ksfilterfactory_t.hpp │ │ │ ├── ksgate_t.hpp │ │ │ ├── ksidentifier_t.hpp │ │ │ ├── ksmapping_t.hpp │ │ │ ├── ksmethod_item_t.hpp │ │ │ ├── ksmethod_set_t.hpp │ │ │ ├── ksmultiple_item_t.hpp │ │ │ ├── ksnode_descriptor_t.hpp │ │ │ ├── ksp_pin_t.hpp │ │ │ ├── kspin_communication_t.hpp │ │ │ ├── kspin_dataflow_t.hpp │ │ │ ├── kspin_descriptor_ex_t.hpp │ │ │ ├── kspin_descriptor_t.hpp │ │ │ ├── kspin_dispatch_t.hpp │ │ │ ├── kspin_t.hpp │ │ │ ├── kspriority_t.hpp │ │ │ ├── ksprocesspin_indexentry_t.hpp │ │ │ ├── ksprocesspin_t.hpp │ │ │ ├── ksproperty_item_t.hpp │ │ │ ├── ksproperty_membersheader_t.hpp │ │ │ ├── ksproperty_memberslist_t.hpp │ │ │ ├── ksproperty_set_t.hpp │ │ │ ├── ksproperty_values_t.hpp │ │ │ ├── ksreset_t.hpp │ │ │ ├── ksresolution_t.hpp │ │ │ ├── ksstate_t.hpp │ │ │ ├── ksstream_header_t.hpp │ │ │ ├── ksstream_pointer_offset_t.hpp │ │ │ ├── ksstream_pointer_t.hpp │ │ │ ├── kstime_t.hpp │ │ │ ├── kstopology_connection_t.hpp │ │ │ ├── link_parameters_t.hpp │ │ │ ├── link_state_t.hpp │ │ │ ├── lock_state_ex_t.hpp │ │ │ ├── lock_state_t.hpp │ │ │ ├── log_t.hpp │ │ │ ├── lwf_reftag_t.hpp │ │ │ ├── lwfdrv_reftag_t.hpp │ │ │ ├── m_driver_block_t.hpp │ │ │ ├── m_periodic_receive_state_t.hpp │ │ │ ├── m_periodic_receives_t.hpp │ │ │ ├── mac_header_field_t.hpp │ │ │ ├── magic/ │ │ │ │ ├── _802_11_ai_reqfi_t.end.hpp │ │ │ │ ├── _802_11_ai_reqfi_t.start.hpp │ │ │ │ ├── _802_11_ai_resfi_t.end.hpp │ │ │ │ ├── _802_11_ai_resfi_t.start.hpp │ │ │ │ ├── _802_11_association_information_t.end.hpp │ │ │ │ ├── _802_11_association_information_t.start.hpp │ │ │ │ ├── _802_11_authentication_encryption_t.end.hpp │ │ │ │ ├── _802_11_authentication_encryption_t.start.hpp │ │ │ │ ├── _802_11_authentication_event_t.end.hpp │ │ │ │ ├── _802_11_authentication_event_t.start.hpp │ │ │ │ ├── _802_11_authentication_request_t.end.hpp │ │ │ │ ├── _802_11_authentication_request_t.start.hpp │ │ │ │ ├── _802_11_bssid_list_ex_t.end.hpp │ │ │ │ ├── _802_11_bssid_list_ex_t.start.hpp │ │ │ │ ├── _802_11_bssid_list_t.end.hpp │ │ │ │ ├── _802_11_bssid_list_t.start.hpp │ │ │ │ ├── _802_11_capability_t.end.hpp │ │ │ │ ├── _802_11_capability_t.start.hpp │ │ │ │ ├── _802_11_configuration_fh_t.end.hpp │ │ │ │ ├── _802_11_configuration_fh_t.start.hpp │ │ │ │ ├── _802_11_configuration_t.end.hpp │ │ │ │ ├── _802_11_configuration_t.start.hpp │ │ │ │ ├── _802_11_fixed_i_es_t.end.hpp │ │ │ │ ├── _802_11_fixed_i_es_t.start.hpp │ │ │ │ ├── _802_11_key_t.end.hpp │ │ │ │ ├── _802_11_key_t.start.hpp │ │ │ │ ├── _802_11_network_type_list_t.end.hpp │ │ │ │ ├── _802_11_network_type_list_t.start.hpp │ │ │ │ ├── _802_11_non_bcast_ssid_list_t.end.hpp │ │ │ │ ├── _802_11_non_bcast_ssid_list_t.start.hpp │ │ │ │ ├── _802_11_pmkid_candidate_list_t.end.hpp │ │ │ │ ├── _802_11_pmkid_candidate_list_t.start.hpp │ │ │ │ ├── _802_11_pmkid_t.end.hpp │ │ │ │ ├── _802_11_pmkid_t.start.hpp │ │ │ │ ├── _802_11_remove_key_t.end.hpp │ │ │ │ ├── _802_11_remove_key_t.start.hpp │ │ │ │ ├── _802_11_ssid_t.end.hpp │ │ │ │ ├── _802_11_ssid_t.start.hpp │ │ │ │ ├── _802_11_statistics_t.end.hpp │ │ │ │ ├── _802_11_statistics_t.start.hpp │ │ │ │ ├── _802_11_status_indication_t.end.hpp │ │ │ │ ├── _802_11_status_indication_t.start.hpp │ │ │ │ ├── _802_11_test_t.end.hpp │ │ │ │ ├── _802_11_test_t.start.hpp │ │ │ │ ├── _802_11_variable_i_es_t.end.hpp │ │ │ │ ├── _802_11_variable_i_es_t.start.hpp │ │ │ │ ├── _802_11_wep_t.end.hpp │ │ │ │ ├── _802_11_wep_t.start.hpp │ │ │ │ ├── adddevice_parameters_t.end.hpp │ │ │ │ ├── adddevice_parameters_t.start.hpp │ │ │ │ ├── af_list_t.end.hpp │ │ │ │ ├── af_list_t.start.hpp │ │ │ │ ├── aoac_component_ref_time_t.end.hpp │ │ │ │ ├── aoac_component_ref_time_t.start.hpp │ │ │ │ ├── api.end.hpp │ │ │ │ ├── api.start.hpp │ │ │ │ ├── binary_data_t.end.hpp │ │ │ │ ├── binary_data_t.start.hpp │ │ │ │ ├── bind_driver_base_t.end.hpp │ │ │ │ ├── bind_driver_base_t.start.hpp │ │ │ │ ├── bind_filter_driver_t.end.hpp │ │ │ │ ├── bind_filter_driver_t.start.hpp │ │ │ │ ├── bind_filter_link_t.end.hpp │ │ │ │ ├── bind_filter_link_t.start.hpp │ │ │ │ ├── bind_link_base_t.end.hpp │ │ │ │ ├── bind_link_base_t.start.hpp │ │ │ │ ├── bind_parameters_t.end.hpp │ │ │ │ ├── bind_parameters_t.start.hpp │ │ │ │ ├── bind_paths_t.end.hpp │ │ │ │ ├── bind_paths_t.start.hpp │ │ │ │ ├── bind_protocol_driver_t.end.hpp │ │ │ │ ├── bind_protocol_driver_t.start.hpp │ │ │ │ ├── bind_protocol_link_t.end.hpp │ │ │ │ ├── bind_protocol_link_t.start.hpp │ │ │ │ ├── bssid_info_t.end.hpp │ │ │ │ ├── bssid_info_t.start.hpp │ │ │ │ ├── call_manager_characteristics_t.end.hpp │ │ │ │ ├── call_manager_characteristics_t.start.hpp │ │ │ │ ├── client_characteristics_t.end.hpp │ │ │ │ ├── client_characteristics_t.start.hpp │ │ │ │ ├── client_chimney_offload_generic_characteristics_t.end.hpp │ │ │ │ ├── client_chimney_offload_generic_characteristics_t.start.hpp │ │ │ │ ├── client_chimney_offload_tcp_characteristics_t.end.hpp │ │ │ │ ├── client_chimney_offload_tcp_characteristics_t.start.hpp │ │ │ │ ├── co_address_family_t.end.hpp │ │ │ │ ├── co_address_family_t.start.hpp │ │ │ │ ├── co_address_list_t.end.hpp │ │ │ │ ├── co_address_list_t.start.hpp │ │ │ │ ├── co_address_t.end.hpp │ │ │ │ ├── co_address_t.start.hpp │ │ │ │ ├── co_af_block_t.end.hpp │ │ │ │ ├── co_af_block_t.start.hpp │ │ │ │ ├── co_call_manager_optional_handlers_t.end.hpp │ │ │ │ ├── co_call_manager_optional_handlers_t.start.hpp │ │ │ │ ├── co_call_manager_parameters_t.end.hpp │ │ │ │ ├── co_call_manager_parameters_t.start.hpp │ │ │ │ ├── co_call_parameters_t.end.hpp │ │ │ │ ├── co_call_parameters_t.start.hpp │ │ │ │ ├── co_client_optional_handlers_t.end.hpp │ │ │ │ ├── co_client_optional_handlers_t.start.hpp │ │ │ │ ├── co_media_parameters_t.end.hpp │ │ │ │ ├── co_media_parameters_t.start.hpp │ │ │ │ ├── co_party_block_t.end.hpp │ │ │ │ ├── co_party_block_t.start.hpp │ │ │ │ ├── co_pvc_t.end.hpp │ │ │ │ ├── co_pvc_t.start.hpp │ │ │ │ ├── co_sap_block_t.end.hpp │ │ │ │ ├── co_sap_block_t.start.hpp │ │ │ │ ├── co_sap_t.end.hpp │ │ │ │ ├── co_sap_t.start.hpp │ │ │ │ ├── co_specific_parameters_t.end.hpp │ │ │ │ ├── co_specific_parameters_t.start.hpp │ │ │ │ ├── co_vc_block_t.end.hpp │ │ │ │ ├── co_vc_block_t.start.hpp │ │ │ │ ├── co_vc_ptr_block_t.end.hpp │ │ │ │ ├── co_vc_ptr_block_t.start.hpp │ │ │ │ ├── common_open_block_t.end.hpp │ │ │ │ ├── common_open_block_t.start.hpp │ │ │ │ ├── config_knob_namespace_t.end.hpp │ │ │ │ ├── config_knob_namespace_t.start.hpp │ │ │ │ ├── configuration_object_t.end.hpp │ │ │ │ ├── configuration_object_t.start.hpp │ │ │ │ ├── configuration_parameter_t.end.hpp │ │ │ │ ├── configuration_parameter_t.start.hpp │ │ │ │ ├── connection_info_t.end.hpp │ │ │ │ ├── connection_info_t.start.hpp │ │ │ │ ├── d0_signal_work_item_t.end.hpp │ │ │ │ ├── d0_signal_work_item_t.start.hpp │ │ │ │ ├── device_bus_specific_reset_info_t.end.hpp │ │ │ │ ├── device_bus_specific_reset_info_t.start.hpp │ │ │ │ ├── device_bus_specific_reset_type_t.end.hpp │ │ │ │ ├── device_bus_specific_reset_type_t.start.hpp │ │ │ │ ├── device_object_attributes_t.end.hpp │ │ │ │ ├── device_object_attributes_t.start.hpp │ │ │ │ ├── device_reset_interface_standard_t.end.hpp │ │ │ │ ├── device_reset_interface_standard_t.start.hpp │ │ │ │ ├── dl_ei48_t.end.hpp │ │ │ │ ├── dl_ei48_t.start.hpp │ │ │ │ ├── dl_eui48_t.end.hpp │ │ │ │ ├── dl_eui48_t.start.hpp │ │ │ │ ├── dl_oui_t.end.hpp │ │ │ │ ├── dl_oui_t.start.hpp │ │ │ │ ├── dma_block_t.end.hpp │ │ │ │ ├── dma_block_t.start.hpp │ │ │ │ ├── dma_description_t.end.hpp │ │ │ │ ├── dma_description_t.start.hpp │ │ │ │ ├── dot11_additional_ie_t.end.hpp │ │ │ │ ├── dot11_additional_ie_t.start.hpp │ │ │ │ ├── dot11_association_info_ex_t.end.hpp │ │ │ │ ├── dot11_association_info_ex_t.start.hpp │ │ │ │ ├── dot11_association_info_list_t.end.hpp │ │ │ │ ├── dot11_association_info_list_t.start.hpp │ │ │ │ ├── dot11_association_params_t.end.hpp │ │ │ │ ├── dot11_association_params_t.start.hpp │ │ │ │ ├── dot11_auth_algorithm_list_t.end.hpp │ │ │ │ ├── dot11_auth_algorithm_list_t.start.hpp │ │ │ │ ├── dot11_auth_cipher_pair_list_t.end.hpp │ │ │ │ ├── dot11_auth_cipher_pair_list_t.start.hpp │ │ │ │ ├── dot11_auth_cipher_pair_t.end.hpp │ │ │ │ ├── dot11_auth_cipher_pair_t.start.hpp │ │ │ │ ├── dot11_available_channel_list_t.end.hpp │ │ │ │ ├── dot11_available_channel_list_t.start.hpp │ │ │ │ ├── dot11_available_frequency_list_t.end.hpp │ │ │ │ ├── dot11_available_frequency_list_t.start.hpp │ │ │ │ ├── dot11_bssid_list_t.end.hpp │ │ │ │ ├── dot11_bssid_list_t.start.hpp │ │ │ │ ├── dot11_byte_array_t.end.hpp │ │ │ │ ├── dot11_byte_array_t.start.hpp │ │ │ │ ├── dot11_cipher_algorithm_list_t.end.hpp │ │ │ │ ├── dot11_cipher_algorithm_list_t.start.hpp │ │ │ │ ├── dot11_cipher_default_key_value_t.end.hpp │ │ │ │ ├── dot11_cipher_default_key_value_t.start.hpp │ │ │ │ ├── dot11_country_or_region_string_list_t.end.hpp │ │ │ │ ├── dot11_country_or_region_string_list_t.start.hpp │ │ │ │ ├── dot11_data_rate_mapping_entry_t.end.hpp │ │ │ │ ├── dot11_data_rate_mapping_entry_t.start.hpp │ │ │ │ ├── dot11_disassociate_peer_request_t.end.hpp │ │ │ │ ├── dot11_disassociate_peer_request_t.start.hpp │ │ │ │ ├── dot11_erp_phy_attributes_t.end.hpp │ │ │ │ ├── dot11_erp_phy_attributes_t.start.hpp │ │ │ │ ├── dot11_extap_attributes_t.end.hpp │ │ │ │ ├── dot11_extap_attributes_t.start.hpp │ │ │ │ ├── dot11_extsta_attributes_t.end.hpp │ │ │ │ ├── dot11_extsta_attributes_t.start.hpp │ │ │ │ ├── dot11_extsta_capability_t.end.hpp │ │ │ │ ├── dot11_extsta_capability_t.start.hpp │ │ │ │ ├── dot11_hrdsss_phy_attributes_t.end.hpp │ │ │ │ ├── dot11_hrdsss_phy_attributes_t.start.hpp │ │ │ │ ├── dot11_ibss_params_t.end.hpp │ │ │ │ ├── dot11_ibss_params_t.start.hpp │ │ │ │ ├── dot11_incoming_assoc_decision_t.end.hpp │ │ │ │ ├── dot11_incoming_assoc_decision_t.start.hpp │ │ │ │ ├── dot11_mac_address_list_t.end.hpp │ │ │ │ ├── dot11_mac_address_list_t.start.hpp │ │ │ │ ├── dot11_mac_frame_statistics_t.end.hpp │ │ │ │ ├── dot11_mac_frame_statistics_t.start.hpp │ │ │ │ ├── dot11_ofdm_phy_attributes_t.end.hpp │ │ │ │ ├── dot11_ofdm_phy_attributes_t.start.hpp │ │ │ │ ├── dot11_peer_info_list_t.end.hpp │ │ │ │ ├── dot11_peer_info_list_t.start.hpp │ │ │ │ ├── dot11_peer_info_t.end.hpp │ │ │ │ ├── dot11_peer_info_t.start.hpp │ │ │ │ ├── dot11_peer_statistics_t.end.hpp │ │ │ │ ├── dot11_peer_statistics_t.start.hpp │ │ │ │ ├── dot11_phy_attributes_t.end.hpp │ │ │ │ ├── dot11_phy_attributes_t.start.hpp │ │ │ │ ├── dot11_phy_frame_statistics_t.end.hpp │ │ │ │ ├── dot11_phy_frame_statistics_t.start.hpp │ │ │ │ ├── dot11_phy_id_list_t.end.hpp │ │ │ │ ├── dot11_phy_id_list_t.start.hpp │ │ │ │ ├── dot11_pmkid_entry_t.end.hpp │ │ │ │ ├── dot11_pmkid_entry_t.start.hpp │ │ │ │ ├── dot11_pmkid_list_t.end.hpp │ │ │ │ ├── dot11_pmkid_list_t.start.hpp │ │ │ │ ├── dot11_port_state_notification_t.end.hpp │ │ │ │ ├── dot11_port_state_notification_t.start.hpp │ │ │ │ ├── dot11_privacy_exemption_list_t.end.hpp │ │ │ │ ├── dot11_privacy_exemption_list_t.start.hpp │ │ │ │ ├── dot11_privacy_exemption_t.end.hpp │ │ │ │ ├── dot11_privacy_exemption_t.start.hpp │ │ │ │ ├── dot11_qos_params_t.end.hpp │ │ │ │ ├── dot11_qos_params_t.start.hpp │ │ │ │ ├── dot11_ssid_list_t.end.hpp │ │ │ │ ├── dot11_ssid_list_t.start.hpp │ │ │ │ ├── dot11_ssid_t.end.hpp │ │ │ │ ├── dot11_ssid_t.start.hpp │ │ │ │ ├── dot11_statistics_t.end.hpp │ │ │ │ ├── dot11_statistics_t.start.hpp │ │ │ │ ├── dot11_supported_data_rates_value_v2_t.end.hpp │ │ │ │ ├── dot11_supported_data_rates_value_v2_t.start.hpp │ │ │ │ ├── dot11_vwifi_attributes_t.end.hpp │ │ │ │ ├── dot11_vwifi_attributes_t.start.hpp │ │ │ │ ├── dot11_vwifi_combination_t.end.hpp │ │ │ │ ├── dot11_vwifi_combination_t.start.hpp │ │ │ │ ├── dot11_wfd_attributes_t.end.hpp │ │ │ │ ├── dot11_wfd_attributes_t.start.hpp │ │ │ │ ├── dpc_work_item_t.end.hpp │ │ │ │ ├── dpc_work_item_t.start.hpp │ │ │ │ ├── driver_optional_handlers_t.end.hpp │ │ │ │ ├── driver_optional_handlers_t.start.hpp │ │ │ │ ├── driver_wrapper_handle_t.end.hpp │ │ │ │ ├── driver_wrapper_handle_t.start.hpp │ │ │ │ ├── encapsulated_packet_task_offload_t.end.hpp │ │ │ │ ├── encapsulated_packet_task_offload_t.start.hpp │ │ │ │ ├── encapsulated_packet_task_offload_v2_t.end.hpp │ │ │ │ ├── encapsulated_packet_task_offload_v2_t.start.hpp │ │ │ │ ├── encapsulation_format_t.end.hpp │ │ │ │ ├── encapsulation_format_t.start.hpp │ │ │ │ ├── entry_header_t.end.hpp │ │ │ │ ├── entry_header_t.start.hpp │ │ │ │ ├── enum_filters_t.end.hpp │ │ │ │ ├── enum_filters_t.start.hpp │ │ │ │ ├── eth_multicast_wrapper_t.end.hpp │ │ │ │ ├── eth_multicast_wrapper_t.start.hpp │ │ │ │ ├── event_log_entry_t.end.hpp │ │ │ │ ├── event_log_entry_t.start.hpp │ │ │ │ ├── event_log_t.end.hpp │ │ │ │ ├── event_log_t.start.hpp │ │ │ │ ├── event_t.end.hpp │ │ │ │ ├── event_t.start.hpp │ │ │ │ ├── execution_context_configuration_t.end.hpp │ │ │ │ ├── execution_context_configuration_t.start.hpp │ │ │ │ ├── execution_context_runtime_knobs_t.end.hpp │ │ │ │ ├── execution_context_runtime_knobs_t.start.hpp │ │ │ │ ├── execution_context_work_unit_knobs_t.end.hpp │ │ │ │ ├── execution_context_work_unit_knobs_t.start.hpp │ │ │ │ ├── filter_attach_parameters_t.end.hpp │ │ │ │ ├── filter_attach_parameters_t.start.hpp │ │ │ │ ├── filter_attributes_t.end.hpp │ │ │ │ ├── filter_attributes_t.start.hpp │ │ │ │ ├── filter_block_t.end.hpp │ │ │ │ ├── filter_block_t.start.hpp │ │ │ │ ├── filter_driver_block_t.end.hpp │ │ │ │ ├── filter_driver_block_t.start.hpp │ │ │ │ ├── filter_driver_characteristics_t.end.hpp │ │ │ │ ├── filter_driver_characteristics_t.start.hpp │ │ │ │ ├── filter_interface_t.end.hpp │ │ │ │ ├── filter_interface_t.start.hpp │ │ │ │ ├── filter_partial_characteristics_t.end.hpp │ │ │ │ ├── filter_partial_characteristics_t.start.hpp │ │ │ │ ├── filter_pause_parameters_t.end.hpp │ │ │ │ ├── filter_pause_parameters_t.start.hpp │ │ │ │ ├── filter_pause_restart_context_t.end.hpp │ │ │ │ ├── filter_pause_restart_context_t.start.hpp │ │ │ │ ├── filter_restart_parameters_t.end.hpp │ │ │ │ ├── filter_restart_parameters_t.start.hpp │ │ │ │ ├── filter_task_offload_t.end.hpp │ │ │ │ ├── filter_task_offload_t.start.hpp │ │ │ │ ├── filterdbs_t.end.hpp │ │ │ │ ├── filterdbs_t.start.hpp │ │ │ │ ├── filterlist_item_t.end.hpp │ │ │ │ ├── filterlist_item_t.start.hpp │ │ │ │ ├── flowspec_t.end.hpp │ │ │ │ ├── flowspec_t.start.hpp │ │ │ │ ├── frame_type_and_open_t.end.hpp │ │ │ │ ├── frame_type_and_open_t.start.hpp │ │ │ │ ├── frame_type_record_t.end.hpp │ │ │ │ ├── frame_type_record_t.start.hpp │ │ │ │ ├── gen_get_netcard_time_t.end.hpp │ │ │ │ ├── gen_get_netcard_time_t.start.hpp │ │ │ │ ├── gen_get_time_caps_t.end.hpp │ │ │ │ ├── gen_get_time_caps_t.start.hpp │ │ │ │ ├── generic_object_t.end.hpp │ │ │ │ ├── generic_object_t.start.hpp │ │ │ │ ├── gfp_ethernet_header_fields_t.end.hpp │ │ │ │ ├── gfp_ethernet_header_fields_t.start.hpp │ │ │ │ ├── gfp_exact_match_profile_t.end.hpp │ │ │ │ ├── gfp_exact_match_profile_t.start.hpp │ │ │ │ ├── gfp_header_group_exact_match_profile_t.end.hpp │ │ │ │ ├── gfp_header_group_exact_match_profile_t.start.hpp │ │ │ │ ├── gfp_header_group_exact_match_t.end.hpp │ │ │ │ ├── gfp_header_group_exact_match_t.start.hpp │ │ │ │ ├── gfp_header_group_wildcard_match_profile_t.end.hpp │ │ │ │ ├── gfp_header_group_wildcard_match_profile_t.start.hpp │ │ │ │ ├── gfp_header_group_wildcard_match_t.end.hpp │ │ │ │ ├── gfp_header_group_wildcard_match_t.start.hpp │ │ │ │ ├── gfp_ip_src_and_dest_address_wildcard_match_t.end.hpp │ │ │ │ ├── gfp_ip_src_and_dest_address_wildcard_match_t.start.hpp │ │ │ │ ├── gfp_ipv4_address_wildcard_match_t.end.hpp │ │ │ │ ├── gfp_ipv4_address_wildcard_match_t.start.hpp │ │ │ │ ├── gfp_ipv4_src_and_dest_address_wildcard_match_t.end.hpp │ │ │ │ ├── gfp_ipv4_src_and_dest_address_wildcard_match_t.start.hpp │ │ │ │ ├── gfp_ipv6_address_wildcard_match_t.end.hpp │ │ │ │ ├── gfp_ipv6_address_wildcard_match_t.start.hpp │ │ │ │ ├── gfp_ipv6_src_and_dest_address_wildcard_match_t.end.hpp │ │ │ │ ├── gfp_ipv6_src_and_dest_address_wildcard_match_t.start.hpp │ │ │ │ ├── gfp_transport_port_wildcard_match_t.end.hpp │ │ │ │ ├── gfp_transport_port_wildcard_match_t.start.hpp │ │ │ │ ├── gfp_transport_src_and_dest_port_wildcard_match_t.end.hpp │ │ │ │ ├── gfp_transport_src_and_dest_port_wildcard_match_t.start.hpp │ │ │ │ ├── gfp_wildcard_match_profile_t.end.hpp │ │ │ │ ├── gfp_wildcard_match_profile_t.start.hpp │ │ │ │ ├── gft_byte_counter_value_t.end.hpp │ │ │ │ ├── gft_byte_counter_value_t.start.hpp │ │ │ │ ├── gft_counter_info_array_t.end.hpp │ │ │ │ ├── gft_counter_info_array_t.start.hpp │ │ │ │ ├── gft_counter_info_t.end.hpp │ │ │ │ ├── gft_counter_info_t.start.hpp │ │ │ │ ├── gft_counter_parameters_t.end.hpp │ │ │ │ ├── gft_counter_parameters_t.start.hpp │ │ │ │ ├── gft_counter_value_array_t.end.hpp │ │ │ │ ├── gft_counter_value_array_t.start.hpp │ │ │ │ ├── gft_counter_value_t.end.hpp │ │ │ │ ├── gft_counter_value_t.start.hpp │ │ │ │ ├── gft_custom_action_profile_t.end.hpp │ │ │ │ ├── gft_custom_action_profile_t.start.hpp │ │ │ │ ├── gft_custom_action_t.end.hpp │ │ │ │ ├── gft_custom_action_t.start.hpp │ │ │ │ ├── gft_delete_profile_parameters_t.end.hpp │ │ │ │ ├── gft_delete_profile_parameters_t.start.hpp │ │ │ │ ├── gft_delete_table_parameters_t.end.hpp │ │ │ │ ├── gft_delete_table_parameters_t.start.hpp │ │ │ │ ├── gft_exact_match_flow_entry_t.end.hpp │ │ │ │ ├── gft_exact_match_flow_entry_t.start.hpp │ │ │ │ ├── gft_flow_entry_array_t.end.hpp │ │ │ │ ├── gft_flow_entry_array_t.start.hpp │ │ │ │ ├── gft_flow_entry_id_and_counter_t.end.hpp │ │ │ │ ├── gft_flow_entry_id_and_counter_t.start.hpp │ │ │ │ ├── gft_flow_entry_id_array_t.end.hpp │ │ │ │ ├── gft_flow_entry_id_array_t.start.hpp │ │ │ │ ├── gft_flow_entry_info_array_t.end.hpp │ │ │ │ ├── gft_flow_entry_info_array_t.start.hpp │ │ │ │ ├── gft_flow_state_t.end.hpp │ │ │ │ ├── gft_flow_state_t.start.hpp │ │ │ │ ├── gft_free_counter_parameters_t.end.hpp │ │ │ │ ├── gft_free_counter_parameters_t.start.hpp │ │ │ │ ├── gft_header_group_transposition_profile_t.end.hpp │ │ │ │ ├── gft_header_group_transposition_profile_t.start.hpp │ │ │ │ ├── gft_header_group_transposition_t.end.hpp │ │ │ │ ├── gft_header_group_transposition_t.start.hpp │ │ │ │ ├── gft_header_transposition_profile_t.end.hpp │ │ │ │ ├── gft_header_transposition_profile_t.start.hpp │ │ │ │ ├── gft_offload_capabilities_t.end.hpp │ │ │ │ ├── gft_offload_capabilities_t.start.hpp │ │ │ │ ├── gft_offload_parameters_t.end.hpp │ │ │ │ ├── gft_offload_parameters_t.start.hpp │ │ │ │ ├── gft_packet_byte_counter_value_and_state_t.end.hpp │ │ │ │ ├── gft_packet_byte_counter_value_and_state_t.start.hpp │ │ │ │ ├── gft_packet_byte_counter_value_t.end.hpp │ │ │ │ ├── gft_packet_byte_counter_value_t.start.hpp │ │ │ │ ├── gft_packet_counter_value_t.end.hpp │ │ │ │ ├── gft_packet_counter_value_t.start.hpp │ │ │ │ ├── gft_profile_info_array_t.end.hpp │ │ │ │ ├── gft_profile_info_array_t.start.hpp │ │ │ │ ├── gft_profile_info_t.end.hpp │ │ │ │ ├── gft_profile_info_t.start.hpp │ │ │ │ ├── gft_statistics_t.end.hpp │ │ │ │ ├── gft_statistics_t.start.hpp │ │ │ │ ├── gft_table_info_array_t.end.hpp │ │ │ │ ├── gft_table_info_array_t.start.hpp │ │ │ │ ├── gft_table_info_t.end.hpp │ │ │ │ ├── gft_table_info_t.start.hpp │ │ │ │ ├── gft_table_parameters_t.end.hpp │ │ │ │ ├── gft_table_parameters_t.start.hpp │ │ │ │ ├── gft_vport_parameters_t.end.hpp │ │ │ │ ├── gft_vport_parameters_t.start.hpp │ │ │ │ ├── gft_wildcard_match_flow_entry_t.end.hpp │ │ │ │ ├── gft_wildcard_match_flow_entry_t.start.hpp │ │ │ │ ├── global_triage_block_t.end.hpp │ │ │ │ ├── global_triage_block_t.start.hpp │ │ │ │ ├── guid_t.end.hpp │ │ │ │ ├── guid_t.start.hpp │ │ │ │ ├── hd_split_attributes_t.end.hpp │ │ │ │ ├── hd_split_attributes_t.start.hpp │ │ │ │ ├── hd_split_current_config_t.end.hpp │ │ │ │ ├── hd_split_current_config_t.start.hpp │ │ │ │ ├── if_block_t.end.hpp │ │ │ │ ├── if_block_t.start.hpp │ │ │ │ ├── if_compartment_block_t.end.hpp │ │ │ │ ├── if_compartment_block_t.start.hpp │ │ │ │ ├── if_counted_string_lh_t.end.hpp │ │ │ │ ├── if_counted_string_lh_t.start.hpp │ │ │ │ ├── if_network_block_t.end.hpp │ │ │ │ ├── if_network_block_t.start.hpp │ │ │ │ ├── if_physical_address_lh_t.end.hpp │ │ │ │ ├── if_physical_address_lh_t.start.hpp │ │ │ │ ├── if_provider_block_t.end.hpp │ │ │ │ ├── if_provider_block_t.start.hpp │ │ │ │ ├── if_provider_characteristics_t.end.hpp │ │ │ │ ├── if_provider_characteristics_t.start.hpp │ │ │ │ ├── if_rcv_address_t.end.hpp │ │ │ │ ├── if_rcv_address_t.start.hpp │ │ │ │ ├── if_stack_entry_t.end.hpp │ │ │ │ ├── if_stack_entry_t.start.hpp │ │ │ │ ├── interrupt_block_t.end.hpp │ │ │ │ ├── interrupt_block_t.start.hpp │ │ │ │ ├── interrupt_moderation_parameters_t.end.hpp │ │ │ │ ├── interrupt_moderation_parameters_t.start.hpp │ │ │ │ ├── ip_offload_stats_t.end.hpp │ │ │ │ ├── ip_offload_stats_t.start.hpp │ │ │ │ ├── ipsec_offload_v1_net_buffer_list_info_t.end.hpp │ │ │ │ ├── ipsec_offload_v1_net_buffer_list_info_t.start.hpp │ │ │ │ ├── ipsec_offload_v1_t.end.hpp │ │ │ │ ├── ipsec_offload_v1_t.start.hpp │ │ │ │ ├── ipsec_offload_v2_add_sa_t.end.hpp │ │ │ │ ├── ipsec_offload_v2_add_sa_t.start.hpp │ │ │ │ ├── ipsec_offload_v2_algorithm_info_t.end.hpp │ │ │ │ ├── ipsec_offload_v2_algorithm_info_t.start.hpp │ │ │ │ ├── ipsec_offload_v2_delete_sa_t.end.hpp │ │ │ │ ├── ipsec_offload_v2_delete_sa_t.start.hpp │ │ │ │ ├── ipsec_offload_v2_header_net_buffer_list_info_t.end.hpp │ │ │ │ ├── ipsec_offload_v2_header_net_buffer_list_info_t.start.hpp │ │ │ │ ├── ipsec_offload_v2_net_buffer_list_info_t.end.hpp │ │ │ │ ├── ipsec_offload_v2_net_buffer_list_info_t.start.hpp │ │ │ │ ├── ipsec_offload_v2_security_association_t.end.hpp │ │ │ │ ├── ipsec_offload_v2_security_association_t.start.hpp │ │ │ │ ├── ipsec_offload_v2_t.end.hpp │ │ │ │ ├── ipsec_offload_v2_t.start.hpp │ │ │ │ ├── ipsec_offload_v2_tunnel_net_buffer_list_info_t.end.hpp │ │ │ │ ├── ipsec_offload_v2_tunnel_net_buffer_list_info_t.start.hpp │ │ │ │ ├── ipsec_offload_v2_update_sa_t.end.hpp │ │ │ │ ├── ipsec_offload_v2_update_sa_t.start.hpp │ │ │ │ ├── ipsec_packet_info_t.end.hpp │ │ │ │ ├── ipsec_packet_info_t.start.hpp │ │ │ │ ├── ipv4_header_t.end.hpp │ │ │ │ ├── ipv4_header_t.start.hpp │ │ │ │ ├── ipv6_fragment_header_t.end.hpp │ │ │ │ ├── ipv6_fragment_header_t.start.hpp │ │ │ │ ├── irp_work_item_t.end.hpp │ │ │ │ ├── irp_work_item_t.start.hpp │ │ │ │ ├── iterative_data_path_tracker_entry_t.end.hpp │ │ │ │ ├── iterative_data_path_tracker_entry_t.start.hpp │ │ │ │ ├── k_acquire_spin_lock_t.end.hpp │ │ │ │ ├── k_acquire_spin_lock_t.start.hpp │ │ │ │ ├── k_critical_region_t.end.hpp │ │ │ │ ├── k_critical_region_t.start.hpp │ │ │ │ ├── k_irql_region_t.end.hpp │ │ │ │ ├── k_irql_region_t.start.hpp │ │ │ │ ├── k_lock_holder_t.end.hpp │ │ │ │ ├── k_lock_holder_t.start.hpp │ │ │ │ ├── k_lock_this_exclusive_t.end.hpp │ │ │ │ ├── k_lock_this_exclusive_t.start.hpp │ │ │ │ ├── k_lock_this_shared_t.end.hpp │ │ │ │ ├── k_lock_this_shared_t.start.hpp │ │ │ │ ├── k_push_lock_base_t.end.hpp │ │ │ │ ├── k_push_lock_base_t.start.hpp │ │ │ │ ├── k_push_lock_t.end.hpp │ │ │ │ ├── k_push_lock_t.start.hpp │ │ │ │ ├── k_rundown_base_t.end.hpp │ │ │ │ ├── k_rundown_base_t.start.hpp │ │ │ │ ├── k_rundown_holder_t.end.hpp │ │ │ │ ├── k_rundown_holder_t.start.hpp │ │ │ │ ├── k_rundown_manual_construct_t.end.hpp │ │ │ │ ├── k_rundown_manual_construct_t.start.hpp │ │ │ │ ├── k_rundown_t.end.hpp │ │ │ │ ├── k_rundown_t.start.hpp │ │ │ │ ├── k_spin_lock_base_t.end.hpp │ │ │ │ ├── k_spin_lock_base_t.start.hpp │ │ │ │ ├── k_spin_lock_manual_construct_t.end.hpp │ │ │ │ ├── k_spin_lock_manual_construct_t.start.hpp │ │ │ │ ├── k_spin_lock_t.end.hpp │ │ │ │ ├── k_spin_lock_t.start.hpp │ │ │ │ ├── k_wait_event_base_t.end.hpp │ │ │ │ ├── k_wait_event_base_t.start.hpp │ │ │ │ ├── k_wait_event_manual_construct_t.end.hpp │ │ │ │ ├── k_wait_event_manual_construct_t.start.hpp │ │ │ │ ├── k_wait_event_t.end.hpp │ │ │ │ ├── k_wait_event_t.start.hpp │ │ │ │ ├── knob_descriptor_t.end.hpp │ │ │ │ ├── knob_descriptor_t.start.hpp │ │ │ │ ├── knob_information_t.end.hpp │ │ │ │ ├── knob_information_t.start.hpp │ │ │ │ ├── knob_namespace_t.end.hpp │ │ │ │ ├── knob_namespace_t.start.hpp │ │ │ │ ├── ks_compression_t.end.hpp │ │ │ │ ├── ks_compression_t.start.hpp │ │ │ │ ├── ks_framing_item_t.end.hpp │ │ │ │ ├── ks_framing_item_t.start.hpp │ │ │ │ ├── ks_framing_range_t.end.hpp │ │ │ │ ├── ks_framing_range_t.start.hpp │ │ │ │ ├── ks_framing_range_weighted_t.end.hpp │ │ │ │ ├── ks_framing_range_weighted_t.start.hpp │ │ │ │ ├── ksallocator_dispatch_t.end.hpp │ │ │ │ ├── ksallocator_dispatch_t.start.hpp │ │ │ │ ├── ksallocator_framing_ex_t.end.hpp │ │ │ │ ├── ksallocator_framing_ex_t.start.hpp │ │ │ │ ├── ksallocator_framing_t.end.hpp │ │ │ │ ├── ksallocator_framing_t.start.hpp │ │ │ │ ├── ksattribute_list_t.end.hpp │ │ │ │ ├── ksattribute_list_t.start.hpp │ │ │ │ ├── ksattribute_t.end.hpp │ │ │ │ ├── ksattribute_t.start.hpp │ │ │ │ ├── ksautomation_table_t.end.hpp │ │ │ │ ├── ksautomation_table_t.start.hpp │ │ │ │ ├── ksbuffer_item_t.end.hpp │ │ │ │ ├── ksbuffer_item_t.start.hpp │ │ │ │ ├── ksclock_dispatch_t.end.hpp │ │ │ │ ├── ksclock_dispatch_t.start.hpp │ │ │ │ ├── kscomponentid_t.end.hpp │ │ │ │ ├── kscomponentid_t.start.hpp │ │ │ │ ├── ksdataformat_t.end.hpp │ │ │ │ ├── ksdataformat_t.start.hpp │ │ │ │ ├── ksdevice_descriptor_t.end.hpp │ │ │ │ ├── ksdevice_descriptor_t.start.hpp │ │ │ │ ├── ksdevice_dispatch_t.end.hpp │ │ │ │ ├── ksdevice_dispatch_t.start.hpp │ │ │ │ ├── ksdevice_t.end.hpp │ │ │ │ ├── ksdevice_t.start.hpp │ │ │ │ ├── ksdpc_item_t.end.hpp │ │ │ │ ├── ksdpc_item_t.start.hpp │ │ │ │ ├── ksevent_entry_t.end.hpp │ │ │ │ ├── ksevent_entry_t.start.hpp │ │ │ │ ├── ksevent_item_t.end.hpp │ │ │ │ ├── ksevent_item_t.start.hpp │ │ │ │ ├── ksevent_set_t.end.hpp │ │ │ │ ├── ksevent_set_t.start.hpp │ │ │ │ ├── kseventdata_t.end.hpp │ │ │ │ ├── kseventdata_t.start.hpp │ │ │ │ ├── ksfastmethod_item_t.end.hpp │ │ │ │ ├── ksfastmethod_item_t.start.hpp │ │ │ │ ├── ksfastproperty_item_t.end.hpp │ │ │ │ ├── ksfastproperty_item_t.start.hpp │ │ │ │ ├── ksfilter_descriptor_t.end.hpp │ │ │ │ ├── ksfilter_descriptor_t.start.hpp │ │ │ │ ├── ksfilter_dispatch_t.end.hpp │ │ │ │ ├── ksfilter_dispatch_t.start.hpp │ │ │ │ ├── ksfilter_t.end.hpp │ │ │ │ ├── ksfilter_t.start.hpp │ │ │ │ ├── ksfilterfactory_t.end.hpp │ │ │ │ ├── ksfilterfactory_t.start.hpp │ │ │ │ ├── ksgate_t.end.hpp │ │ │ │ ├── ksgate_t.start.hpp │ │ │ │ ├── ksidentifier_t.end.hpp │ │ │ │ ├── ksidentifier_t.start.hpp │ │ │ │ ├── ksmapping_t.end.hpp │ │ │ │ ├── ksmapping_t.start.hpp │ │ │ │ ├── ksmethod_item_t.end.hpp │ │ │ │ ├── ksmethod_item_t.start.hpp │ │ │ │ ├── ksmethod_set_t.end.hpp │ │ │ │ ├── ksmethod_set_t.start.hpp │ │ │ │ ├── ksmultiple_item_t.end.hpp │ │ │ │ ├── ksmultiple_item_t.start.hpp │ │ │ │ ├── ksnode_descriptor_t.end.hpp │ │ │ │ ├── ksnode_descriptor_t.start.hpp │ │ │ │ ├── ksp_pin_t.end.hpp │ │ │ │ ├── ksp_pin_t.start.hpp │ │ │ │ ├── kspin_descriptor_ex_t.end.hpp │ │ │ │ ├── kspin_descriptor_ex_t.start.hpp │ │ │ │ ├── kspin_descriptor_t.end.hpp │ │ │ │ ├── kspin_descriptor_t.start.hpp │ │ │ │ ├── kspin_dispatch_t.end.hpp │ │ │ │ ├── kspin_dispatch_t.start.hpp │ │ │ │ ├── kspin_t.end.hpp │ │ │ │ ├── kspin_t.start.hpp │ │ │ │ ├── kspriority_t.end.hpp │ │ │ │ ├── kspriority_t.start.hpp │ │ │ │ ├── ksprocesspin_indexentry_t.end.hpp │ │ │ │ ├── ksprocesspin_indexentry_t.start.hpp │ │ │ │ ├── ksprocesspin_t.end.hpp │ │ │ │ ├── ksprocesspin_t.start.hpp │ │ │ │ ├── ksproperty_item_t.end.hpp │ │ │ │ ├── ksproperty_item_t.start.hpp │ │ │ │ ├── ksproperty_membersheader_t.end.hpp │ │ │ │ ├── ksproperty_membersheader_t.start.hpp │ │ │ │ ├── ksproperty_memberslist_t.end.hpp │ │ │ │ ├── ksproperty_memberslist_t.start.hpp │ │ │ │ ├── ksproperty_set_t.end.hpp │ │ │ │ ├── ksproperty_set_t.start.hpp │ │ │ │ ├── ksproperty_values_t.end.hpp │ │ │ │ ├── ksproperty_values_t.start.hpp │ │ │ │ ├── ksresolution_t.end.hpp │ │ │ │ ├── ksresolution_t.start.hpp │ │ │ │ ├── ksstream_header_t.end.hpp │ │ │ │ ├── ksstream_header_t.start.hpp │ │ │ │ ├── ksstream_pointer_offset_t.end.hpp │ │ │ │ ├── ksstream_pointer_offset_t.start.hpp │ │ │ │ ├── ksstream_pointer_t.end.hpp │ │ │ │ ├── ksstream_pointer_t.start.hpp │ │ │ │ ├── kstime_t.end.hpp │ │ │ │ ├── kstime_t.start.hpp │ │ │ │ ├── kstopology_connection_t.end.hpp │ │ │ │ ├── kstopology_connection_t.start.hpp │ │ │ │ ├── link_parameters_t.end.hpp │ │ │ │ ├── link_parameters_t.start.hpp │ │ │ │ ├── link_state_t.end.hpp │ │ │ │ ├── link_state_t.start.hpp │ │ │ │ ├── lock_state_ex_t.end.hpp │ │ │ │ ├── lock_state_ex_t.start.hpp │ │ │ │ ├── lock_state_t.end.hpp │ │ │ │ ├── lock_state_t.start.hpp │ │ │ │ ├── log_t.end.hpp │ │ │ │ ├── log_t.start.hpp │ │ │ │ ├── m_driver_block_t.end.hpp │ │ │ │ ├── m_driver_block_t.start.hpp │ │ │ │ ├── m_periodic_receives_t.end.hpp │ │ │ │ ├── m_periodic_receives_t.start.hpp │ │ │ │ ├── media_specific_information_t.end.hpp │ │ │ │ ├── media_specific_information_t.start.hpp │ │ │ │ ├── miniport_adapter_attributes_t.end.hpp │ │ │ │ ├── miniport_adapter_attributes_t.start.hpp │ │ │ │ ├── miniport_adapter_general_attributes_t.end.hpp │ │ │ │ ├── miniport_adapter_general_attributes_t.start.hpp │ │ │ │ ├── miniport_adapter_hardware_assist_attributes_t.end.hpp │ │ │ │ ├── miniport_adapter_hardware_assist_attributes_t.start.hpp │ │ │ │ ├── miniport_adapter_native_802_11_attributes_t.end.hpp │ │ │ │ ├── miniport_adapter_native_802_11_attributes_t.start.hpp │ │ │ │ ├── miniport_adapter_ndk_attributes_t.end.hpp │ │ │ │ ├── miniport_adapter_ndk_attributes_t.start.hpp │ │ │ │ ├── miniport_adapter_offload_attributes_t.end.hpp │ │ │ │ ├── miniport_adapter_offload_attributes_t.start.hpp │ │ │ │ ├── miniport_adapter_packet_direct_attributes_t.end.hpp │ │ │ │ ├── miniport_adapter_packet_direct_attributes_t.start.hpp │ │ │ │ ├── miniport_adapter_registration_attributes_t.end.hpp │ │ │ │ ├── miniport_adapter_registration_attributes_t.start.hpp │ │ │ │ ├── miniport_add_device_registration_attributes_t.end.hpp │ │ │ │ ├── miniport_add_device_registration_attributes_t.start.hpp │ │ │ │ ├── miniport_aoac_t.end.hpp │ │ │ │ ├── miniport_aoac_t.start.hpp │ │ │ │ ├── miniport_block_t.end.hpp │ │ │ │ ├── miniport_block_t.start.hpp │ │ │ │ ├── miniport_co_characteristics_t.end.hpp │ │ │ │ ├── miniport_co_characteristics_t.start.hpp │ │ │ │ ├── miniport_cs_spurious_wake_stats_t.end.hpp │ │ │ │ ├── miniport_cs_spurious_wake_stats_t.start.hpp │ │ │ │ ├── miniport_cs_traffic_stats_t.end.hpp │ │ │ │ ├── miniport_cs_traffic_stats_t.start.hpp │ │ │ │ ├── miniport_driver_characteristics_t.end.hpp │ │ │ │ ├── miniport_driver_characteristics_t.start.hpp │ │ │ │ ├── miniport_handlers_t.end.hpp │ │ │ │ ├── miniport_handlers_t.start.hpp │ │ │ │ ├── miniport_init_parameters_t.end.hpp │ │ │ │ ├── miniport_init_parameters_t.start.hpp │ │ │ │ ├── miniport_interrupt_characteristics_t.end.hpp │ │ │ │ ├── miniport_interrupt_characteristics_t.start.hpp │ │ │ │ ├── miniport_interrupt_t.end.hpp │ │ │ │ ├── miniport_interrupt_t.start.hpp │ │ │ │ ├── miniport_offload_block_list_t.end.hpp │ │ │ │ ├── miniport_offload_block_list_t.start.hpp │ │ │ │ ├── miniport_offload_reg_t.end.hpp │ │ │ │ ├── miniport_offload_reg_t.start.hpp │ │ │ │ ├── miniport_offload_t.end.hpp │ │ │ │ ├── miniport_offload_t.start.hpp │ │ │ │ ├── miniport_pause_parameters_t.end.hpp │ │ │ │ ├── miniport_pause_parameters_t.start.hpp │ │ │ │ ├── miniport_pnp_characteristics_t.end.hpp │ │ │ │ ├── miniport_pnp_characteristics_t.start.hpp │ │ │ │ ├── miniport_restart_parameters_t.end.hpp │ │ │ │ ├── miniport_restart_parameters_t.start.hpp │ │ │ │ ├── miniport_rss_parameters_cache_t.end.hpp │ │ │ │ ├── miniport_rss_parameters_cache_t.start.hpp │ │ │ │ ├── miniport_ss_characteristics_t.end.hpp │ │ │ │ ├── miniport_ss_characteristics_t.start.hpp │ │ │ │ ├── miniport_stats_t.end.hpp │ │ │ │ ├── miniport_stats_t.start.hpp │ │ │ │ ├── miniport_syspower_notify_t.end.hpp │ │ │ │ ├── miniport_syspower_notify_t.start.hpp │ │ │ │ ├── miniport_timer_t.end.hpp │ │ │ │ ├── miniport_timer_t.start.hpp │ │ │ │ ├── miniport_work_item_t.end.hpp │ │ │ │ ├── miniport_work_item_t.start.hpp │ │ │ │ ├── msix_config_parameters_t.end.hpp │ │ │ │ ├── msix_config_parameters_t.start.hpp │ │ │ │ ├── msix_table_pointer_t.end.hpp │ │ │ │ ├── msix_table_pointer_t.start.hpp │ │ │ │ ├── nbl_media_media_specific_information_t.end.hpp │ │ │ │ ├── nbl_media_media_specific_information_t.start.hpp │ │ │ │ ├── nbl_media_specific_information_ex_t.end.hpp │ │ │ │ ├── nbl_media_specific_information_ex_t.start.hpp │ │ │ │ ├── nbl_queue_t.end.hpp │ │ │ │ ├── nbl_queue_t.start.hpp │ │ │ │ ├── nbl_tracker_bucket_t.end.hpp │ │ │ │ ├── nbl_tracker_bucket_t.start.hpp │ │ │ │ ├── nbl_tracker_t.end.hpp │ │ │ │ ├── nbl_tracker_t.start.hpp │ │ │ │ ├── ndis40_protocol_characteristics_t.end.hpp │ │ │ │ ├── ndis40_protocol_characteristics_t.start.hpp │ │ │ │ ├── ndis50_miniport_characteristics_t.end.hpp │ │ │ │ ├── ndis50_miniport_characteristics_t.start.hpp │ │ │ │ ├── ndis50_protocol_characteristics_t.end.hpp │ │ │ │ ├── ndis50_protocol_characteristics_t.start.hpp │ │ │ │ ├── ndis51_miniport_characteristics_t.end.hpp │ │ │ │ ├── ndis51_miniport_characteristics_t.start.hpp │ │ │ │ ├── ndk_adapter_dispatch_t.end.hpp │ │ │ │ ├── ndk_adapter_dispatch_t.start.hpp │ │ │ │ ├── ndk_adapter_info_t.end.hpp │ │ │ │ ├── ndk_adapter_info_t.start.hpp │ │ │ │ ├── ndk_adapter_t.end.hpp │ │ │ │ ├── ndk_adapter_t.start.hpp │ │ │ │ ├── ndk_capabilities_t.end.hpp │ │ │ │ ├── ndk_capabilities_t.start.hpp │ │ │ │ ├── ndk_connector_dispatch_t.end.hpp │ │ │ │ ├── ndk_connector_dispatch_t.start.hpp │ │ │ │ ├── ndk_connector_t.end.hpp │ │ │ │ ├── ndk_connector_t.start.hpp │ │ │ │ ├── ndk_cq_dispatch_t.end.hpp │ │ │ │ ├── ndk_cq_dispatch_t.start.hpp │ │ │ │ ├── ndk_cq_t.end.hpp │ │ │ │ ├── ndk_cq_t.start.hpp │ │ │ │ ├── ndk_extension_interface_t.end.hpp │ │ │ │ ├── ndk_extension_interface_t.start.hpp │ │ │ │ ├── ndk_listener_dispatch_t.end.hpp │ │ │ │ ├── ndk_listener_dispatch_t.start.hpp │ │ │ │ ├── ndk_listener_t.end.hpp │ │ │ │ ├── ndk_listener_t.start.hpp │ │ │ │ ├── ndk_logical_address_mapping_t.end.hpp │ │ │ │ ├── ndk_logical_address_mapping_t.start.hpp │ │ │ │ ├── ndk_mr_dispatch_t.end.hpp │ │ │ │ ├── ndk_mr_dispatch_t.start.hpp │ │ │ │ ├── ndk_mr_t.end.hpp │ │ │ │ ├── ndk_mr_t.start.hpp │ │ │ │ ├── ndk_mw_dispatch_t.end.hpp │ │ │ │ ├── ndk_mw_dispatch_t.start.hpp │ │ │ │ ├── ndk_mw_t.end.hpp │ │ │ │ ├── ndk_mw_t.start.hpp │ │ │ │ ├── ndk_object_header_reserved_block_t.end.hpp │ │ │ │ ├── ndk_object_header_reserved_block_t.start.hpp │ │ │ │ ├── ndk_object_header_t.end.hpp │ │ │ │ ├── ndk_object_header_t.start.hpp │ │ │ │ ├── ndk_parameters_t.end.hpp │ │ │ │ ├── ndk_parameters_t.start.hpp │ │ │ │ ├── ndk_pd_dispatch_t.end.hpp │ │ │ │ ├── ndk_pd_dispatch_t.start.hpp │ │ │ │ ├── ndk_pd_t.end.hpp │ │ │ │ ├── ndk_pd_t.start.hpp │ │ │ │ ├── ndk_performance_counters_t.end.hpp │ │ │ │ ├── ndk_performance_counters_t.start.hpp │ │ │ │ ├── ndk_qp_dispatch_t.end.hpp │ │ │ │ ├── ndk_qp_dispatch_t.start.hpp │ │ │ │ ├── ndk_qp_t.end.hpp │ │ │ │ ├── ndk_qp_t.start.hpp │ │ │ │ ├── ndk_request_parameters_t.end.hpp │ │ │ │ ├── ndk_request_parameters_t.start.hpp │ │ │ │ ├── ndk_response_parameters_t.end.hpp │ │ │ │ ├── ndk_response_parameters_t.start.hpp │ │ │ │ ├── ndk_result_ex_t.end.hpp │ │ │ │ ├── ndk_result_ex_t.start.hpp │ │ │ │ ├── ndk_result_t.end.hpp │ │ │ │ ├── ndk_result_t.start.hpp │ │ │ │ ├── ndk_sge_t.end.hpp │ │ │ │ ├── ndk_sge_t.start.hpp │ │ │ │ ├── ndk_shared_endpoint_dispatch_t.end.hpp │ │ │ │ ├── ndk_shared_endpoint_dispatch_t.start.hpp │ │ │ │ ├── ndk_shared_endpoint_t.end.hpp │ │ │ │ ├── ndk_shared_endpoint_t.start.hpp │ │ │ │ ├── ndk_srq_dispatch_t.end.hpp │ │ │ │ ├── ndk_srq_dispatch_t.start.hpp │ │ │ │ ├── ndk_srq_t.end.hpp │ │ │ │ ├── ndk_srq_t.start.hpp │ │ │ │ ├── ndk_version_t.end.hpp │ │ │ │ ├── ndk_version_t.start.hpp │ │ │ │ ├── neighbor_offload_state_cached_t.end.hpp │ │ │ │ ├── neighbor_offload_state_cached_t.start.hpp │ │ │ │ ├── neighbor_offload_state_const_t.end.hpp │ │ │ │ ├── neighbor_offload_state_const_t.start.hpp │ │ │ │ ├── neighbor_offload_state_delegated_t.end.hpp │ │ │ │ ├── neighbor_offload_state_delegated_t.start.hpp │ │ │ │ ├── net_buffer_data_length_t.end.hpp │ │ │ │ ├── net_buffer_data_length_t.start.hpp │ │ │ │ ├── net_buffer_data_t.end.hpp │ │ │ │ ├── net_buffer_data_t.start.hpp │ │ │ │ ├── net_buffer_header_t.end.hpp │ │ │ │ ├── net_buffer_header_t.start.hpp │ │ │ │ ├── net_buffer_list_8021q_info_t.end.hpp │ │ │ │ ├── net_buffer_list_8021q_info_t.start.hpp │ │ │ │ ├── net_buffer_list_context_t.end.hpp │ │ │ │ ├── net_buffer_list_context_t.start.hpp │ │ │ │ ├── net_buffer_list_data_t.end.hpp │ │ │ │ ├── net_buffer_list_data_t.start.hpp │ │ │ │ ├── net_buffer_list_filtering_info_t.end.hpp │ │ │ │ ├── net_buffer_list_filtering_info_t.start.hpp │ │ │ │ ├── net_buffer_list_gft_offload_info_t.end.hpp │ │ │ │ ├── net_buffer_list_gft_offload_info_t.start.hpp │ │ │ │ ├── net_buffer_list_header_t.end.hpp │ │ │ │ ├── net_buffer_list_header_t.start.hpp │ │ │ │ ├── net_buffer_list_media_specific_info_t.end.hpp │ │ │ │ ├── net_buffer_list_media_specific_info_t.start.hpp │ │ │ │ ├── net_buffer_list_pool_parameters_t.end.hpp │ │ │ │ ├── net_buffer_list_pool_parameters_t.start.hpp │ │ │ │ ├── net_buffer_list_pool_t.end.hpp │ │ │ │ ├── net_buffer_list_pool_t.start.hpp │ │ │ │ ├── net_buffer_list_t.end.hpp │ │ │ │ ├── net_buffer_list_t.start.hpp │ │ │ │ ├── net_buffer_list_timestamp_t.end.hpp │ │ │ │ ├── net_buffer_list_timestamp_t.start.hpp │ │ │ │ ├── net_buffer_list_virtual_subnet_info_t.end.hpp │ │ │ │ ├── net_buffer_list_virtual_subnet_info_t.start.hpp │ │ │ │ ├── net_buffer_pool_parameters_t.end.hpp │ │ │ │ ├── net_buffer_pool_parameters_t.start.hpp │ │ │ │ ├── net_buffer_pool_t.end.hpp │ │ │ │ ├── net_buffer_pool_t.start.hpp │ │ │ │ ├── net_buffer_shared_memory_t.end.hpp │ │ │ │ ├── net_buffer_shared_memory_t.start.hpp │ │ │ │ ├── net_buffer_t.end.hpp │ │ │ │ ├── net_buffer_t.start.hpp │ │ │ │ ├── net_device_pnp_event_t.end.hpp │ │ │ │ ├── net_device_pnp_event_t.start.hpp │ │ │ │ ├── net_if_information_t.end.hpp │ │ │ │ ├── net_if_information_t.start.hpp │ │ │ │ ├── net_luid_lh_t.end.hpp │ │ │ │ ├── net_luid_lh_t.start.hpp │ │ │ │ ├── net_physical_location_lh_t.end.hpp │ │ │ │ ├── net_physical_location_lh_t.start.hpp │ │ │ │ ├── net_pnp_event_notification_t.end.hpp │ │ │ │ ├── net_pnp_event_notification_t.start.hpp │ │ │ │ ├── net_pnp_event_t.end.hpp │ │ │ │ ├── net_pnp_event_t.start.hpp │ │ │ │ ├── netio_net_buffer_context_t.end.hpp │ │ │ │ ├── netio_net_buffer_context_t.start.hpp │ │ │ │ ├── netio_net_buffer_list_context_t.end.hpp │ │ │ │ ├── netio_net_buffer_list_context_t.start.hpp │ │ │ │ ├── nic_switch_block_t.end.hpp │ │ │ │ ├── nic_switch_block_t.start.hpp │ │ │ │ ├── nic_switch_capabilities_t.end.hpp │ │ │ │ ├── nic_switch_capabilities_t.start.hpp │ │ │ │ ├── nic_switch_info_array_t.end.hpp │ │ │ │ ├── nic_switch_info_array_t.start.hpp │ │ │ │ ├── nic_switch_parameters_t.end.hpp │ │ │ │ ├── nic_switch_parameters_t.start.hpp │ │ │ │ ├── nic_switch_vf_parameters_t.end.hpp │ │ │ │ ├── nic_switch_vf_parameters_t.start.hpp │ │ │ │ ├── nic_switch_vport_parameters_t.end.hpp │ │ │ │ ├── nic_switch_vport_parameters_t.start.hpp │ │ │ │ ├── npaged_lookaside_list_t.end.hpp │ │ │ │ ├── npaged_lookaside_list_t.start.hpp │ │ │ │ ├── npi_moduleid_t.end.hpp │ │ │ │ ├── npi_moduleid_t.start.hpp │ │ │ │ ├── nsi_compartment_rw_t.end.hpp │ │ │ │ ├── nsi_compartment_rw_t.start.hpp │ │ │ │ ├── nsi_if_rcv_address_rod_t.end.hpp │ │ │ │ ├── nsi_if_rcv_address_rod_t.start.hpp │ │ │ │ ├── nsi_interface_enum_rod_t.end.hpp │ │ │ │ ├── nsi_interface_enum_rod_t.start.hpp │ │ │ │ ├── nsi_interface_enum_ros_t.end.hpp │ │ │ │ ├── nsi_interface_enum_ros_t.start.hpp │ │ │ │ ├── nsi_network_rw_t.end.hpp │ │ │ │ ├── nsi_network_rw_t.start.hpp │ │ │ │ ├── object_header_t.end.hpp │ │ │ │ ├── object_header_t.start.hpp │ │ │ │ ├── offload_client_handlers_t.end.hpp │ │ │ │ ├── offload_client_handlers_t.start.hpp │ │ │ │ ├── offload_encapsulation_t.end.hpp │ │ │ │ ├── offload_encapsulation_t.start.hpp │ │ │ │ ├── offload_event_handlers_t.end.hpp │ │ │ │ ├── offload_event_handlers_t.start.hpp │ │ │ │ ├── offload_handle_private_t.end.hpp │ │ │ │ ├── offload_handle_private_t.start.hpp │ │ │ │ ├── offload_handle_t.end.hpp │ │ │ │ ├── offload_handle_t.start.hpp │ │ │ │ ├── offload_state_header_t.end.hpp │ │ │ │ ├── offload_state_header_t.start.hpp │ │ │ │ ├── offload_t.end.hpp │ │ │ │ ├── offload_t.start.hpp │ │ │ │ ├── oid_cache_entry_t.end.hpp │ │ │ │ ├── oid_cache_entry_t.start.hpp │ │ │ │ ├── oid_list_t.end.hpp │ │ │ │ ├── oid_list_t.start.hpp │ │ │ │ ├── oid_request_flags_t.end.hpp │ │ │ │ ├── oid_request_flags_t.start.hpp │ │ │ │ ├── oid_request_reserved_t.end.hpp │ │ │ │ ├── oid_request_reserved_t.start.hpp │ │ │ │ ├── oid_request_t.end.hpp │ │ │ │ ├── oid_request_t.start.hpp │ │ │ │ ├── open_block_t.end.hpp │ │ │ │ ├── open_block_t.start.hpp │ │ │ │ ├── open_ndk_adapter_parameters_t.end.hpp │ │ │ │ ├── open_ndk_adapter_parameters_t.start.hpp │ │ │ │ ├── open_offload_t.end.hpp │ │ │ │ ├── open_offload_t.start.hpp │ │ │ │ ├── open_parameters_t.end.hpp │ │ │ │ ├── open_parameters_t.start.hpp │ │ │ │ ├── packet_8021q_info_t.end.hpp │ │ │ │ ├── packet_8021q_info_t.start.hpp │ │ │ │ ├── packet_extension_t.end.hpp │ │ │ │ ├── packet_extension_t.start.hpp │ │ │ │ ├── packet_oob_data_t.end.hpp │ │ │ │ ├── packet_oob_data_t.start.hpp │ │ │ │ ├── packet_pattern_entry_t.end.hpp │ │ │ │ ├── packet_pattern_entry_t.start.hpp │ │ │ │ ├── packet_private_t.end.hpp │ │ │ │ ├── packet_private_t.start.hpp │ │ │ │ ├── packet_stack_t.end.hpp │ │ │ │ ├── packet_stack_t.start.hpp │ │ │ │ ├── packet_t.end.hpp │ │ │ │ ├── packet_t.start.hpp │ │ │ │ ├── packet_wrapper_t.end.hpp │ │ │ │ ├── packet_wrapper_t.start.hpp │ │ │ │ ├── path_offload_state_cached_t.end.hpp │ │ │ │ ├── path_offload_state_cached_t.start.hpp │ │ │ │ ├── path_offload_state_const_t.end.hpp │ │ │ │ ├── path_offload_state_const_t.start.hpp │ │ │ │ ├── path_offload_state_delegated_t.end.hpp │ │ │ │ ├── path_offload_state_delegated_t.start.hpp │ │ │ │ ├── pci_device_custom_properties_t.end.hpp │ │ │ │ ├── pci_device_custom_properties_t.start.hpp │ │ │ │ ├── pcw_context_t.end.hpp │ │ │ │ ├── pcw_context_t.start.hpp │ │ │ │ ├── pcw_data_block_t.end.hpp │ │ │ │ ├── pcw_data_block_t.start.hpp │ │ │ │ ├── pd_acquire_queues_parameters_t.end.hpp │ │ │ │ ├── pd_acquire_queues_parameters_t.start.hpp │ │ │ │ ├── pd_block_t.end.hpp │ │ │ │ ├── pd_block_t.start.hpp │ │ │ │ ├── pd_bm_domain_member_parameters_t.end.hpp │ │ │ │ ├── pd_bm_domain_member_parameters_t.start.hpp │ │ │ │ ├── pd_bm_domain_parameters_t.end.hpp │ │ │ │ ├── pd_bm_domain_parameters_t.start.hpp │ │ │ │ ├── pd_buffer_8021q_info_t.end.hpp │ │ │ │ ├── pd_buffer_8021q_info_t.start.hpp │ │ │ │ ├── pd_buffer_t.end.hpp │ │ │ │ ├── pd_buffer_t.start.hpp │ │ │ │ ├── pd_buffer_virtual_subnet_info_t.end.hpp │ │ │ │ ├── pd_buffer_virtual_subnet_info_t.start.hpp │ │ │ │ ├── pd_capabilities_t.end.hpp │ │ │ │ ├── pd_capabilities_t.start.hpp │ │ │ │ ├── pd_config_t.end.hpp │ │ │ │ ├── pd_config_t.start.hpp │ │ │ │ ├── pd_counter_parameters_t.end.hpp │ │ │ │ ├── pd_counter_parameters_t.start.hpp │ │ │ │ ├── pd_counter_value_t.end.hpp │ │ │ │ ├── pd_counter_value_t.start.hpp │ │ │ │ ├── pd_ec_utilization_counter_t.end.hpp │ │ │ │ ├── pd_ec_utilization_counter_t.start.hpp │ │ │ │ ├── pd_ext_client_dispatch_t.end.hpp │ │ │ │ ├── pd_ext_client_dispatch_t.start.hpp │ │ │ │ ├── pd_ext_client_param_t.end.hpp │ │ │ │ ├── pd_ext_client_param_t.start.hpp │ │ │ │ ├── pd_filter_counter_t.end.hpp │ │ │ │ ├── pd_filter_counter_t.start.hpp │ │ │ │ ├── pd_filter_parameters_t.end.hpp │ │ │ │ ├── pd_filter_parameters_t.start.hpp │ │ │ │ ├── pd_post_and_drain_arg_t.end.hpp │ │ │ │ ├── pd_post_and_drain_arg_t.start.hpp │ │ │ │ ├── pd_provider_dispatch_t.end.hpp │ │ │ │ ├── pd_provider_dispatch_t.start.hpp │ │ │ │ ├── pd_queue_depth_counter_t.end.hpp │ │ │ │ ├── pd_queue_depth_counter_t.start.hpp │ │ │ │ ├── pd_queue_dispatch_t.end.hpp │ │ │ │ ├── pd_queue_dispatch_t.start.hpp │ │ │ │ ├── pd_queue_parameters_t.end.hpp │ │ │ │ ├── pd_queue_parameters_t.start.hpp │ │ │ │ ├── pd_queue_t.end.hpp │ │ │ │ ├── pd_queue_t.start.hpp │ │ │ │ ├── pd_receive_queue_counter_t.end.hpp │ │ │ │ ├── pd_receive_queue_counter_t.start.hpp │ │ │ │ ├── pd_transmit_queue_counter_t.end.hpp │ │ │ │ ├── pd_transmit_queue_counter_t.start.hpp │ │ │ │ ├── pending_im_instance_t.end.hpp │ │ │ │ ├── pending_im_instance_t.start.hpp │ │ │ │ ├── pending_stack_expansion_fallback_work_t.end.hpp │ │ │ │ ├── pending_stack_expansion_fallback_work_t.start.hpp │ │ │ │ ├── per_proc_performance_counters_t.end.hpp │ │ │ │ ├── per_proc_performance_counters_t.start.hpp │ │ │ │ ├── pf_block_t.end.hpp │ │ │ │ ├── pf_block_t.start.hpp │ │ │ │ ├── physical_address_unit_t.end.hpp │ │ │ │ ├── physical_address_unit_t.start.hpp │ │ │ │ ├── physical_performance_counters_t.end.hpp │ │ │ │ ├── physical_performance_counters_t.start.hpp │ │ │ │ ├── pkt_pool_hdr_t.end.hpp │ │ │ │ ├── pkt_pool_hdr_t.start.hpp │ │ │ │ ├── pkt_pool_t.end.hpp │ │ │ │ ├── pkt_pool_t.start.hpp │ │ │ │ ├── pktmon_component_context_t.end.hpp │ │ │ │ ├── pktmon_component_context_t.start.hpp │ │ │ │ ├── pktmon_edge_context_t.end.hpp │ │ │ │ ├── pktmon_edge_context_t.start.hpp │ │ │ │ ├── pm_admin_config_t.end.hpp │ │ │ │ ├── pm_admin_config_t.start.hpp │ │ │ │ ├── pm_capabilities_t.end.hpp │ │ │ │ ├── pm_capabilities_t.start.hpp │ │ │ │ ├── pm_counted_string_t.end.hpp │ │ │ │ ├── pm_counted_string_t.start.hpp │ │ │ │ ├── pm_packet_pattern_t.end.hpp │ │ │ │ ├── pm_packet_pattern_t.start.hpp │ │ │ │ ├── pm_parameters_t.end.hpp │ │ │ │ ├── pm_parameters_t.start.hpp │ │ │ │ ├── pm_protocol_offload_t.end.hpp │ │ │ │ ├── pm_protocol_offload_t.start.hpp │ │ │ │ ├── pm_wake_up_capabilities_t.end.hpp │ │ │ │ ├── pm_wake_up_capabilities_t.start.hpp │ │ │ │ ├── pm_wol_pattern_t.end.hpp │ │ │ │ ├── pm_wol_pattern_t.start.hpp │ │ │ │ ├── pmkid_candidate_t.end.hpp │ │ │ │ ├── pmkid_candidate_t.start.hpp │ │ │ │ ├── pnp_capabilities_t.end.hpp │ │ │ │ ├── pnp_capabilities_t.start.hpp │ │ │ │ ├── pool_extended_parameter_t.end.hpp │ │ │ │ ├── pool_extended_parameter_t.start.hpp │ │ │ │ ├── pool_extended_params_secure_pool_t.end.hpp │ │ │ │ ├── pool_extended_params_secure_pool_t.start.hpp │ │ │ │ ├── pool_header_t.end.hpp │ │ │ │ ├── pool_header_t.start.hpp │ │ │ │ ├── port_array_t.end.hpp │ │ │ │ ├── port_array_t.start.hpp │ │ │ │ ├── port_authentication_parameters_t.end.hpp │ │ │ │ ├── port_authentication_parameters_t.start.hpp │ │ │ │ ├── port_block_t.end.hpp │ │ │ │ ├── port_block_t.start.hpp │ │ │ │ ├── port_characteristics_t.end.hpp │ │ │ │ ├── port_characteristics_t.start.hpp │ │ │ │ ├── port_state_t.end.hpp │ │ │ │ ├── port_state_t.start.hpp │ │ │ │ ├── port_t.end.hpp │ │ │ │ ├── port_t.start.hpp │ │ │ │ ├── ppl_lookaside_list_array_t.end.hpp │ │ │ │ ├── ppl_lookaside_list_array_t.start.hpp │ │ │ │ ├── ppl_lookaside_list_t.end.hpp │ │ │ │ ├── ppl_lookaside_list_t.start.hpp │ │ │ │ ├── processor_info_t.end.hpp │ │ │ │ ├── processor_info_t.start.hpp │ │ │ │ ├── protocol_block_t.end.hpp │ │ │ │ ├── protocol_block_t.start.hpp │ │ │ │ ├── protocol_co_characteristics_t.end.hpp │ │ │ │ ├── protocol_co_characteristics_t.start.hpp │ │ │ │ ├── protocol_driver_characteristics_t.end.hpp │ │ │ │ ├── protocol_driver_characteristics_t.start.hpp │ │ │ │ ├── protocol_offload_block_list_t.end.hpp │ │ │ │ ├── protocol_offload_block_list_t.start.hpp │ │ │ │ ├── protocol_pause_parameters_t.end.hpp │ │ │ │ ├── protocol_pause_parameters_t.start.hpp │ │ │ │ ├── protocol_restart_parameters_t.end.hpp │ │ │ │ ├── protocol_restart_parameters_t.start.hpp │ │ │ │ ├── provider_chimney_offload_generic_characteristics_t.end.hpp │ │ │ │ ├── provider_chimney_offload_generic_characteristics_t.start.hpp │ │ │ │ ├── provider_chimney_offload_tcp_characteristics_t.end.hpp │ │ │ │ ├── provider_chimney_offload_tcp_characteristics_t.start.hpp │ │ │ │ ├── qos_capabilities_t.end.hpp │ │ │ │ ├── qos_capabilities_t.start.hpp │ │ │ │ ├── qos_classification_element_t.end.hpp │ │ │ │ ├── qos_classification_element_t.start.hpp │ │ │ │ ├── qos_offload_capabilities_t.end.hpp │ │ │ │ ├── qos_offload_capabilities_t.start.hpp │ │ │ │ ├── qos_parameters_t.end.hpp │ │ │ │ ├── qos_parameters_t.start.hpp │ │ │ │ ├── qos_sq_parameters_enum_array_t.end.hpp │ │ │ │ ├── qos_sq_parameters_enum_array_t.start.hpp │ │ │ │ ├── qos_sq_parameters_t.end.hpp │ │ │ │ ├── qos_sq_parameters_t.start.hpp │ │ │ │ ├── queued_close_t.end.hpp │ │ │ │ ├── queued_close_t.start.hpp │ │ │ │ ├── receive_filter_block_t.end.hpp │ │ │ │ ├── receive_filter_block_t.start.hpp │ │ │ │ ├── receive_filter_capabilities_t.end.hpp │ │ │ │ ├── receive_filter_capabilities_t.start.hpp │ │ │ │ ├── receive_filter_field_parameters_t.end.hpp │ │ │ │ ├── receive_filter_field_parameters_t.start.hpp │ │ │ │ ├── receive_filter_global_parameters_t.end.hpp │ │ │ │ ├── receive_filter_global_parameters_t.start.hpp │ │ │ │ ├── receive_filter_parameters_t.end.hpp │ │ │ │ ├── receive_filter_parameters_t.start.hpp │ │ │ │ ├── receive_filter_queue_state_change_t.end.hpp │ │ │ │ ├── receive_filter_queue_state_change_t.start.hpp │ │ │ │ ├── receive_hash_parameters_t.end.hpp │ │ │ │ ├── receive_hash_parameters_t.start.hpp │ │ │ │ ├── receive_queue_block_t.end.hpp │ │ │ │ ├── receive_queue_block_t.start.hpp │ │ │ │ ├── receive_queue_parameters_t.end.hpp │ │ │ │ ├── receive_queue_parameters_t.start.hpp │ │ │ │ ├── receive_queue_state_t.end.hpp │ │ │ │ ├── receive_queue_state_t.start.hpp │ │ │ │ ├── receive_scale_capabilities_t.end.hpp │ │ │ │ ├── receive_scale_capabilities_t.start.hpp │ │ │ │ ├── receive_scale_parameters_t.end.hpp │ │ │ │ ├── receive_scale_parameters_t.start.hpp │ │ │ │ ├── refcount_block_t.end.hpp │ │ │ │ ├── refcount_block_t.start.hpp │ │ │ │ ├── refcount_stack_block_t.end.hpp │ │ │ │ ├── refcount_stack_block_t.start.hpp │ │ │ │ ├── refcount_stack_entry_t.end.hpp │ │ │ │ ├── refcount_stack_entry_t.start.hpp │ │ │ │ ├── refcount_tagged_entry_t.end.hpp │ │ │ │ ├── refcount_tagged_entry_t.start.hpp │ │ │ │ ├── refcount_tagged_t.end.hpp │ │ │ │ ├── refcount_tagged_t.start.hpp │ │ │ │ ├── refcount_with_stack_t.end.hpp │ │ │ │ ├── refcount_with_stack_t.start.hpp │ │ │ │ ├── reference_ex_t.end.hpp │ │ │ │ ├── reference_ex_t.start.hpp │ │ │ │ ├── reference_object_t.end.hpp │ │ │ │ ├── reference_object_t.start.hpp │ │ │ │ ├── reference_t.end.hpp │ │ │ │ ├── reference_t.start.hpp │ │ │ │ ├── request_t.end.hpp │ │ │ │ ├── request_t.start.hpp │ │ │ │ ├── request_xlation_context_t.end.hpp │ │ │ │ ├── request_xlation_context_t.start.hpp │ │ │ │ ├── restart_attributes_t.end.hpp │ │ │ │ ├── restart_attributes_t.start.hpp │ │ │ │ ├── restart_general_attributes_t.end.hpp │ │ │ │ ├── restart_general_attributes_t.start.hpp │ │ │ │ ├── restart_information_t.end.hpp │ │ │ │ ├── restart_information_t.start.hpp │ │ │ │ ├── rfc6877_464xlat_offload_t.end.hpp │ │ │ │ ├── rfc6877_464xlat_offload_t.start.hpp │ │ │ │ ├── rsc_nbl_info_t.end.hpp │ │ │ │ ├── rsc_nbl_info_t.start.hpp │ │ │ │ ├── rsc_statistics_info_t.end.hpp │ │ │ │ ├── rsc_statistics_info_t.start.hpp │ │ │ │ ├── rw_lock_ex_t.end.hpp │ │ │ │ ├── rw_lock_ex_t.start.hpp │ │ │ │ ├── rw_lock_refcount_t.end.hpp │ │ │ │ ├── rw_lock_refcount_t.start.hpp │ │ │ │ ├── rw_lock_t.end.hpp │ │ │ │ ├── rw_lock_t.start.hpp │ │ │ │ ├── scatter_gather_list_parameters_t.end.hpp │ │ │ │ ├── scatter_gather_list_parameters_t.start.hpp │ │ │ │ ├── scope_id_t.end.hpp │ │ │ │ ├── scope_id_t.start.hpp │ │ │ │ ├── selective_suspend_t.end.hpp │ │ │ │ ├── selective_suspend_t.start.hpp │ │ │ │ ├── setup_device_extension_t.end.hpp │ │ │ │ ├── setup_device_extension_t.start.hpp │ │ │ │ ├── sg_dma_block_t.end.hpp │ │ │ │ ├── sg_dma_block_t.start.hpp │ │ │ │ ├── sg_dma_description_t.end.hpp │ │ │ │ ├── sg_dma_description_t.start.hpp │ │ │ │ ├── shared_memory_block_t.end.hpp │ │ │ │ ├── shared_memory_block_t.start.hpp │ │ │ │ ├── shared_memory_parameters_t.end.hpp │ │ │ │ ├── shared_memory_parameters_t.start.hpp │ │ │ │ ├── shared_memory_provider_characteristics_t.end.hpp │ │ │ │ ├── shared_memory_provider_characteristics_t.start.hpp │ │ │ │ ├── sockaddr_in6_t.end.hpp │ │ │ │ ├── sockaddr_in6_t.start.hpp │ │ │ │ ├── sockaddr_in_t.end.hpp │ │ │ │ ├── sockaddr_in_t.start.hpp │ │ │ │ ├── sockaddr_t.end.hpp │ │ │ │ ├── sockaddr_t.start.hpp │ │ │ │ ├── spin_lock_t.end.hpp │ │ │ │ ├── spin_lock_t.start.hpp │ │ │ │ ├── sriov_capabilities_t.end.hpp │ │ │ │ ├── sriov_capabilities_t.start.hpp │ │ │ │ ├── sriov_vf_config_state_t.end.hpp │ │ │ │ ├── sriov_vf_config_state_t.start.hpp │ │ │ │ ├── ss_control_ops_t.end.hpp │ │ │ │ ├── ss_control_ops_t.start.hpp │ │ │ │ ├── ss_idle_flags_t.end.hpp │ │ │ │ ├── ss_idle_flags_t.start.hpp │ │ │ │ ├── ss_resume_reason_t.end.hpp │ │ │ │ ├── ss_resume_reason_t.start.hpp │ │ │ │ ├── ss_stop_flags_t.end.hpp │ │ │ │ ├── ss_stop_flags_t.start.hpp │ │ │ │ ├── stack_index_t.end.hpp │ │ │ │ ├── stack_index_t.start.hpp │ │ │ │ ├── stack_trace_table_t.end.hpp │ │ │ │ ├── stack_trace_table_t.start.hpp │ │ │ │ ├── statistics_info_t.end.hpp │ │ │ │ ├── statistics_info_t.start.hpp │ │ │ │ ├── status_indication_t.end.hpp │ │ │ │ ├── status_indication_t.start.hpp │ │ │ │ ├── status_unbind_workitem_t.end.hpp │ │ │ │ ├── status_unbind_workitem_t.start.hpp │ │ │ │ ├── stopwatch_t.end.hpp │ │ │ │ ├── stopwatch_t.start.hpp │ │ │ │ ├── switch_forwarding_destination_array_t.end.hpp │ │ │ │ ├── switch_forwarding_destination_array_t.start.hpp │ │ │ │ ├── switch_forwarding_detail_net_buffer_list_info_t.end.hpp │ │ │ │ ├── switch_forwarding_detail_net_buffer_list_info_t.start.hpp │ │ │ │ ├── switch_net_buffer_list_context_type_info_t.end.hpp │ │ │ │ ├── switch_net_buffer_list_context_type_info_t.start.hpp │ │ │ │ ├── switch_nic_status_indication_t.end.hpp │ │ │ │ ├── switch_nic_status_indication_t.start.hpp │ │ │ │ ├── switch_port_destination_t.end.hpp │ │ │ │ ├── switch_port_destination_t.start.hpp │ │ │ │ ├── system_processor_info_t.end.hpp │ │ │ │ ├── system_processor_info_t.start.hpp │ │ │ │ ├── task_ipsec_t.end.hpp │ │ │ │ ├── task_ipsec_t.start.hpp │ │ │ │ ├── task_offload_header_t.end.hpp │ │ │ │ ├── task_offload_header_t.start.hpp │ │ │ │ ├── task_offload_t.end.hpp │ │ │ │ ├── task_offload_t.start.hpp │ │ │ │ ├── task_tcp_ip_checksum_t.end.hpp │ │ │ │ ├── task_tcp_ip_checksum_t.start.hpp │ │ │ │ ├── task_tcp_large_send_t.end.hpp │ │ │ │ ├── task_tcp_large_send_t.start.hpp │ │ │ │ ├── tcp_connection_offload_encapsulation_t.end.hpp │ │ │ │ ├── tcp_connection_offload_encapsulation_t.start.hpp │ │ │ │ ├── tcp_connection_offload_parameters_t.end.hpp │ │ │ │ ├── tcp_connection_offload_parameters_t.start.hpp │ │ │ │ ├── tcp_connection_offload_t.end.hpp │ │ │ │ ├── tcp_connection_offload_t.start.hpp │ │ │ │ ├── tcp_ip_checksum_net_buffer_list_info_t.end.hpp │ │ │ │ ├── tcp_ip_checksum_net_buffer_list_info_t.start.hpp │ │ │ │ ├── tcp_ip_checksum_offload_t.end.hpp │ │ │ │ ├── tcp_ip_checksum_offload_t.start.hpp │ │ │ │ ├── tcp_ip_checksum_packet_info_t.end.hpp │ │ │ │ ├── tcp_ip_checksum_packet_info_t.start.hpp │ │ │ │ ├── tcp_large_send_offload_net_buffer_list_info_t.end.hpp │ │ │ │ ├── tcp_large_send_offload_net_buffer_list_info_t.start.hpp │ │ │ │ ├── tcp_large_send_offload_v1_t.end.hpp │ │ │ │ ├── tcp_large_send_offload_v1_t.start.hpp │ │ │ │ ├── tcp_large_send_offload_v2_t.end.hpp │ │ │ │ ├── tcp_large_send_offload_v2_t.start.hpp │ │ │ │ ├── tcp_offload_client_handlers_t.end.hpp │ │ │ │ ├── tcp_offload_client_handlers_t.start.hpp │ │ │ │ ├── tcp_offload_event_handlers_t.end.hpp │ │ │ │ ├── tcp_offload_event_handlers_t.start.hpp │ │ │ │ ├── tcp_offload_state_cached_t.end.hpp │ │ │ │ ├── tcp_offload_state_cached_t.start.hpp │ │ │ │ ├── tcp_offload_state_const_t.end.hpp │ │ │ │ ├── tcp_offload_state_const_t.start.hpp │ │ │ │ ├── tcp_offload_state_delegated_t.end.hpp │ │ │ │ ├── tcp_offload_state_delegated_t.start.hpp │ │ │ │ ├── tcp_offload_stats_t.end.hpp │ │ │ │ ├── tcp_offload_stats_t.start.hpp │ │ │ │ ├── tcp_recv_seg_coalesce_offload_t.end.hpp │ │ │ │ ├── tcp_recv_seg_coalesce_offload_t.start.hpp │ │ │ │ ├── timer_characteristics_t.end.hpp │ │ │ │ ├── timer_characteristics_t.start.hpp │ │ │ │ ├── timer_entry_t.end.hpp │ │ │ │ ├── timer_entry_t.start.hpp │ │ │ │ ├── timer_t.end.hpp │ │ │ │ ├── timer_t.start.hpp │ │ │ │ ├── timestamp_capabilities_t.end.hpp │ │ │ │ ├── timestamp_capabilities_t.start.hpp │ │ │ │ ├── timestamp_capability_flags_t.end.hpp │ │ │ │ ├── timestamp_capability_flags_t.start.hpp │ │ │ │ ├── track_mem_t.end.hpp │ │ │ │ ├── track_mem_t.start.hpp │ │ │ │ ├── transport_header_offset_t.end.hpp │ │ │ │ ├── transport_header_offset_t.start.hpp │ │ │ │ ├── triage_object_header_t.end.hpp │ │ │ │ ├── triage_object_header_t.start.hpp │ │ │ │ ├── udp_segmentation_offload_t.end.hpp │ │ │ │ ├── udp_segmentation_offload_t.start.hpp │ │ │ │ ├── ulong_reference_t.end.hpp │ │ │ │ ├── ulong_reference_t.start.hpp │ │ │ │ ├── var_string_t.end.hpp │ │ │ │ ├── var_string_t.start.hpp │ │ │ │ ├── vf_block_t.end.hpp │ │ │ │ ├── vf_block_t.start.hpp │ │ │ │ ├── vpci_invalidate_block_output_t.end.hpp │ │ │ │ ├── vpci_invalidate_block_output_t.start.hpp │ │ │ │ ├── vport_block_t.end.hpp │ │ │ │ ├── vport_block_t.start.hpp │ │ │ │ ├── wan_co_get_comp_info_t.end.hpp │ │ │ │ ├── wan_co_get_comp_info_t.start.hpp │ │ │ │ ├── wan_co_get_link_info_t.end.hpp │ │ │ │ ├── wan_co_get_link_info_t.start.hpp │ │ │ │ ├── wan_co_get_stats_info_t.end.hpp │ │ │ │ ├── wan_co_get_stats_info_t.start.hpp │ │ │ │ ├── wan_co_info_t.end.hpp │ │ │ │ ├── wan_co_info_t.start.hpp │ │ │ │ ├── wan_co_set_comp_info_t.end.hpp │ │ │ │ ├── wan_co_set_comp_info_t.start.hpp │ │ │ │ ├── wan_co_set_link_info_t.end.hpp │ │ │ │ ├── wan_co_set_link_info_t.start.hpp │ │ │ │ ├── wan_compress_info_t.end.hpp │ │ │ │ ├── wan_compress_info_t.start.hpp │ │ │ │ ├── wan_fragment_t.end.hpp │ │ │ │ ├── wan_fragment_t.start.hpp │ │ │ │ ├── wan_get_stats_t.end.hpp │ │ │ │ ├── wan_get_stats_t.start.hpp │ │ │ │ ├── wan_line_down_t.end.hpp │ │ │ │ ├── wan_line_down_t.start.hpp │ │ │ │ ├── wan_line_up_t.end.hpp │ │ │ │ ├── wan_line_up_t.start.hpp │ │ │ │ ├── wan_packet_t.end.hpp │ │ │ │ ├── wan_packet_t.start.hpp │ │ │ │ ├── watchdog_triage_block_t.end.hpp │ │ │ │ ├── watchdog_triage_block_t.start.hpp │ │ │ │ ├── wdf_complete_add_params_t.end.hpp │ │ │ │ ├── wdf_complete_add_params_t.start.hpp │ │ │ │ ├── wdf_cx_characteristics_t.end.hpp │ │ │ │ ├── wdf_cx_characteristics_t.start.hpp │ │ │ │ ├── wdf_cx_driver_block_t.end.hpp │ │ │ │ ├── wdf_cx_driver_block_t.start.hpp │ │ │ │ ├── wlan_bssid_ex_t.end.hpp │ │ │ │ ├── wlan_bssid_ex_t.start.hpp │ │ │ │ ├── wlan_bssid_t.end.hpp │ │ │ │ ├── wlan_bssid_t.start.hpp │ │ │ │ ├── wol_xlation_context_t.end.hpp │ │ │ │ ├── wol_xlation_context_t.start.hpp │ │ │ │ ├── work_item_t.end.hpp │ │ │ │ ├── work_item_t.start.hpp │ │ │ │ ├── workitem_with_irp_t.end.hpp │ │ │ │ ├── workitem_with_irp_t.start.hpp │ │ │ │ ├── wrapper_configuration_handle_t.end.hpp │ │ │ │ ├── wrapper_configuration_handle_t.start.hpp │ │ │ │ ├── wrapper_handle_t.end.hpp │ │ │ │ ├── wrapper_handle_t.start.hpp │ │ │ │ ├── wwan_auth_challenge_t.end.hpp │ │ │ │ ├── wwan_auth_challenge_t.start.hpp │ │ │ │ ├── wwan_device_caps_t.end.hpp │ │ │ │ ├── wwan_device_caps_t.start.hpp │ │ │ │ ├── wwan_driver_caps_t.end.hpp │ │ │ │ ├── wwan_driver_caps_t.start.hpp │ │ │ │ ├── wwan_home_provider_t.end.hpp │ │ │ │ ├── wwan_home_provider_t.start.hpp │ │ │ │ ├── wwan_pin_list_t.end.hpp │ │ │ │ ├── wwan_pin_list_t.start.hpp │ │ │ │ ├── wwan_preferred_providers_t.end.hpp │ │ │ │ ├── wwan_preferred_providers_t.start.hpp │ │ │ │ ├── wwan_ready_info_t.end.hpp │ │ │ │ ├── wwan_ready_info_t.start.hpp │ │ │ │ ├── wwan_service_activation_t.end.hpp │ │ │ │ ├── wwan_service_activation_t.start.hpp │ │ │ │ ├── wwan_set_context_state_t.end.hpp │ │ │ │ ├── wwan_set_context_state_t.start.hpp │ │ │ │ ├── wwan_set_packet_service_t.end.hpp │ │ │ │ ├── wwan_set_packet_service_t.start.hpp │ │ │ │ ├── wwan_set_provisioned_context_t.end.hpp │ │ │ │ ├── wwan_set_provisioned_context_t.start.hpp │ │ │ │ ├── wwan_set_register_state_t.end.hpp │ │ │ │ ├── wwan_set_register_state_t.start.hpp │ │ │ │ ├── wwan_set_signal_indication_t.end.hpp │ │ │ │ ├── wwan_set_signal_indication_t.start.hpp │ │ │ │ ├── wwan_set_sms_configuration_t.end.hpp │ │ │ │ ├── wwan_set_sms_configuration_t.start.hpp │ │ │ │ ├── wwan_sms_delete_t.end.hpp │ │ │ │ ├── wwan_sms_delete_t.start.hpp │ │ │ │ ├── wwan_sms_read_t.end.hpp │ │ │ │ ├── wwan_sms_read_t.start.hpp │ │ │ │ ├── wwan_sms_send_t.end.hpp │ │ │ │ ├── wwan_sms_send_t.start.hpp │ │ │ │ ├── wwan_visible_providers_t.end.hpp │ │ │ │ ├── wwan_visible_providers_t.start.hpp │ │ │ │ ├── x_filter_t.end.hpp │ │ │ │ └── x_filter_t.start.hpp │ │ │ ├── mdrv_reftag_t.hpp │ │ │ ├── media_specific_information_t.hpp │ │ │ ├── medium_t.hpp │ │ │ ├── memorydump_handle_t.hpp │ │ │ ├── miniport_adapter_attributes_t.hpp │ │ │ ├── miniport_adapter_general_attributes_t.hpp │ │ │ ├── miniport_adapter_handle_t.hpp │ │ │ ├── miniport_adapter_hardware_assist_attributes_t.hpp │ │ │ ├── miniport_adapter_native_802_11_attributes_t.hpp │ │ │ ├── miniport_adapter_ndk_attributes_t.hpp │ │ │ ├── miniport_adapter_offload_attributes_t.hpp │ │ │ ├── miniport_adapter_packet_direct_attributes_t.hpp │ │ │ ├── miniport_adapter_registration_attributes_t.hpp │ │ │ ├── miniport_add_device_registration_attributes_t.hpp │ │ │ ├── miniport_aoac_t.hpp │ │ │ ├── miniport_block/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── miniport_block_t.hpp │ │ │ ├── miniport_co_characteristics_t.hpp │ │ │ ├── miniport_creation_config/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── miniport_cs_spurious_wake_stats_t.hpp │ │ │ ├── miniport_cs_traffic_stats_t.hpp │ │ │ ├── miniport_driver_characteristics_t.hpp │ │ │ ├── miniport_event_t.hpp │ │ │ ├── miniport_handlers_t.hpp │ │ │ ├── miniport_hook_adapter_handle_t.hpp │ │ │ ├── miniport_hook_driver/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── miniport_hook_driver_handle_t.hpp │ │ │ ├── miniport_hook_driver_type_t.hpp │ │ │ ├── miniport_init_parameters_t.hpp │ │ │ ├── miniport_interrupt_characteristics_t.hpp │ │ │ ├── miniport_interrupt_t.hpp │ │ │ ├── miniport_offload_block_list_t.hpp │ │ │ ├── miniport_offload_reg_t.hpp │ │ │ ├── miniport_offload_t.hpp │ │ │ ├── miniport_pause_parameters_t.hpp │ │ │ ├── miniport_pnp_characteristics_t.hpp │ │ │ ├── miniport_policy_owner_t.hpp │ │ │ ├── miniport_restart_parameters_t.hpp │ │ │ ├── miniport_rss_parameters_cache_t.hpp │ │ │ ├── miniport_spin_lock/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── miniport_ss_characteristics_t.hpp │ │ │ ├── miniport_state_t.hpp │ │ │ ├── miniport_stats_t.hpp │ │ │ ├── miniport_syspower_notify_t.hpp │ │ │ ├── miniport_timer_t.hpp │ │ │ ├── miniport_work_item_t.hpp │ │ │ ├── mp_reftag_t.hpp │ │ │ ├── mpif_reftag_t.hpp │ │ │ ├── msix_config_parameters_t.hpp │ │ │ ├── msix_table_config_t.hpp │ │ │ ├── msix_table_pointer_t.hpp │ │ │ ├── nbl_media_media_specific_information_t.hpp │ │ │ ├── nbl_media_specific_information_ex_t.hpp │ │ │ ├── nbl_queue_t.hpp │ │ │ ├── nbl_tracker_bucket_t.hpp │ │ │ ├── nbl_tracker_handle_t.hpp │ │ │ ├── nbl_tracker_lifetime_event_t.hpp │ │ │ ├── nbl_tracker_mode_t.hpp │ │ │ ├── nbl_tracker_ownership_event_t.hpp │ │ │ ├── nbl_tracker_source_t.hpp │ │ │ ├── nbl_tracker_t.hpp │ │ │ ├── ndis/ │ │ │ │ ├── api.hpp │ │ │ │ ├── bind_engine/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── bind_registry/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── bind_rules/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── bind_stack/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── bind_state/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ ├── initmode/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── ndis40_protocol_characteristics_t.hpp │ │ │ ├── ndis50_miniport_characteristics_t.hpp │ │ │ ├── ndis50_protocol_characteristics_t.hpp │ │ │ ├── ndis51_miniport_characteristics_t.hpp │ │ │ ├── ndis5_driver_state_t.hpp │ │ │ ├── ndiswatchdog_t.hpp │ │ │ ├── ndk_adapter_dispatch_t.hpp │ │ │ ├── ndk_adapter_info_t.hpp │ │ │ ├── ndk_adapter_t.hpp │ │ │ ├── ndk_capabilities_t.hpp │ │ │ ├── ndk_connector_dispatch_t.hpp │ │ │ ├── ndk_connector_t.hpp │ │ │ ├── ndk_cq_dispatch_t.hpp │ │ │ ├── ndk_cq_t.hpp │ │ │ ├── ndk_extension_interface_t.hpp │ │ │ ├── ndk_listener_dispatch_t.hpp │ │ │ ├── ndk_listener_t.hpp │ │ │ ├── ndk_logical_address_mapping_t.hpp │ │ │ ├── ndk_mr_dispatch_t.hpp │ │ │ ├── ndk_mr_t.hpp │ │ │ ├── ndk_mw_dispatch_t.hpp │ │ │ ├── ndk_mw_t.hpp │ │ │ ├── ndk_object_header_reserved_block_t.hpp │ │ │ ├── ndk_object_header_t.hpp │ │ │ ├── ndk_object_type_t.hpp │ │ │ ├── ndk_operation_type_t.hpp │ │ │ ├── ndk_parameters_t.hpp │ │ │ ├── ndk_pd_dispatch_t.hpp │ │ │ ├── ndk_pd_t.hpp │ │ │ ├── ndk_performance_counters_t.hpp │ │ │ ├── ndk_qp_dispatch_t.hpp │ │ │ ├── ndk_qp_t.hpp │ │ │ ├── ndk_rdma_technology_t.hpp │ │ │ ├── ndk_request_parameters_t.hpp │ │ │ ├── ndk_response_parameters_t.hpp │ │ │ ├── ndk_result_ex_t.hpp │ │ │ ├── ndk_result_t.hpp │ │ │ ├── ndk_sge_t.hpp │ │ │ ├── ndk_shared_endpoint_dispatch_t.hpp │ │ │ ├── ndk_shared_endpoint_t.hpp │ │ │ ├── ndk_srq_dispatch_t.hpp │ │ │ ├── ndk_srq_t.hpp │ │ │ ├── ndk_version_t.hpp │ │ │ ├── neighbor_offload_state_cached_t.hpp │ │ │ ├── neighbor_offload_state_const_t.hpp │ │ │ ├── neighbor_offload_state_delegated_t.hpp │ │ │ ├── net_buffer_data_length_t.hpp │ │ │ ├── net_buffer_data_t.hpp │ │ │ ├── net_buffer_header_t.hpp │ │ │ ├── net_buffer_list_8021q_info_t.hpp │ │ │ ├── net_buffer_list_context_t.hpp │ │ │ ├── net_buffer_list_data_t.hpp │ │ │ ├── net_buffer_list_filtering_info_t.hpp │ │ │ ├── net_buffer_list_gft_offload_info_t.hpp │ │ │ ├── net_buffer_list_header_t.hpp │ │ │ ├── net_buffer_list_info_t.hpp │ │ │ ├── net_buffer_list_media_specific_info_t.hpp │ │ │ ├── net_buffer_list_pool_parameters_t.hpp │ │ │ ├── net_buffer_list_pool_t.hpp │ │ │ ├── net_buffer_list_t.hpp │ │ │ ├── net_buffer_list_timestamp_t.hpp │ │ │ ├── net_buffer_list_virtual_subnet_info_t.hpp │ │ │ ├── net_buffer_pool_parameters_t.hpp │ │ │ ├── net_buffer_pool_t.hpp │ │ │ ├── net_buffer_shared_memory_t.hpp │ │ │ ├── net_buffer_t.hpp │ │ │ ├── net_device_pnp_event_t.hpp │ │ │ ├── net_device_power_state_t.hpp │ │ │ ├── net_device_reset_type_t.hpp │ │ │ ├── net_dma_event_types_t.hpp │ │ │ ├── net_if_access_type_t.hpp │ │ │ ├── net_if_admin_status_t.hpp │ │ │ ├── net_if_connection_type_t.hpp │ │ │ ├── net_if_direction_type_t.hpp │ │ │ ├── net_if_information_t.hpp │ │ │ ├── net_if_media_connect_state_t.hpp │ │ │ ├── net_if_media_duplex_state_t.hpp │ │ │ ├── net_if_oper_status_t.hpp │ │ │ ├── net_if_rcv_address_type_t.hpp │ │ │ ├── net_luid_lh_t.hpp │ │ │ ├── net_physical_location_lh_t.hpp │ │ │ ├── net_pnp_event_code_t.hpp │ │ │ ├── net_pnp_event_notification_t.hpp │ │ │ ├── net_pnp_event_t.hpp │ │ │ ├── net_setup_knob_collection/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── net_setup_property_bag/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── net_setup_store_type_t.hpp │ │ │ ├── net_setup_subkey_type_t.hpp │ │ │ ├── netio_net_buffer_context_t.hpp │ │ │ ├── netio_net_buffer_list_context_t.hpp │ │ │ ├── netsetup_binding_path_type_t.hpp │ │ │ ├── netsetup_environment_type_t.hpp │ │ │ ├── netsetup_object_source_t.hpp │ │ │ ├── netsetup_object_type_t.hpp │ │ │ ├── netsetup_pnp_device_class_t.hpp │ │ │ ├── netsetup_query_result_action_t.hpp │ │ │ ├── netsetup_query_state_t.hpp │ │ │ ├── netsetup_reason_binding_is_critical_t.hpp │ │ │ ├── netsetupprop_operator_t.hpp │ │ │ ├── network_interface_bind_properties/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── network_interface_persisted_state/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── nic_active_state_t.hpp │ │ │ ├── nic_switch_block_t.hpp │ │ │ ├── nic_switch_capabilities_t.hpp │ │ │ ├── nic_switch_info_array_t.hpp │ │ │ ├── nic_switch_parameters_t.hpp │ │ │ ├── nic_switch_type_t.hpp │ │ │ ├── nic_switch_vf_parameters_t.hpp │ │ │ ├── nic_switch_vport_interrupt_moderation_t.hpp │ │ │ ├── nic_switch_vport_parameters_t.hpp │ │ │ ├── nic_switch_vport_state_t.hpp │ │ │ ├── nl_address_type_t.hpp │ │ │ ├── nl_ecn_codepoint_t.hpp │ │ │ ├── npaged_lookaside_list_t.hpp │ │ │ ├── npi_moduleid_t.hpp │ │ │ ├── npi_moduleid_type_t.hpp │ │ │ ├── nsi_compartment_rw_t.hpp │ │ │ ├── nsi_compartment_type_t.hpp │ │ │ ├── nsi_if_rcv_address_rod_t.hpp │ │ │ ├── nsi_interface_enum_rod_t.hpp │ │ │ ├── nsi_interface_enum_ros_t.hpp │ │ │ ├── nsi_interface_purpose_t.hpp │ │ │ ├── nsi_network_rw_t.hpp │ │ │ ├── nsi_reftag_t.hpp │ │ │ ├── object_header_t.hpp │ │ │ ├── offload_client_handlers_t.hpp │ │ │ ├── offload_encapsulation_t.hpp │ │ │ ├── offload_event_handlers_t.hpp │ │ │ ├── offload_handle_private_t.hpp │ │ │ ├── offload_handle_t.hpp │ │ │ ├── offload_state_header_t.hpp │ │ │ ├── offload_state_type_t.hpp │ │ │ ├── offload_t.hpp │ │ │ ├── oid_cache_entry_t.hpp │ │ │ ├── oid_list_t.hpp │ │ │ ├── oid_request_flags_t.hpp │ │ │ ├── oid_request_reserved_t.hpp │ │ │ ├── oid_request_t.hpp │ │ │ ├── open_block_t.hpp │ │ │ ├── open_ndk_adapter_parameters_t.hpp │ │ │ ├── open_offload_t.hpp │ │ │ ├── open_parameters_t.hpp │ │ │ ├── packet_8021q_info_t.hpp │ │ │ ├── packet_extension_t.hpp │ │ │ ├── packet_oob_data_t.hpp │ │ │ ├── packet_pattern_entry_t.hpp │ │ │ ├── packet_private_t.hpp │ │ │ ├── packet_stack_t.hpp │ │ │ ├── packet_t.hpp │ │ │ ├── packet_wrapper_t.hpp │ │ │ ├── parameter_type_t.hpp │ │ │ ├── path_offload_state_cached_t.hpp │ │ │ ├── path_offload_state_const_t.hpp │ │ │ ├── path_offload_state_delegated_t.hpp │ │ │ ├── pause_or_restart_t.hpp │ │ │ ├── pause_reason_t.hpp │ │ │ ├── pci_device_custom_properties_t.hpp │ │ │ ├── pcw_context/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── pcw_context_t.hpp │ │ │ ├── pcw_data_block_t.hpp │ │ │ ├── pd_acquire_queues_parameters_t.hpp │ │ │ ├── pd_block_t.hpp │ │ │ ├── pd_bm_domain/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── pd_bm_domain_handle_t.hpp │ │ │ ├── pd_bm_domain_member_handle_t.hpp │ │ │ ├── pd_bm_domain_member_parameters_t.hpp │ │ │ ├── pd_bm_domain_parameters_t.hpp │ │ │ ├── pd_buffer_8021q_info_t.hpp │ │ │ ├── pd_buffer_t.hpp │ │ │ ├── pd_buffer_virtual_subnet_info_t.hpp │ │ │ ├── pd_capabilities_t.hpp │ │ │ ├── pd_config_t.hpp │ │ │ ├── pd_control_type_t.hpp │ │ │ ├── pd_counter_handle_t.hpp │ │ │ ├── pd_counter_parameters_t.hpp │ │ │ ├── pd_counter_type_t.hpp │ │ │ ├── pd_counter_value_t.hpp │ │ │ ├── pd_ec_utilization_counter_t.hpp │ │ │ ├── pd_ext_client_context_t.hpp │ │ │ ├── pd_ext_client_dispatch_t.hpp │ │ │ ├── pd_ext_client_param_t.hpp │ │ │ ├── pd_ext_provider_context_t.hpp │ │ │ ├── pd_filter_counter_t.hpp │ │ │ ├── pd_filter_handle_t.hpp │ │ │ ├── pd_filter_parameters_t.hpp │ │ │ ├── pd_global/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── pd_mem_block/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── pd_post_and_drain_arg_t.hpp │ │ │ ├── pd_provider_control_code_t.hpp │ │ │ ├── pd_provider_dispatch_t.hpp │ │ │ ├── pd_provider_handle_t.hpp │ │ │ ├── pd_queue_control_code_t.hpp │ │ │ ├── pd_queue_depth_counter_t.hpp │ │ │ ├── pd_queue_dispatch_t.hpp │ │ │ ├── pd_queue_parameters_t.hpp │ │ │ ├── pd_queue_t.hpp │ │ │ ├── pd_queue_tracker/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── pd_queue_type_t.hpp │ │ │ ├── pd_receive_queue_counter_t.hpp │ │ │ ├── pd_transmit_queue_counter_t.hpp │ │ │ ├── pending_im_instance_t.hpp │ │ │ ├── pending_stack_expansion_fallback_work_t.hpp │ │ │ ├── per_packet_info_t.hpp │ │ │ ├── per_proc_performance_counters_t.hpp │ │ │ ├── pf_block_t.hpp │ │ │ ├── physical_address_unit_t.hpp │ │ │ ├── physical_medium_t.hpp │ │ │ ├── physical_performance_counters_t.hpp │ │ │ ├── pkg_type_t.hpp │ │ │ ├── pkt_pool_hdr_t.hpp │ │ │ ├── pkt_pool_t.hpp │ │ │ ├── pktmon_component_context_t.hpp │ │ │ ├── pktmon_edge_context_t.hpp │ │ │ ├── pktmon_packet_type_t.hpp │ │ │ ├── pm_admin_config_t.hpp │ │ │ ├── pm_capabilities_t.hpp │ │ │ ├── pm_component_id_t.hpp │ │ │ ├── pm_counted_string_t.hpp │ │ │ ├── pm_packet_pattern_t.hpp │ │ │ ├── pm_parameters_t.hpp │ │ │ ├── pm_protocol_offload_t.hpp │ │ │ ├── pm_protocol_offload_type_t.hpp │ │ │ ├── pm_wake_reason_type_t.hpp │ │ │ ├── pm_wake_up_capabilities_t.hpp │ │ │ ├── pm_wol_packet_t.hpp │ │ │ ├── pm_wol_pattern_t.hpp │ │ │ ├── pmkid_candidate_t.hpp │ │ │ ├── pndis_per_processor_slot_t.hpp │ │ │ ├── pnp_capabilities_t.hpp │ │ │ ├── pnp_device_state_t.hpp │ │ │ ├── poll/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── pool_block_type_t.hpp │ │ │ ├── pool_extended_parameter_t.hpp │ │ │ ├── pool_extended_parameter_type_t.hpp │ │ │ ├── pool_extended_params_secure_pool_t.hpp │ │ │ ├── pool_header_t.hpp │ │ │ ├── port_array_t.hpp │ │ │ ├── port_authentication_parameters_t.hpp │ │ │ ├── port_authorization_state_t.hpp │ │ │ ├── port_block_t.hpp │ │ │ ├── port_characteristics_t.hpp │ │ │ ├── port_control_state_t.hpp │ │ │ ├── port_pnp_state_t.hpp │ │ │ ├── port_state_t.hpp │ │ │ ├── port_t.hpp │ │ │ ├── port_type_t.hpp │ │ │ ├── power_profile_t.hpp │ │ │ ├── ppl_lookaside_list_array_t.hpp │ │ │ ├── ppl_lookaside_list_t.hpp │ │ │ ├── processor_info_t.hpp │ │ │ ├── processor_type_t.hpp │ │ │ ├── processor_vendor_t.hpp │ │ │ ├── protocol_bind_properties/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── protocol_block/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── protocol_block_t.hpp │ │ │ ├── protocol_co_characteristics_t.hpp │ │ │ ├── protocol_driver_characteristics_t.hpp │ │ │ ├── protocol_offload_block_list_t.hpp │ │ │ ├── protocol_pause_parameters_t.hpp │ │ │ ├── protocol_restart_parameters_t.hpp │ │ │ ├── provider_chimney_offload_generic_characteristics_t.hpp │ │ │ ├── provider_chimney_offload_tcp_characteristics_t.hpp │ │ │ ├── pt_reftag_t.hpp │ │ │ ├── qos_capabilities_t.hpp │ │ │ ├── qos_classification_element_t.hpp │ │ │ ├── qos_offload_capabilities_t.hpp │ │ │ ├── qos_parameters_t.hpp │ │ │ ├── qos_sq_parameters_enum_array_t.hpp │ │ │ ├── qos_sq_parameters_t.hpp │ │ │ ├── qos_sq_type_t.hpp │ │ │ ├── queued_close_t.hpp │ │ │ ├── receive_filter_block_t.hpp │ │ │ ├── receive_filter_capabilities_t.hpp │ │ │ ├── receive_filter_field_parameters_t.hpp │ │ │ ├── receive_filter_global_parameters_t.hpp │ │ │ ├── receive_filter_parameters_t.hpp │ │ │ ├── receive_filter_queue_state_change_t.hpp │ │ │ ├── receive_filter_test_t.hpp │ │ │ ├── receive_filter_type_t.hpp │ │ │ ├── receive_hash_parameters_t.hpp │ │ │ ├── receive_queue_block_t.hpp │ │ │ ├── receive_queue_operational_state_t.hpp │ │ │ ├── receive_queue_parameters_t.hpp │ │ │ ├── receive_queue_pnp_state_t.hpp │ │ │ ├── receive_queue_state_t.hpp │ │ │ ├── receive_queue_type_t.hpp │ │ │ ├── receive_scale_capabilities_t.hpp │ │ │ ├── receive_scale_parameters_t.hpp │ │ │ ├── refcount_block_t.hpp │ │ │ ├── refcount_handle_t.hpp │ │ │ ├── refcount_stack_block_t.hpp │ │ │ ├── refcount_stack_entry_t.hpp │ │ │ ├── refcount_tagged_entry_t.hpp │ │ │ ├── refcount_tagged_t.hpp │ │ │ ├── refcount_with_stack_t.hpp │ │ │ ├── reference_ex_t.hpp │ │ │ ├── reference_object_t.hpp │ │ │ ├── reference_t.hpp │ │ │ ├── registry_knob_collection/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── request_t.hpp │ │ │ ├── request_type_t.hpp │ │ │ ├── request_xlation_context_t.hpp │ │ │ ├── restart_attributes_t.hpp │ │ │ ├── restart_general_attributes_t.hpp │ │ │ ├── restart_information/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── restart_information_t.hpp │ │ │ ├── rfc6877_464xlat_offload_options_t.hpp │ │ │ ├── rfc6877_464xlat_offload_t.hpp │ │ │ ├── rsc_nbl_info_t.hpp │ │ │ ├── rsc_statistics_info_t.hpp │ │ │ ├── rss_dpc_worker_context_t.hpp │ │ │ ├── rss_profile_t.hpp │ │ │ ├── rtl/ │ │ │ │ ├── api.hpp │ │ │ │ ├── k_string/ │ │ │ │ │ ├── api.hpp │ │ │ │ │ └── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── rw_lock_ex_t.hpp │ │ │ ├── rw_lock_refcount_t.hpp │ │ │ ├── rw_lock_t.hpp │ │ │ ├── scatter_gather_list_parameters_t.hpp │ │ │ ├── scope_id_t.hpp │ │ │ ├── scope_level_t.hpp │ │ │ ├── selective_suspend_t.hpp │ │ │ ├── send_path_type_t.hpp │ │ │ ├── setup_device_extension/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── setup_device_extension_t.hpp │ │ │ ├── sg_dma_block_t.hpp │ │ │ ├── sg_dma_description_t.hpp │ │ │ ├── shared_memory_block_t.hpp │ │ │ ├── shared_memory_parameters_t.hpp │ │ │ ├── shared_memory_provider_characteristics_t.hpp │ │ │ ├── shared_memory_usage_t.hpp │ │ │ ├── shutdown_action_t.hpp │ │ │ ├── sockaddr_in6_t.hpp │ │ │ ├── sockaddr_in_t.hpp │ │ │ ├── sockaddr_t.hpp │ │ │ ├── spin_lock_t.hpp │ │ │ ├── sriov_capabilities_t.hpp │ │ │ ├── sriov_vf_config_state_t.hpp │ │ │ ├── ss_busy_reason_t.hpp │ │ │ ├── ss_control_ops_t.hpp │ │ │ ├── ss_idle_flags_t.hpp │ │ │ ├── ss_resume_reason_t.hpp │ │ │ ├── ss_stop_flags_t.hpp │ │ │ ├── ss_stop_reason_t.hpp │ │ │ ├── stack_index_t.hpp │ │ │ ├── stack_trace_table_t.hpp │ │ │ ├── statistical_stopwatch/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── statistics_info_t.hpp │ │ │ ├── status_indication_t.hpp │ │ │ ├── status_unbind_workitem_t.hpp │ │ │ ├── stopwatch/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── stopwatch_t.hpp │ │ │ ├── supported_pause_functions_t.hpp │ │ │ ├── switch_forwarding_destination_array_t.hpp │ │ │ ├── switch_forwarding_detail_net_buffer_list_info_t.hpp │ │ │ ├── switch_net_buffer_list_context_type_info_t.hpp │ │ │ ├── switch_nic_status_indication_t.hpp │ │ │ ├── switch_port_destination_t.hpp │ │ │ ├── system_processor_info_t.hpp │ │ │ ├── task_ipsec_t.hpp │ │ │ ├── task_offload_header_t.hpp │ │ │ ├── task_offload_t.hpp │ │ │ ├── task_t.hpp │ │ │ ├── task_tcp_ip_checksum_t.hpp │ │ │ ├── task_tcp_large_send_t.hpp │ │ │ ├── tcp_connection_offload_encapsulation_t.hpp │ │ │ ├── tcp_connection_offload_parameters_t.hpp │ │ │ ├── tcp_connection_offload_t.hpp │ │ │ ├── tcp_ip_checksum_net_buffer_list_info_t.hpp │ │ │ ├── tcp_ip_checksum_offload_t.hpp │ │ │ ├── tcp_ip_checksum_packet_info_t.hpp │ │ │ ├── tcp_large_send_offload_net_buffer_list_info_t.hpp │ │ │ ├── tcp_large_send_offload_v1_t.hpp │ │ │ ├── tcp_large_send_offload_v2_t.hpp │ │ │ ├── tcp_offload_client_handlers_t.hpp │ │ │ ├── tcp_offload_connection_state_t.hpp │ │ │ ├── tcp_offload_event_handlers_t.hpp │ │ │ ├── tcp_offload_event_type_t.hpp │ │ │ ├── tcp_offload_state_cached_t.hpp │ │ │ ├── tcp_offload_state_const_t.hpp │ │ │ ├── tcp_offload_state_delegated_t.hpp │ │ │ ├── tcp_offload_stats_t.hpp │ │ │ ├── tcp_recv_seg_coalesce_offload_t.hpp │ │ │ ├── tcp_upload_reason_t.hpp │ │ │ ├── timer_characteristics_t.hpp │ │ │ ├── timer_entry_t.hpp │ │ │ ├── timer_t.hpp │ │ │ ├── timestamp_capabilities_t.hpp │ │ │ ├── timestamp_capability_flags_t.hpp │ │ │ ├── tmp_ref_reason_t.hpp │ │ │ ├── track_mem_t.hpp │ │ │ ├── transport_header_offset_t.hpp │ │ │ ├── triage_object_header_t.hpp │ │ │ ├── udp_header_field_t.hpp │ │ │ ├── udp_segmentation_offload_t.hpp │ │ │ ├── ulong_reference_t.hpp │ │ │ ├── var_string_t.hpp │ │ │ ├── vf_block_t.hpp │ │ │ ├── vpci_invalidate_block_output_t.hpp │ │ │ ├── vport_block_t.hpp │ │ │ ├── wan_co_get_comp_info_t.hpp │ │ │ ├── wan_co_get_link_info_t.hpp │ │ │ ├── wan_co_get_stats_info_t.hpp │ │ │ ├── wan_co_info_t.hpp │ │ │ ├── wan_co_set_comp_info_t.hpp │ │ │ ├── wan_co_set_link_info_t.hpp │ │ │ ├── wan_compress_info_t.hpp │ │ │ ├── wan_fragment_t.hpp │ │ │ ├── wan_get_stats_t.hpp │ │ │ ├── wan_line_down_t.hpp │ │ │ ├── wan_line_up_t.hpp │ │ │ ├── wan_packet_t.hpp │ │ │ ├── wan_quality_t.hpp │ │ │ ├── watchdog_state/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── watchdog_triage_block_t.hpp │ │ │ ├── wdf_complete_add_params_t.hpp │ │ │ ├── wdf_cx_characteristics_t.hpp │ │ │ ├── wdf_cx_driver_block_t.hpp │ │ │ ├── wdf_cx_driver_context_t.hpp │ │ │ ├── wdf_cx_driver_state_t.hpp │ │ │ ├── wlan_bssid_ex_t.hpp │ │ │ ├── wlan_bssid_t.hpp │ │ │ ├── wol_xlation_context_t.hpp │ │ │ ├── work_item_t.hpp │ │ │ ├── work_item_type_t.hpp │ │ │ ├── workitem_with_irp_t.hpp │ │ │ ├── wrapper_configuration_handle_t.hpp │ │ │ ├── wrapper_handle_t.hpp │ │ │ ├── wwan_auth_challenge_t.hpp │ │ │ ├── wwan_device_caps_t.hpp │ │ │ ├── wwan_driver_caps_t.hpp │ │ │ ├── wwan_home_provider_t.hpp │ │ │ ├── wwan_pin_list_t.hpp │ │ │ ├── wwan_preferred_providers_t.hpp │ │ │ ├── wwan_ready_info_t.hpp │ │ │ ├── wwan_service_activation_t.hpp │ │ │ ├── wwan_set_context_state_t.hpp │ │ │ ├── wwan_set_packet_service_t.hpp │ │ │ ├── wwan_set_provisioned_context_t.hpp │ │ │ ├── wwan_set_register_state_t.hpp │ │ │ ├── wwan_set_signal_indication_t.hpp │ │ │ ├── wwan_set_sms_configuration_t.hpp │ │ │ ├── wwan_sms_delete_t.hpp │ │ │ ├── wwan_sms_read_t.hpp │ │ │ ├── wwan_sms_send_t.hpp │ │ │ ├── wwan_visible_providers_t.hpp │ │ │ ├── x_filter_t.hpp │ │ │ └── xlate_type_t.hpp │ │ ├── ndisp/ │ │ │ ├── api.hpp │ │ │ └── magic/ │ │ │ ├── api.end.hpp │ │ │ └── api.start.hpp │ │ ├── netio/ │ │ │ ├── api.hpp │ │ │ └── magic/ │ │ │ ├── api.end.hpp │ │ │ └── api.start.hpp │ │ ├── nls/ │ │ │ ├── api.hpp │ │ │ ├── data_block_t.hpp │ │ │ ├── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ ├── api.start.hpp │ │ │ │ ├── data_block_t.end.hpp │ │ │ │ └── data_block_t.start.hpp │ │ │ └── state_t.hpp │ │ ├── nt/ │ │ │ ├── access_reasons_t.hpp │ │ │ ├── access_state_t.hpp │ │ │ ├── acl_t.hpp │ │ │ ├── activation_context_stack32_t.hpp │ │ │ ├── activation_context_stack64_t.hpp │ │ │ ├── activation_context_stack_t.hpp │ │ │ ├── activation_context_t.hpp │ │ │ ├── adapter_object_t.hpp │ │ │ ├── add_driver_stage_t.hpp │ │ │ ├── additional_fdo_data_t.hpp │ │ │ ├── addrinfoex_w_t.hpp │ │ │ ├── aer_bridge_descriptor_flags_t.hpp │ │ │ ├── aer_endpoint_descriptor_flags_t.hpp │ │ │ ├── aer_rootport_descriptor_flags_t.hpp │ │ │ ├── aggregated_payload_filter_t.hpp │ │ │ ├── alias_information_class_t.hpp │ │ │ ├── alternative_architecture_type_t.hpp │ │ │ ├── amd64_dbgkd_control_set_t.hpp │ │ │ ├── amd64_mxcsr_reg_t.hpp │ │ │ ├── amd_mca_ipid_t.hpp │ │ │ ├── api.hpp │ │ │ ├── api_set_namespace_t.hpp │ │ │ ├── apphelpcommand_t.hpp │ │ │ ├── arc_disk_information_t.hpp │ │ │ ├── arm64_dbgkd_control_set_t.hpp │ │ │ ├── arm64_fpcr_reg_t.hpp │ │ │ ├── arm64_fpsr_reg_t.hpp │ │ │ ├── arm_dbgkd_control_set_t.hpp │ │ │ ├── arm_loader_block_t.hpp │ │ │ ├── armce_dbgkd_control_set_t.hpp │ │ │ ├── assembly_storage_map_t.hpp │ │ │ ├── async_lazywrite_thread_stats_t.hpp │ │ │ ├── async_read_thread_stats_t.hpp │ │ │ ├── ata_pass_through_direct32_t.hpp │ │ │ ├── ata_pass_through_direct_t.hpp │ │ │ ├── ata_pass_through_ex32_t.hpp │ │ │ ├── ata_pass_through_ex_t.hpp │ │ │ ├── atomic_create_ecp_context_t.hpp │ │ │ ├── audio_output_t.hpp │ │ │ ├── audit_event_type_t.hpp │ │ │ ├── authzbasep_claim_attributes_collection_t.hpp │ │ │ ├── authzbasep_security_attributes_information_t.hpp │ │ │ ├── aweinfo_t.hpp │ │ │ ├── background_scan_status_t.hpp │ │ │ ├── backlight_optimization_level_t.hpp │ │ │ ├── backlight_reduction_gamma_ramp_t.hpp │ │ │ ├── bank_position_t.hpp │ │ │ ├── banked_section_routine_t.hpp │ │ │ ├── base_mcb_t.hpp │ │ │ ├── battery_reporting_scale_t.hpp │ │ │ ├── bcb_t.hpp │ │ │ ├── bdcb_classification_t.hpp │ │ │ ├── bdcb_image_information_t.hpp │ │ │ ├── bin_count_t.hpp │ │ │ ├── bin_range_t.hpp │ │ │ ├── bin_results_t.hpp │ │ │ ├── bin_types_t.hpp │ │ │ ├── bitmap_range_t.hpp │ │ │ ├── black_screen_diagnostics_callout_param_t.hpp │ │ │ ├── blob_counters_t.hpp │ │ │ ├── blob_id_t.hpp │ │ │ ├── blob_t.hpp │ │ │ ├── blob_type_t.hpp │ │ │ ├── bootdisk_information_lite_t.hpp │ │ │ ├── bootdisk_information_t.hpp │ │ │ ├── bound_callback_status_t.hpp │ │ │ ├── brightness_interface_version_t.hpp │ │ │ ├── brightness_level_t.hpp │ │ │ ├── brightness_nit_range_t.hpp │ │ │ ├── brightness_nit_ranges_t.hpp │ │ │ ├── bugcheck_recovery_log_event_t.hpp │ │ │ ├── bus_data_type_t.hpp │ │ │ ├── bus_extension_list_t.hpp │ │ │ ├── bus_handler_t.hpp │ │ │ ├── bus_query_id_type_t.hpp │ │ │ ├── cache_descriptor_t.hpp │ │ │ ├── cache_manager_callback_functions_t.hpp │ │ │ ├── cache_manager_callbacks_ex_t.hpp │ │ │ ├── cache_manager_callbacks_t.hpp │ │ │ ├── cache_relationship_t.hpp │ │ │ ├── cache_uninitialize_event_t.hpp │ │ │ ├── cached_child_list_t.hpp │ │ │ ├── cached_kstack_list_t.hpp │ │ │ ├── call_hash_entry_t.hpp │ │ │ ├── call_performance_data_t.hpp │ │ │ ├── callback_object_t.hpp │ │ │ ├── cast_guard_vftables_t.hpp │ │ │ ├── cdaudio_control_page_t.hpp │ │ │ ├── cdb32_t.hpp │ │ │ ├── cdb32generic_t.hpp │ │ │ ├── cdda_output_port_t.hpp │ │ │ ├── cdrom_disk_data_t.hpp │ │ │ ├── cdrom_exception_performance_descriptor_t.hpp │ │ │ ├── cdrom_exclusive_access_t.hpp │ │ │ ├── cdrom_exclusive_lock_state_t.hpp │ │ │ ├── cdrom_exclusive_lock_t.hpp │ │ │ ├── cdrom_nominal_performance_descriptor_t.hpp │ │ │ ├── cdrom_opc_info_type_t.hpp │ │ │ ├── cdrom_performance_exception_type_t.hpp │ │ │ ├── cdrom_performance_header_t.hpp │ │ │ ├── cdrom_performance_request_t.hpp │ │ │ ├── cdrom_performance_request_type_t.hpp │ │ │ ├── cdrom_performance_tolerance_type_t.hpp │ │ │ ├── cdrom_performance_type_t.hpp │ │ │ ├── cdrom_play_audio_msf_t.hpp │ │ │ ├── cdrom_read_toc_ex_t.hpp │ │ │ ├── cdrom_seek_audio_msf_t.hpp │ │ │ ├── cdrom_set_speed_t.hpp │ │ │ ├── cdrom_set_streaming_t.hpp │ │ │ ├── cdrom_simple_opc_info_t.hpp │ │ │ ├── cdrom_speed_request_t.hpp │ │ │ ├── cdrom_streaming_control_t.hpp │ │ │ ├── cdrom_sub_q_data_format_t.hpp │ │ │ ├── cdrom_toc_atip_data_block_t.hpp │ │ │ ├── cdrom_toc_atip_data_t.hpp │ │ │ ├── cdrom_toc_cd_text_data_block_t.hpp │ │ │ ├── cdrom_toc_cd_text_data_t.hpp │ │ │ ├── cdrom_toc_full_toc_data_block_t.hpp │ │ │ ├── cdrom_toc_full_toc_data_t.hpp │ │ │ ├── cdrom_toc_pma_data_t.hpp │ │ │ ├── cdrom_toc_session_data_t.hpp │ │ │ ├── cdrom_toc_t.hpp │ │ │ ├── cdrom_write_speed_descriptor_t.hpp │ │ │ ├── cdrom_write_speed_request_t.hpp │ │ │ ├── cdvd_capabilities_page_t.hpp │ │ │ ├── cdvd_challenge_key_data_t.hpp │ │ │ ├── cdvd_feature_set_page_t.hpp │ │ │ ├── cdvd_inactivity_timeout_page_t.hpp │ │ │ ├── cdvd_key_data_t.hpp │ │ │ ├── cdvd_key_header_t.hpp │ │ │ ├── cdvd_report_agid_data_t.hpp │ │ │ ├── cdvd_report_asf_data_t.hpp │ │ │ ├── cdvd_title_key_header_t.hpp │ │ │ ├── cell_data_t.hpp │ │ │ ├── change_t.hpp │ │ │ ├── changer_device_problem_type_t.hpp │ │ │ ├── changer_element_list_t.hpp │ │ │ ├── changer_element_status_ex_t.hpp │ │ │ ├── changer_element_status_t.hpp │ │ │ ├── changer_element_t.hpp │ │ │ ├── changer_exchange_medium_t.hpp │ │ │ ├── changer_initialize_element_status_t.hpp │ │ │ ├── changer_move_medium_t.hpp │ │ │ ├── changer_product_data_t.hpp │ │ │ ├── changer_read_element_status_t.hpp │ │ │ ├── changer_send_volume_tag_information_t.hpp │ │ │ ├── changer_set_access_t.hpp │ │ │ ├── changer_set_position_t.hpp │ │ │ ├── char_image_info_t.hpp │ │ │ ├── child_list_t.hpp │ │ │ ├── chpev2_cpuarea_info_t.hpp │ │ │ ├── chpev2_process_info_t.hpp │ │ │ ├── chromaticity_coordinate_t.hpp │ │ │ ├── class_debug_level_t.hpp │ │ │ ├── class_dev_info_t.hpp │ │ │ ├── class_driver_extension_t.hpp │ │ │ ├── class_function_support_info_t.hpp │ │ │ ├── class_init_data_t.hpp │ │ │ ├── class_interpret_sense_info2_t.hpp │ │ │ ├── class_media_change_context_t.hpp │ │ │ ├── class_power_context_t.hpp │ │ │ ├── class_power_options_t.hpp │ │ │ ├── class_private_common_data_t.hpp │ │ │ ├── class_private_fdo_data_t.hpp │ │ │ ├── class_private_pdo_data_t.hpp │ │ │ ├── class_query_wmi_reginfo_ex_list_t.hpp │ │ │ ├── class_read_capacity16_data_t.hpp │ │ │ ├── class_vpd_b0_data_t.hpp │ │ │ ├── class_vpd_b1_data_t.hpp │ │ │ ├── class_vpd_b2_data_t.hpp │ │ │ ├── class_vpd_ecop_block_device_rod_limits_t.hpp │ │ │ ├── class_wmi_info_t.hpp │ │ │ ├── class_working_set_t.hpp │ │ │ ├── classpnp_scan_for_special_info_t.hpp │ │ │ ├── client_id32_t.hpp │ │ │ ├── client_id64_t.hpp │ │ │ ├── client_id_t.hpp │ │ │ ├── cmhive_t.hpp │ │ │ ├── cmsi_process_tuple_t.hpp │ │ │ ├── cmsi_rw_lock_t.hpp │ │ │ ├── colorspace_transform_1dlut_cap_t.hpp │ │ │ ├── colorspace_transform_3x4_t.hpp │ │ │ ├── colorspace_transform_data_cap_t.hpp │ │ │ ├── colorspace_transform_data_type_t.hpp │ │ │ ├── colorspace_transform_matrix_cap_t.hpp │ │ │ ├── colorspace_transform_matrix_v2_t.hpp │ │ │ ├── colorspace_transform_set_input_t.hpp │ │ │ ├── colorspace_transform_stage_control_t.hpp │ │ │ ├── colorspace_transform_t.hpp │ │ │ ├── colorspace_transform_target_caps_t.hpp │ │ │ ├── colorspace_transform_target_caps_version_t.hpp │ │ │ ├── colorspace_transform_type_t.hpp │ │ │ ├── common_device_extension_t.hpp │ │ │ ├── completion_context_t.hpp │ │ │ ├── compressed_data_info_t.hpp │ │ │ ├── configuration_class_t.hpp │ │ │ ├── configuration_component_data_t.hpp │ │ │ ├── configuration_component_t.hpp │ │ │ ├── configuration_information_t.hpp │ │ │ ├── configuration_type_t.hpp │ │ │ ├── connection_resource_consumer_desc_t.hpp │ │ │ ├── container_id_info_t.hpp │ │ │ ├── container_type_t.hpp │ │ │ ├── control_area_t.hpp │ │ │ ├── controller_object_t.hpp │ │ │ ├── copp_acp_protection_level_t.hpp │ │ │ ├── copp_bus_type_t.hpp │ │ │ ├── copp_cgmsa_protection_level_t.hpp │ │ │ ├── copp_connector_type_t.hpp │ │ │ ├── copp_dpcp_protection_level_t.hpp │ │ │ ├── copp_hdcp_protection_level_t.hpp │ │ │ ├── copp_image_aspect_ratio_en300294_t.hpp │ │ │ ├── copp_status_flags_t.hpp │ │ │ ├── copp_status_hdcp_flags_t.hpp │ │ │ ├── copp_tv_protection_standard_t.hpp │ │ │ ├── copy_information_t.hpp │ │ │ ├── correlation_vector_t.hpp │ │ │ ├── counted_reason_context_t.hpp │ │ │ ├── counter_reading_t.hpp │ │ │ ├── cptableinfo_t.hpp │ │ │ ├── cpu_info_t.hpp │ │ │ ├── crash_module32_t.hpp │ │ │ ├── crash_module64_t.hpp │ │ │ ├── crash_module_t.hpp │ │ │ ├── crash_thread32_t.hpp │ │ │ ├── crash_thread64_t.hpp │ │ │ ├── crash_thread_t.hpp │ │ │ ├── crashdump_version_info_t.hpp │ │ │ ├── create_disk_gpt_t.hpp │ │ │ ├── create_disk_mbr_t.hpp │ │ │ ├── create_disk_t.hpp │ │ │ ├── create_file_type_t.hpp │ │ │ ├── create_redirection_ecp_context_t.hpp │ │ │ ├── critical_process_exception_data_t.hpp │ │ │ ├── crt_locale_data_public_t.hpp │ │ │ ├── crt_locale_data_t.hpp │ │ │ ├── crt_locale_pointers_t.hpp │ │ │ ├── crt_multibyte_data_t.hpp │ │ │ ├── csv_down_level_file_type_t.hpp │ │ │ ├── csv_down_level_open_ecp_context_t.hpp │ │ │ ├── csv_query_file_revision_ecp_context_file_id_128_t.hpp │ │ │ ├── csv_query_file_revision_ecp_context_t.hpp │ │ │ ├── csv_set_handle_properties_ecp_context_t.hpp │ │ │ ├── curdir_t.hpp │ │ │ ├── current_internal_status_parameter_data_t.hpp │ │ │ ├── custom_system_event_trigger_config_t.hpp │ │ │ ├── cvdd_t.hpp │ │ │ ├── d3dcolorvalue_t.hpp │ │ │ ├── d3dddiarg_createresource2_t.hpp │ │ │ ├── d3dddiarg_createresource_t.hpp │ │ │ ├── d3dddicb_destroyallocation2flags_t.hpp │ │ │ ├── d3dddicb_lock2flags_t.hpp │ │ │ ├── d3dddicb_lockflags_t.hpp │ │ │ ├── d3dddicb_signalflags_t.hpp │ │ │ ├── d3dddigpuvirtualaddress_protection_type_t.hpp │ │ │ ├── d3dddigpuvirtualaddress_reservation_type_t.hpp │ │ │ ├── d3dddimultisample_type_t.hpp │ │ │ ├── d3dddirect_t.hpp │ │ │ ├── d3dgpu_physical_address_t.hpp │ │ │ ├── d3dkm_transparentbltflags_t.hpp │ │ │ ├── data_block_header_t.hpp │ │ │ ├── data_stream_t.hpp │ │ │ ├── date_of_manufacture_t.hpp │ │ │ ├── dbgui_create_process_t.hpp │ │ │ ├── dbgui_create_thread_t.hpp │ │ │ ├── dbgui_wait_state_change_t.hpp │ │ │ ├── ddc_control_t.hpp │ │ │ ├── debug_device_address_t.hpp │ │ │ ├── debug_device_descriptor_t.hpp │ │ │ ├── debug_iommu_efi_data_t.hpp │ │ │ ├── debug_level_t.hpp │ │ │ ├── debug_memory_requirements_t.hpp │ │ │ ├── debug_transport_data_t.hpp │ │ │ ├── debugobjectinfoclass_t.hpp │ │ │ ├── deferred_write_t.hpp │ │ │ ├── delay_ack_fo_t.hpp │ │ │ ├── description_header_t.hpp │ │ │ ├── desired_storage_class_t.hpp │ │ │ ├── detection_type_t.hpp │ │ │ ├── device_capabilities_t.hpp │ │ │ ├── device_copy_offload_descriptor_t.hpp │ │ │ ├── device_data_set_lb_provisioning_state_t.hpp │ │ │ ├── device_data_set_lb_provisioning_state_v2_t.hpp │ │ │ ├── device_data_set_lbp_state_parameters_t.hpp │ │ │ ├── device_data_set_range_t.hpp │ │ │ ├── device_data_set_repair_output_t.hpp │ │ │ ├── device_data_set_repair_parameters_t.hpp │ │ │ ├── device_data_set_scrub_ex_output_t.hpp │ │ │ ├── device_data_set_scrub_output_t.hpp │ │ │ ├── device_data_set_topology_id_query_output_t.hpp │ │ │ ├── device_description_t.hpp │ │ │ ├── device_directory_type_t.hpp │ │ │ ├── device_dsm_conversion_output_t.hpp │ │ │ ├── device_dsm_definition_t.hpp │ │ │ ├── device_dsm_free_space_output_t.hpp │ │ │ ├── device_dsm_lost_query_output_t.hpp │ │ │ ├── device_dsm_lost_query_parameters_t.hpp │ │ │ ├── device_dsm_notification_parameters_t.hpp │ │ │ ├── device_dsm_nvcache_change_priority_parameters_t.hpp │ │ │ ├── device_dsm_offload_read_parameters_t.hpp │ │ │ ├── device_dsm_offload_write_parameters_t.hpp │ │ │ ├── device_dsm_physical_addresses_output_t.hpp │ │ │ ├── device_dsm_range_error_info_t.hpp │ │ │ ├── device_dsm_report_zones_data_t.hpp │ │ │ ├── device_dsm_report_zones_parameters_t.hpp │ │ │ ├── device_dsm_tiering_query_input_t.hpp │ │ │ ├── device_dsm_tiering_query_output_t.hpp │ │ │ ├── device_fault_configuration_t.hpp │ │ │ ├── device_flags_t.hpp │ │ │ ├── device_internal_status_data_request_type_t.hpp │ │ │ ├── device_internal_status_data_set_t.hpp │ │ │ ├── device_internal_status_data_t.hpp │ │ │ ├── device_lb_provisioning_descriptor_t.hpp │ │ │ ├── device_location_t.hpp │ │ │ ├── device_manage_data_set_attributes_output_t.hpp │ │ │ ├── device_manage_data_set_attributes_t.hpp │ │ │ ├── device_map_t.hpp │ │ │ ├── device_media_info_t.hpp │ │ │ ├── device_node_iommu_extension_t.hpp │ │ │ ├── device_node_t.hpp │ │ │ ├── device_object_list_entry_t.hpp │ │ │ ├── device_object_list_t.hpp │ │ │ ├── device_object_power_extension_t.hpp │ │ │ ├── device_object_t.hpp │ │ │ ├── device_power_descriptor_t.hpp │ │ │ ├── device_power_state_t.hpp │ │ │ ├── device_relation_level_t.hpp │ │ │ ├── device_relation_type_t.hpp │ │ │ ├── device_relations_t.hpp │ │ │ ├── device_seek_penalty_descriptor_t.hpp │ │ │ ├── device_storage_address_range_t.hpp │ │ │ ├── device_storage_range_attributes_t.hpp │ │ │ ├── device_text_type_t.hpp │ │ │ ├── device_trim_descriptor_t.hpp │ │ │ ├── device_usage_notification_type_t.hpp │ │ │ ├── device_wake_depth_t.hpp │ │ │ ├── device_write_aggregation_descriptor_t.hpp │ │ │ ├── devicedump_collection_type_t.hpp │ │ │ ├── devicedump_private_subsection_t.hpp │ │ │ ├── devicedump_public_subsection_t.hpp │ │ │ ├── devicedump_restricted_subsection_t.hpp │ │ │ ├── devicedump_section_header_t.hpp │ │ │ ├── devicedump_storagedevice_data_t.hpp │ │ │ ├── devicedump_storagestack_public_dump_t.hpp │ │ │ ├── devicedump_storagestack_public_state_record_t.hpp │ │ │ ├── devicedump_structure_version_t.hpp │ │ │ ├── devicedump_subsection_pointer_t.hpp │ │ │ ├── devobj_extension_t.hpp │ │ │ ├── devprop_operator_t.hpp │ │ │ ├── devpropkey_t.hpp │ │ │ ├── devpropstore_t.hpp │ │ │ ├── diagnostic_buffer_t.hpp │ │ │ ├── diagnostic_context_t.hpp │ │ │ ├── dictionary_header_t.hpp │ │ │ ├── dictionary_t.hpp │ │ │ ├── directory_notify_information_class_t.hpp │ │ │ ├── dirty_page_statistics_t.hpp │ │ │ ├── dirty_page_thresholds_t.hpp │ │ │ ├── disallowed_guids_t.hpp │ │ │ ├── disc_information_t.hpp │ │ │ ├── disk_cache_information_t.hpp │ │ │ ├── disk_cache_setting_t.hpp │ │ │ ├── disk_cache_state_t.hpp │ │ │ ├── disk_cluster_info_t.hpp │ │ │ ├── disk_controller_number_t.hpp │ │ │ ├── disk_copy_data_parameters_t.hpp │ │ │ ├── disk_detection_info_t.hpp │ │ │ ├── disk_ex_int13_info_t.hpp │ │ │ ├── disk_extent_t.hpp │ │ │ ├── disk_geometry_ex_t.hpp │ │ │ ├── disk_geometry_t.hpp │ │ │ ├── disk_grow_partition_t.hpp │ │ │ ├── disk_histogram_t.hpp │ │ │ ├── disk_information_t.hpp │ │ │ ├── disk_int13_info_t.hpp │ │ │ ├── disk_logging_t.hpp │ │ │ ├── disk_partition_info_t.hpp │ │ │ ├── disk_performance_info_t.hpp │ │ │ ├── disk_performance_parameters_t.hpp │ │ │ ├── disk_performance_t.hpp │ │ │ ├── disk_performance_type_t.hpp │ │ │ ├── disk_record_t.hpp │ │ │ ├── disk_san_policy_t.hpp │ │ │ ├── disk_san_settings_t.hpp │ │ │ ├── disk_signature_t.hpp │ │ │ ├── disk_snapshot_info_t.hpp │ │ │ ├── disk_snapshot_state_t.hpp │ │ │ ├── dispatcher_header_t.hpp │ │ │ ├── display_brightness_t.hpp │ │ │ ├── displayconfig_scanline_ordering_t.hpp │ │ │ ├── displayid_detailed_timing_type_i_aspect_ratio_t.hpp │ │ │ ├── displayid_detailed_timing_type_i_scanning_mode_t.hpp │ │ │ ├── displayid_detailed_timing_type_i_stereo_mode_t.hpp │ │ │ ├── displayid_detailed_timing_type_i_sync_polarity_t.hpp │ │ │ ├── displayid_detailed_timing_type_i_t.hpp │ │ │ ├── dkgk_gamma_data_cap_t.hpp │ │ │ ├── dock_interface_t.hpp │ │ │ ├── domain_configuration_arch_t.hpp │ │ │ ├── domain_configuration_arm64_t.hpp │ │ │ ├── domain_configuration_t.hpp │ │ │ ├── domain_configuration_x64_t.hpp │ │ │ ├── domain_display_information_t.hpp │ │ │ ├── domain_information_class_t.hpp │ │ │ ├── domain_localizable_accounts_information_t.hpp │ │ │ ├── domain_password_information_t.hpp │ │ │ ├── drive_layout_information_ex_t.hpp │ │ │ ├── drive_layout_information_gpt_t.hpp │ │ │ ├── drive_layout_information_mbr_t.hpp │ │ │ ├── drive_layout_information_t.hpp │ │ │ ├── driver_directory_type_t.hpp │ │ │ ├── driver_extension_t.hpp │ │ │ ├── driver_initialization_data_t.hpp │ │ │ ├── driver_object_t.hpp │ │ │ ├── driver_regkey_type_t.hpp │ │ │ ├── driver_runtime_init_flags_t.hpp │ │ │ ├── driverstatus_t.hpp │ │ │ ├── dsi_control_transmission_mode_t.hpp │ │ │ ├── dsm_notification_request_block_t.hpp │ │ │ ├── dual_oplock_key_ecp_context_t.hpp │ │ │ ├── dual_t.hpp │ │ │ ├── dummy_file_object_t.hpp │ │ │ ├── dump_blob_file_header_t.hpp │ │ │ ├── dump_blob_header_t.hpp │ │ │ ├── dump_driver_entry32_t.hpp │ │ │ ├── dump_driver_entry64_t.hpp │ │ │ ├── dump_driver_ex_t.hpp │ │ │ ├── dump_driver_t.hpp │ │ │ ├── dump_events_t.hpp │ │ │ ├── dump_header32_t.hpp │ │ │ ├── dump_header64_t.hpp │ │ │ ├── dump_initialization_context_t.hpp │ │ │ ├── dump_mm_storage32_t.hpp │ │ │ ├── dump_mm_storage64_t.hpp │ │ │ ├── dump_pointers_ex_t.hpp │ │ │ ├── dump_pointers_t.hpp │ │ │ ├── dump_pointers_version_t.hpp │ │ │ ├── dump_stack_context_t.hpp │ │ │ ├── dump_string_t.hpp │ │ │ ├── dump_types_t.hpp │ │ │ ├── dump_unloaded_drivers32_t.hpp │ │ │ ├── dump_unloaded_drivers64_t.hpp │ │ │ ├── dxgi1_1_ddi_base_functions_t.hpp │ │ │ ├── dxgi1_2_ddi_base_functions_t.hpp │ │ │ ├── dxgi1_3_ddi_base_functions_t.hpp │ │ │ ├── dxgi1_4_ddi_base_functions_t.hpp │ │ │ ├── dxgi1_5_ddi_base_functions_t.hpp │ │ │ ├── dxgi1_6_1_ddi_arg_present_t.hpp │ │ │ ├── dxgi1_6_1_ddi_arg_presentmultiplaneoverlay_t.hpp │ │ │ ├── dxgi1_6_1_ddi_base_functions_t.hpp │ │ │ ├── dxgiddi_multiplane_overlay_allocation_info_t.hpp │ │ │ ├── dxgiddi_multiplane_overlay_plane_info_t.hpp │ │ │ ├── dxgkmt_multiplane_overlay_stereo_flip_mode_t.hpp │ │ │ ├── dxgkmt_multiplane_overlay_stretch_quality_t.hpp │ │ │ ├── dxgkmt_power_shared_type_t.hpp │ │ │ ├── dxgkrnl_interface_t.hpp │ │ │ ├── dynamic_function_table_t.hpp │ │ │ ├── ea_t.hpp │ │ │ ├── ecp_header_t.hpp │ │ │ ├── ecp_list_t.hpp │ │ │ ├── ecp_open_parameters_t.hpp │ │ │ ├── ejob_t.hpp │ │ │ ├── element_type_t.hpp │ │ │ ├── empty_c_variant_expired_feature_t.hpp │ │ │ ├── empty_c_variant_feature_staging_boot_t.hpp │ │ │ ├── empty_c_variant_feature_staging_io_manager_t.hpp │ │ │ ├── empty_c_variant_feature_staging_kernelcachemanager_t.hpp │ │ │ ├── empty_c_variant_feature_staging_memory_manager_t.hpp │ │ │ ├── empty_c_variant_feature_staging_poncherello_t.hpp │ │ │ ├── empty_c_variant_feature_staging_updated_msrc_global_settings_t.hpp │ │ │ ├── empty_c_variant_feature_staging_xfg_t.hpp │ │ │ ├── emulator_access_entry_t.hpp │ │ │ ├── emulator_port_access_type_t.hpp │ │ │ ├── energy_state_duration_t.hpp │ │ │ ├── eng_event_t.hpp │ │ │ ├── enlistment_information_class_t.hpp │ │ │ ├── enode_t.hpp │ │ │ ├── eof_wait_block_t.hpp │ │ │ ├── epartition_t.hpp │ │ │ ├── eprocess_quota_block_t.hpp │ │ │ ├── eprocess_t.hpp │ │ │ ├── eprocess_values_t.hpp │ │ │ ├── eresource_t.hpp │ │ │ ├── error_history_directory_entry_t.hpp │ │ │ ├── error_history_directory_t.hpp │ │ │ ├── eserversilo_globals_t.hpp │ │ │ ├── ethread_t.hpp │ │ │ ├── etimer_t.hpp │ │ │ ├── event_data_descriptor_t.hpp │ │ │ ├── event_descriptor_t.hpp │ │ │ ├── event_filter_descriptor_t.hpp │ │ │ ├── event_filter_header_t.hpp │ │ │ ├── event_filter_level_kw_t.hpp │ │ │ ├── event_header_extended_data_item_t.hpp │ │ │ ├── event_header_t.hpp │ │ │ ├── event_info_class_t.hpp │ │ │ ├── event_payload_predicate_t.hpp │ │ │ ├── event_record_t.hpp │ │ │ ├── event_type_t.hpp │ │ │ ├── ewow64process_t.hpp │ │ │ ├── exception_disposition_t.hpp │ │ │ ├── exception_pointers_t.hpp │ │ │ ├── exception_record32_t.hpp │ │ │ ├── exception_record64_t.hpp │ │ │ ├── exception_record_t.hpp │ │ │ ├── exception_registration_record_t.hpp │ │ │ ├── exclusive_access_request_type_t.hpp │ │ │ ├── exhandle_t.hpp │ │ │ ├── exqueueindex_t.hpp │ │ │ ├── extended_arguments_t.hpp │ │ │ ├── facs_t.hpp │ │ │ ├── fadt_t.hpp │ │ │ ├── failure_prediction_info_t.hpp │ │ │ ├── fake_heap_entry_t.hpp │ │ │ ├── fan_noise_zones_t.hpp │ │ │ ├── fast_eresource_internal_t.hpp │ │ │ ├── fast_eresource_t.hpp │ │ │ ├── fast_io_dispatch_t.hpp │ │ │ ├── fast_io_possible_t.hpp │ │ │ ├── fast_mutex_t.hpp │ │ │ ├── fast_owner_entry_internal_t.hpp │ │ │ ├── fast_owner_entry_t.hpp │ │ │ ├── fault_information_arch_t.hpp │ │ │ ├── fault_information_arm64_flags_t.hpp │ │ │ ├── fault_information_arm64_t.hpp │ │ │ ├── fault_information_arm64_type_t.hpp │ │ │ ├── fault_information_t.hpp │ │ │ ├── fault_information_x64_flags_t.hpp │ │ │ ├── fault_information_x64_t.hpp │ │ │ ├── feature_change_time_t.hpp │ │ │ ├── feature_enabled_state_t.hpp │ │ │ ├── feature_error_t.hpp │ │ │ ├── feature_logged_traits_t.hpp │ │ │ ├── feature_state_change_subscription_t.hpp │ │ │ ├── file_basic_information_t.hpp │ │ │ ├── file_full_ea_information_t.hpp │ │ │ ├── file_get_quota_information_t.hpp │ │ │ ├── file_information_class_t.hpp │ │ │ ├── file_lock_info_t.hpp │ │ │ ├── file_lock_t.hpp │ │ │ ├── file_network_open_information_t.hpp │ │ │ ├── file_object_extension_t.hpp │ │ │ ├── file_object_extension_type_t.hpp │ │ │ ├── file_object_t.hpp │ │ │ ├── file_quota_information_t.hpp │ │ │ ├── file_segment_element_t.hpp │ │ │ ├── file_standard_information_t.hpp │ │ │ ├── file_timestamps_t.hpp │ │ │ ├── filesystem_disk_counters_t.hpp │ │ │ ├── firmware_information_loader_block_t.hpp │ │ │ ├── firmware_request_block_t.hpp │ │ │ ├── firmware_type_t.hpp │ │ │ ├── flags_t.hpp │ │ │ ├── fls_callback_info_t.hpp │ │ │ ├── font_image_info_t.hpp │ │ │ ├── format_descriptor_t.hpp │ │ │ ├── format_ex_parameters_t.hpp │ │ │ ├── format_list_header_t.hpp │ │ │ ├── format_parameters_t.hpp │ │ │ ├── formatted_capacity_descriptor_t.hpp │ │ │ ├── formatted_capacity_list_t.hpp │ │ │ ├── free_display_t.hpp │ │ │ ├── frequency_qos_bucket_t.hpp │ │ │ ├── fscntl_screen_info_t.hpp │ │ │ ├── fsinfoclass_t.hpp │ │ │ ├── fsrtl_advanced_fcb_header_t.hpp │ │ │ ├── fsrtl_auxiliary_buffer_t.hpp │ │ │ ├── fsrtl_change_backing_type_t.hpp │ │ │ ├── fsrtl_common_fcb_header_t.hpp │ │ │ ├── fsrtl_comparison_result_t.hpp │ │ │ ├── fsrtl_mup_provider_info_level_1_t.hpp │ │ │ ├── fsrtl_mup_provider_info_level_2_t.hpp │ │ │ ├── fsrtl_per_file_context_t.hpp │ │ │ ├── fsrtl_per_fileobject_context_t.hpp │ │ │ ├── fsrtl_per_stream_context_t.hpp │ │ │ ├── fsrtl_unc_provider_registration_t.hpp │ │ │ ├── fsvideo_copy_frame_buffer_t.hpp │ │ │ ├── fsvideo_cursor_position_t.hpp │ │ │ ├── fsvideo_mode_information_t.hpp │ │ │ ├── fsvideo_reverse_mouse_pointer_t.hpp │ │ │ ├── fsvideo_screen_information_t.hpp │ │ │ ├── fsvideo_write_to_frame_buffer_t.hpp │ │ │ ├── full_dump32_t.hpp │ │ │ ├── full_dump64_t.hpp │ │ │ ├── function_table_type_t.hpp │ │ │ ├── functional_device_extension_t.hpp │ │ │ ├── gamma_ramp_dxgi_1_t.hpp │ │ │ ├── gamma_ramp_rgb256x3x16_t.hpp │ │ │ ├── gamma_ramp_rgb_t.hpp │ │ │ ├── gdi_teb_batch32_t.hpp │ │ │ ├── gdi_teb_batch64_t.hpp │ │ │ ├── gdi_teb_batch_t.hpp │ │ │ ├── gen_addr_t.hpp │ │ │ ├── general_lookaside_pool_t.hpp │ │ │ ├── general_lookaside_t.hpp │ │ │ ├── generate_name_context_t.hpp │ │ │ ├── generic_mapping_t.hpp │ │ │ ├── get_changer_parameters_t.hpp │ │ │ ├── get_device_internal_status_data_request_t.hpp │ │ │ ├── get_disk_attributes_t.hpp │ │ │ ├── get_length_information_t.hpp │ │ │ ├── get_media_types_t.hpp │ │ │ ├── get_partition_attributes_t.hpp │ │ │ ├── getversioninparams_t.hpp │ │ │ ├── gic_distributor_t.hpp │ │ │ ├── gic_its_t.hpp │ │ │ ├── gic_msiframe_entry_t.hpp │ │ │ ├── gic_redistributor_t.hpp │ │ │ ├── gp_log_page_descriptor_t.hpp │ │ │ ├── gpio_pin_config_type_t.hpp │ │ │ ├── gpio_pin_iorestriction_type_t.hpp │ │ │ ├── gpup_driver_escape_input_t.hpp │ │ │ ├── group_affinity_t.hpp │ │ │ ├── group_information_class_t.hpp │ │ │ ├── group_membership_t.hpp │ │ │ ├── group_relationship_t.hpp │ │ │ ├── guid_t.hpp │ │ │ ├── guidreginfo_t.hpp │ │ │ ├── handle_revocation_info_t.hpp │ │ │ ├── handle_table_entry_info_t.hpp │ │ │ ├── handle_table_entry_t.hpp │ │ │ ├── handle_table_free_list_t.hpp │ │ │ ├── handle_table_t.hpp │ │ │ ├── handle_trace_db_entry_t.hpp │ │ │ ├── handle_trace_debug_info_t.hpp │ │ │ ├── hardware_counter_t.hpp │ │ │ ├── hardware_counter_type_t.hpp │ │ │ ├── hardware_pte_t.hpp │ │ │ ├── hbase_block_t.hpp │ │ │ ├── hbin_t.hpp │ │ │ ├── hcell_t.hpp │ │ │ ├── headless_loader_block_t.hpp │ │ │ ├── heap_t.hpp │ │ │ ├── hhive_t.hpp │ │ │ ├── hidden_processor_power_interface_t.hpp │ │ │ ├── histogram_bucket_t.hpp │ │ │ ├── hive_list_entry_t.hpp │ │ │ ├── hive_load_failure_t.hpp │ │ │ ├── hive_wait_packet_t.hpp │ │ │ ├── hive_write_wait_queue_t.hpp │ │ │ ├── hmap_directory_t.hpp │ │ │ ├── hmap_entry_t.hpp │ │ │ ├── hmap_table_t.hpp │ │ │ ├── hstorage_type_t.hpp │ │ │ ├── hview_map_directory_t.hpp │ │ │ ├── hview_map_entry_t.hpp │ │ │ ├── hview_map_pin_log_entry_t.hpp │ │ │ ├── hview_map_pin_log_t.hpp │ │ │ ├── hview_map_t.hpp │ │ │ ├── hview_map_table_t.hpp │ │ │ ├── hw_dma_return_t.hpp │ │ │ ├── hwn_settings_options_t.hpp │ │ │ ├── hybrid_demote_by_size_t.hpp │ │ │ ├── hybrid_dirty_thresholds_t.hpp │ │ │ ├── hybrid_information_t.hpp │ │ │ ├── hybrid_request_block_t.hpp │ │ │ ├── i2c_callbacks_t.hpp │ │ │ ├── i2c_fnc_table_t.hpp │ │ │ ├── i386_loader_block_t.hpp │ │ │ ├── ia64_dbgkd_control_set_t.hpp │ │ │ ├── ide_io_control_t.hpp │ │ │ ├── ideregs_t.hpp │ │ │ ├── in6_addr_t.hpp │ │ │ ├── in_addr_t.hpp │ │ │ ├── inbv_display_context_t.hpp │ │ │ ├── inbv_graphics_rectangle_t.hpp │ │ │ ├── inbv_mode_information_t.hpp │ │ │ ├── inbv_offset_t.hpp │ │ │ ├── inbv_pixel_format_t.hpp │ │ │ ├── indirect_display_info_t.hpp │ │ │ ├── informational_exceptions_t.hpp │ │ │ ├── initial_privilege_set_t.hpp │ │ │ ├── input_mapping_element_t.hpp │ │ │ ├── installed_memory_range_t.hpp │ │ │ ├── int10_bios_arguments_t.hpp │ │ │ ├── interface_t.hpp │ │ │ ├── interface_type_t.hpp │ │ │ ├── interlocked_result_t.hpp │ │ │ ├── interrupt_connection_data_t.hpp │ │ │ ├── interrupt_connection_type_t.hpp │ │ │ ├── interrupt_function_table_t.hpp │ │ │ ├── interrupt_ht_intr_info_t.hpp │ │ │ ├── interrupt_line_internal_state_t.hpp │ │ │ ├── interrupt_line_state_t.hpp │ │ │ ├── interrupt_line_subtype_t.hpp │ │ │ ├── interrupt_line_t.hpp │ │ │ ├── interrupt_line_type_t.hpp │ │ │ ├── interrupt_lines_t.hpp │ │ │ ├── interrupt_problem_t.hpp │ │ │ ├── interrupt_remapping_info_t.hpp │ │ │ ├── interrupt_result_t.hpp │ │ │ ├── interrupt_steering_mode_t.hpp │ │ │ ├── interrupt_target_t.hpp │ │ │ ├── interrupt_target_type_t.hpp │ │ │ ├── interrupt_tracking_entry_t.hpp │ │ │ ├── interrupt_tracking_root_t.hpp │ │ │ ├── interrupt_vector_data_t.hpp │ │ │ ├── inverted_function_table_entry_t.hpp │ │ │ ├── inverted_function_table_kernel_mode_t.hpp │ │ │ ├── invpcid_descriptor_t.hpp │ │ │ ├── invpcid_type_t.hpp │ │ │ ├── ioapic_t.hpp │ │ │ ├── iobuf_t.hpp │ │ │ ├── iommu_ats_settings_t.hpp │ │ │ ├── iommu_device_creation_configuration_acpi_t.hpp │ │ │ ├── iommu_device_creation_configuration_t.hpp │ │ │ ├── iommu_device_creation_configuration_type_t.hpp │ │ │ ├── iommu_dma_device_t.hpp │ │ │ ├── iommu_dma_domain_creation_flags_t.hpp │ │ │ ├── iommu_dma_domain_t.hpp │ │ │ ├── iommu_dma_domain_type_t.hpp │ │ │ ├── iommu_dma_logical_address_token_mapped_segment_t.hpp │ │ │ ├── iommu_dma_logical_address_token_t.hpp │ │ │ ├── iommu_dma_logical_allocator_capabilities_t.hpp │ │ │ ├── iommu_dma_logical_allocator_config_t.hpp │ │ │ ├── iommu_dma_logical_allocator_operations_v1_t.hpp │ │ │ ├── iommu_dma_logical_allocator_t.hpp │ │ │ ├── iommu_dma_logical_allocator_type_t.hpp │ │ │ ├── iommu_dma_reserved_region_t.hpp │ │ │ ├── iommu_interface_callback_record_t.hpp │ │ │ ├── iommu_interface_state_change_fields_t.hpp │ │ │ ├── iommu_interface_state_change_t.hpp │ │ │ ├── iommu_map_physical_address_t.hpp │ │ │ ├── iommu_map_physical_address_type_t.hpp │ │ │ ├── iommu_page_handling_data_t.hpp │ │ │ ├── iommu_pasid_table_object_t.hpp │ │ │ ├── iommu_reserved_device_list_t.hpp │ │ │ ├── iommu_reserved_device_t.hpp │ │ │ ├── iommu_svm_capabilities_t.hpp │ │ │ ├── iommu_tracked_device_t.hpp │ │ │ ├── ioring_buffer_info_t.hpp │ │ │ ├── ioring_object_t.hpp │ │ │ ├── ioring_op_code_t.hpp │ │ │ ├── ioring_registered_buffer_t.hpp │ │ │ ├── ioring_version_t.hpp │ │ │ ├── iosapic_t.hpp │ │ │ ├── ipmi_os_sel_record_t.hpp │ │ │ ├── ipmi_os_sel_record_type_t.hpp │ │ │ ├── irp_t.hpp │ │ │ ├── irplock_t.hpp │ │ │ ├── irq_device_policy_t.hpp │ │ │ ├── irq_priority_t.hpp │ │ │ ├── isa_vector_t.hpp │ │ │ ├── isr_thunk_t.hpp │ │ │ ├── isrdpcstats_sequence_t.hpp │ │ │ ├── isrdpcstats_t.hpp │ │ │ ├── job_access_state_t.hpp │ │ │ ├── job_cpu_rate_control_t.hpp │ │ │ ├── job_net_rate_control_t.hpp │ │ │ ├── job_notification_information_t.hpp │ │ │ ├── job_object_info_t.hpp │ │ │ ├── job_object_io_rate_control_flags_t.hpp │ │ │ ├── job_object_net_rate_control_flags_t.hpp │ │ │ ├── job_rate_control_header_t.hpp │ │ │ ├── jobobject_energy_tracking_state_t.hpp │ │ │ ├── jobobject_io_priority_limit_flags_t.hpp │ │ │ ├── jobobject_page_priority_limit_flags_t.hpp │ │ │ ├── jobobject_wake_filter_t.hpp │ │ │ ├── jobobjectinfoclass_t.hpp │ │ │ ├── kaffinity_ex_t.hpp │ │ │ ├── kalpc_direct_event_t.hpp │ │ │ ├── kalpc_handle_data_t.hpp │ │ │ ├── kalpc_message_attributes_t.hpp │ │ │ ├── kalpc_message_t.hpp │ │ │ ├── kalpc_region_t.hpp │ │ │ ├── kalpc_reserve_t.hpp │ │ │ ├── kalpc_section_t.hpp │ │ │ ├── kalpc_security_data_t.hpp │ │ │ ├── kalpc_view_t.hpp │ │ │ ├── kalpc_work_on_behalf_data_t.hpp │ │ │ ├── kapc_environment_t.hpp │ │ │ ├── kapc_state_t.hpp │ │ │ ├── kapc_t.hpp │ │ │ ├── kbugcheck_callback_reason_t.hpp │ │ │ ├── kbugcheck_callback_record_t.hpp │ │ │ ├── kbugcheck_reason_callback_record_t.hpp │ │ │ ├── kclock_increment_trace_t.hpp │ │ │ ├── kclock_tick_trace_t.hpp │ │ │ ├── kclock_timer_deadline_entry_t.hpp │ │ │ ├── kclock_timer_deadline_type_t.hpp │ │ │ ├── kclock_timer_one_shot_state_t.hpp │ │ │ ├── kclock_timer_state_t.hpp │ │ │ ├── kcontinue_type_t.hpp │ │ │ ├── kcore_control_block_t.hpp │ │ │ ├── kddebugger_data64_t.hpp │ │ │ ├── kdescriptor_t.hpp │ │ │ ├── kdevice_queue_entry_t.hpp │ │ │ ├── kdevice_queue_t.hpp │ │ │ ├── kdpc_data_t.hpp │ │ │ ├── kdpc_importance_t.hpp │ │ │ ├── kdpc_list_t.hpp │ │ │ ├── kdpc_t.hpp │ │ │ ├── kdpc_watchdog_information_t.hpp │ │ │ ├── kenlistment_history_t.hpp │ │ │ ├── kenlistment_state_t.hpp │ │ │ ├── kenlistment_t.hpp │ │ │ ├── kentropy_timing_state_t.hpp │ │ │ ├── kernel_shadow_stack_limit_t.hpp │ │ │ ├── kernel_shadow_stack_type_t.hpp │ │ │ ├── kernel_stack_limits_t.hpp │ │ │ ├── kernel_stack_segment_t.hpp │ │ │ ├── kevent_t.hpp │ │ │ ├── kexecute_options_t.hpp │ │ │ ├── key_information_class_t.hpp │ │ │ ├── key_set_information_class_t.hpp │ │ │ ├── key_value_full_information_t.hpp │ │ │ ├── key_value_information_class_t.hpp │ │ │ ├── kfloating_save_t.hpp │ │ │ ├── kgate_t.hpp │ │ │ ├── kgdtentry64_t.hpp │ │ │ ├── khetero_cpu_policy_t.hpp │ │ │ ├── khetero_cpu_qos_t.hpp │ │ │ ├── khetero_hwfeedback_class_t.hpp │ │ │ ├── khetero_processor_set_t.hpp │ │ │ ├── khetero_running_type_t.hpp │ │ │ ├── khetero_state_t.hpp │ │ │ ├── khetro_hwfeedback_type_t.hpp │ │ │ ├── kidtentry64_t.hpp │ │ │ ├── kinterrupt_mode_t.hpp │ │ │ ├── kinterrupt_polarity_t.hpp │ │ │ ├── kinterrupt_t.hpp │ │ │ ├── kisolation_width_t.hpp │ │ │ ├── kist_base_frame_t.hpp │ │ │ ├── kist_link_frame_t.hpp │ │ │ ├── kldtentry_t.hpp │ │ │ ├── klock_entry_boost_bitmap_t.hpp │ │ │ ├── klock_entry_lock_state_t.hpp │ │ │ ├── klock_entry_t.hpp │ │ │ ├── klock_queue_handle_t.hpp │ │ │ ├── kmddod_initialization_data_t.hpp │ │ │ ├── kmt_display_umd_version_t.hpp │ │ │ ├── kmtqueryadapterinfotype_t.hpp │ │ │ ├── kmtumdversion_t.hpp │ │ │ ├── kmutant_t.hpp │ │ │ ├── knode_t.hpp │ │ │ ├── known_controller_type_t.hpp │ │ │ ├── kobjects_t.hpp │ │ │ ├── kpcr_t.hpp │ │ │ ├── kprcb_t.hpp │ │ │ ├── kprcb_tracepoint_log_entry_t.hpp │ │ │ ├── kprcb_tracepoint_log_t.hpp │ │ │ ├── kprcbflag_t.hpp │ │ │ ├── kpriority_state_t.hpp │ │ │ ├── kpriqueue_t.hpp │ │ │ ├── kprocess_ppm_policy_t.hpp │ │ │ ├── kprocess_state_t.hpp │ │ │ ├── kprocess_t.hpp │ │ │ ├── kprocessor_descriptor_area_t.hpp │ │ │ ├── kprocessor_state_t.hpp │ │ │ ├── kprofile_source_t.hpp │ │ │ ├── kqos_grouping_sets_t.hpp │ │ │ ├── kqueue_t.hpp │ │ │ ├── krequest_packet_t.hpp │ │ │ ├── kresourcemanager_completion_binding_t.hpp │ │ │ ├── kresourcemanager_state_t.hpp │ │ │ ├── kresourcemanager_t.hpp │ │ │ ├── kscb_t.hpp │ │ │ ├── kscheduler_subnode_t.hpp │ │ │ ├── kscheduling_group_policy_t.hpp │ │ │ ├── kscheduling_group_t.hpp │ │ │ ├── ksecondary_idt_entry_t.hpp │ │ │ ├── ksecure_fault_information_t.hpp │ │ │ ├── ksemaphore_t.hpp │ │ │ ├── kshared_ready_queue_hetero_statistics_t.hpp │ │ │ ├── kshared_ready_queue_t.hpp │ │ │ ├── ksingle_dpc_soft_timeout_event_info_t.hpp │ │ │ ├── ksoftware_interrupt_batch_t.hpp │ │ │ ├── ksoftware_interrupt_target_t.hpp │ │ │ ├── kspecial_registers_t.hpp │ │ │ ├── kspin_lock_queue_t.hpp │ │ │ ├── ksr_capabilities_t.hpp │ │ │ ├── ksr_firmware_information_t.hpp │ │ │ ├── kstack_control_t.hpp │ │ │ ├── kstack_count_t.hpp │ │ │ ├── kstack_type_t.hpp │ │ │ ├── kstatic_affinity_block_t.hpp │ │ │ ├── ksystem_time_t.hpp │ │ │ ├── ktb_flush_va_t.hpp │ │ │ ├── kthread_core_isolation_reason_t.hpp │ │ │ ├── kthread_counters_t.hpp │ │ │ ├── kthread_ppm_policy_t.hpp │ │ │ ├── kthread_state_t.hpp │ │ │ ├── kthread_t.hpp │ │ │ ├── kthread_tag_t.hpp │ │ │ ├── ktimer2_collection_index_t.hpp │ │ │ ├── ktimer2_collection_t.hpp │ │ │ ├── ktimer2_t.hpp │ │ │ ├── ktimer_expiration_trace_t.hpp │ │ │ ├── ktimer_t.hpp │ │ │ ├── ktimer_table_entry_t.hpp │ │ │ ├── ktimer_table_state_t.hpp │ │ │ ├── ktimer_table_t.hpp │ │ │ ├── ktm_state_t.hpp │ │ │ ├── ktm_t.hpp │ │ │ ├── ktmnotification_packet_t.hpp │ │ │ ├── ktmobject_cursor_t.hpp │ │ │ ├── ktmobject_namespace_link_t.hpp │ │ │ ├── ktmobject_namespace_t.hpp │ │ │ ├── ktmobject_type_t.hpp │ │ │ ├── ktopology_level_t.hpp │ │ │ ├── ktransaction_history_t.hpp │ │ │ ├── ktransaction_outcome_t.hpp │ │ │ ├── ktransaction_state_t.hpp │ │ │ ├── ktransaction_t.hpp │ │ │ ├── ktransition_stack_t.hpp │ │ │ ├── ktss64_t.hpp │ │ │ ├── kums_context_header_t.hpp │ │ │ ├── kuser_shared_data_t.hpp │ │ │ ├── kwait_block_state_t.hpp │ │ │ ├── kwait_block_t.hpp │ │ │ ├── kwait_chain_entry_t.hpp │ │ │ ├── kwait_chain_t.hpp │ │ │ ├── kwait_reason_t.hpp │ │ │ ├── kwait_state_t.hpp │ │ │ ├── kwait_status_register_t.hpp │ │ │ ├── large_mcb_t.hpp │ │ │ ├── lazy_writer_t.hpp │ │ │ ├── lba_status_descriptor_t.hpp │ │ │ ├── lba_status_list_header_t.hpp │ │ │ ├── leap_second_data_t.hpp │ │ │ ├── learning_mode_data_t.hpp │ │ │ ├── licensing_tamper_state_t.hpp │ │ │ ├── link_share_access_t.hpp │ │ │ ├── linked_device_t.hpp │ │ │ ├── list_entry32_t.hpp │ │ │ ├── list_entry64_t.hpp │ │ │ ├── loader_bugcheck_parameters_t.hpp │ │ │ ├── loader_feature_configuration_diagnostic_information_t.hpp │ │ │ ├── loader_feature_configuration_information_t.hpp │ │ │ ├── loader_hive_recovery_info_t.hpp │ │ │ ├── loader_memory_range_t.hpp │ │ │ ├── loader_parameter_block_t.hpp │ │ │ ├── loader_parameter_ci_extension_t.hpp │ │ │ ├── loader_parameter_extension_t.hpp │ │ │ ├── loader_parameter_hypervisor_extension_t.hpp │ │ │ ├── loader_partition_information_ex_t.hpp │ │ │ ├── loader_performance_data_t.hpp │ │ │ ├── loader_reset_reason_t.hpp │ │ │ ├── local_nmisource_t.hpp │ │ │ ├── local_x2apic_nmisource_t.hpp │ │ │ ├── lock_header_t.hpp │ │ │ ├── lock_operation_t.hpp │ │ │ ├── lock_tracker_t.hpp │ │ │ ├── log_handle_context_t.hpp │ │ │ ├── log_page_logical_block_provisioning_t.hpp │ │ │ ├── log_page_t.hpp │ │ │ ├── log_parameter_header_t.hpp │ │ │ ├── log_parameter_t.hpp │ │ │ ├── log_parameter_threshold_resource_count_t.hpp │ │ │ ├── logged_stream_callback_v1_t.hpp │ │ │ ├── logged_stream_callback_v2_t.hpp │ │ │ ├── logical_processor_relationship_t.hpp │ │ │ ├── lookaside_list_ex_t.hpp │ │ │ ├── luid_and_attributes_t.hpp │ │ │ ├── luid_t.hpp │ │ │ ├── machine_check_context_t.hpp │ │ │ ├── machine_check_nesting_level_t.hpp │ │ │ ├── machine_frame_t.hpp │ │ │ ├── magic/ │ │ │ │ ├── access_reasons_t.end.hpp │ │ │ │ ├── access_reasons_t.start.hpp │ │ │ │ ├── access_state_t.end.hpp │ │ │ │ ├── access_state_t.start.hpp │ │ │ │ ├── acl_t.end.hpp │ │ │ │ ├── acl_t.start.hpp │ │ │ │ ├── activation_context_stack32_t.end.hpp │ │ │ │ ├── activation_context_stack32_t.start.hpp │ │ │ │ ├── activation_context_stack64_t.end.hpp │ │ │ │ ├── activation_context_stack64_t.start.hpp │ │ │ │ ├── activation_context_stack_t.end.hpp │ │ │ │ ├── activation_context_stack_t.start.hpp │ │ │ │ ├── adapter_object_t.end.hpp │ │ │ │ ├── adapter_object_t.start.hpp │ │ │ │ ├── additional_fdo_data_t.end.hpp │ │ │ │ ├── additional_fdo_data_t.start.hpp │ │ │ │ ├── addrinfoex_w_t.end.hpp │ │ │ │ ├── addrinfoex_w_t.start.hpp │ │ │ │ ├── aer_bridge_descriptor_flags_t.end.hpp │ │ │ │ ├── aer_bridge_descriptor_flags_t.start.hpp │ │ │ │ ├── aer_endpoint_descriptor_flags_t.end.hpp │ │ │ │ ├── aer_endpoint_descriptor_flags_t.start.hpp │ │ │ │ ├── aer_rootport_descriptor_flags_t.end.hpp │ │ │ │ ├── aer_rootport_descriptor_flags_t.start.hpp │ │ │ │ ├── aggregated_payload_filter_t.end.hpp │ │ │ │ ├── aggregated_payload_filter_t.start.hpp │ │ │ │ ├── amd64_dbgkd_control_set_t.end.hpp │ │ │ │ ├── amd64_dbgkd_control_set_t.start.hpp │ │ │ │ ├── amd64_mxcsr_reg_t.end.hpp │ │ │ │ ├── amd64_mxcsr_reg_t.start.hpp │ │ │ │ ├── amd_mca_ipid_t.end.hpp │ │ │ │ ├── amd_mca_ipid_t.start.hpp │ │ │ │ ├── api.end.hpp │ │ │ │ ├── api.start.hpp │ │ │ │ ├── api_set_namespace_t.end.hpp │ │ │ │ ├── api_set_namespace_t.start.hpp │ │ │ │ ├── arc_disk_information_t.end.hpp │ │ │ │ ├── arc_disk_information_t.start.hpp │ │ │ │ ├── arm64_dbgkd_control_set_t.end.hpp │ │ │ │ ├── arm64_dbgkd_control_set_t.start.hpp │ │ │ │ ├── arm64_fpcr_reg_t.end.hpp │ │ │ │ ├── arm64_fpcr_reg_t.start.hpp │ │ │ │ ├── arm64_fpsr_reg_t.end.hpp │ │ │ │ ├── arm64_fpsr_reg_t.start.hpp │ │ │ │ ├── arm_dbgkd_control_set_t.end.hpp │ │ │ │ ├── arm_dbgkd_control_set_t.start.hpp │ │ │ │ ├── arm_loader_block_t.end.hpp │ │ │ │ ├── arm_loader_block_t.start.hpp │ │ │ │ ├── armce_dbgkd_control_set_t.end.hpp │ │ │ │ ├── armce_dbgkd_control_set_t.start.hpp │ │ │ │ ├── async_lazywrite_thread_stats_t.end.hpp │ │ │ │ ├── async_lazywrite_thread_stats_t.start.hpp │ │ │ │ ├── async_read_thread_stats_t.end.hpp │ │ │ │ ├── async_read_thread_stats_t.start.hpp │ │ │ │ ├── ata_pass_through_direct32_t.end.hpp │ │ │ │ ├── ata_pass_through_direct32_t.start.hpp │ │ │ │ ├── ata_pass_through_direct_t.end.hpp │ │ │ │ ├── ata_pass_through_direct_t.start.hpp │ │ │ │ ├── ata_pass_through_ex32_t.end.hpp │ │ │ │ ├── ata_pass_through_ex32_t.start.hpp │ │ │ │ ├── ata_pass_through_ex_t.end.hpp │ │ │ │ ├── ata_pass_through_ex_t.start.hpp │ │ │ │ ├── atomic_create_ecp_context_t.end.hpp │ │ │ │ ├── atomic_create_ecp_context_t.start.hpp │ │ │ │ ├── audio_output_t.end.hpp │ │ │ │ ├── audio_output_t.start.hpp │ │ │ │ ├── authzbasep_claim_attributes_collection_t.end.hpp │ │ │ │ ├── authzbasep_claim_attributes_collection_t.start.hpp │ │ │ │ ├── authzbasep_security_attributes_information_t.end.hpp │ │ │ │ ├── authzbasep_security_attributes_information_t.start.hpp │ │ │ │ ├── background_scan_status_t.end.hpp │ │ │ │ ├── background_scan_status_t.start.hpp │ │ │ │ ├── backlight_reduction_gamma_ramp_t.end.hpp │ │ │ │ ├── backlight_reduction_gamma_ramp_t.start.hpp │ │ │ │ ├── bank_position_t.end.hpp │ │ │ │ ├── bank_position_t.start.hpp │ │ │ │ ├── base_mcb_t.end.hpp │ │ │ │ ├── base_mcb_t.start.hpp │ │ │ │ ├── battery_reporting_scale_t.end.hpp │ │ │ │ ├── battery_reporting_scale_t.start.hpp │ │ │ │ ├── bcb_t.end.hpp │ │ │ │ ├── bcb_t.start.hpp │ │ │ │ ├── bdcb_image_information_t.end.hpp │ │ │ │ ├── bdcb_image_information_t.start.hpp │ │ │ │ ├── bin_count_t.end.hpp │ │ │ │ ├── bin_count_t.start.hpp │ │ │ │ ├── bin_range_t.end.hpp │ │ │ │ ├── bin_range_t.start.hpp │ │ │ │ ├── bin_results_t.end.hpp │ │ │ │ ├── bin_results_t.start.hpp │ │ │ │ ├── bitmap_range_t.end.hpp │ │ │ │ ├── bitmap_range_t.start.hpp │ │ │ │ ├── blob_counters_t.end.hpp │ │ │ │ ├── blob_counters_t.start.hpp │ │ │ │ ├── blob_t.end.hpp │ │ │ │ ├── blob_t.start.hpp │ │ │ │ ├── blob_type_t.end.hpp │ │ │ │ ├── blob_type_t.start.hpp │ │ │ │ ├── bootdisk_information_lite_t.end.hpp │ │ │ │ ├── bootdisk_information_lite_t.start.hpp │ │ │ │ ├── bootdisk_information_t.end.hpp │ │ │ │ ├── bootdisk_information_t.start.hpp │ │ │ │ ├── brightness_level_t.end.hpp │ │ │ │ ├── brightness_level_t.start.hpp │ │ │ │ ├── brightness_nit_range_t.end.hpp │ │ │ │ ├── brightness_nit_range_t.start.hpp │ │ │ │ ├── brightness_nit_ranges_t.end.hpp │ │ │ │ ├── brightness_nit_ranges_t.start.hpp │ │ │ │ ├── bus_extension_list_t.end.hpp │ │ │ │ ├── bus_extension_list_t.start.hpp │ │ │ │ ├── bus_handler_t.end.hpp │ │ │ │ ├── bus_handler_t.start.hpp │ │ │ │ ├── cache_descriptor_t.end.hpp │ │ │ │ ├── cache_descriptor_t.start.hpp │ │ │ │ ├── cache_manager_callback_functions_t.end.hpp │ │ │ │ ├── cache_manager_callback_functions_t.start.hpp │ │ │ │ ├── cache_manager_callbacks_ex_t.end.hpp │ │ │ │ ├── cache_manager_callbacks_ex_t.start.hpp │ │ │ │ ├── cache_manager_callbacks_t.end.hpp │ │ │ │ ├── cache_manager_callbacks_t.start.hpp │ │ │ │ ├── cache_relationship_t.end.hpp │ │ │ │ ├── cache_relationship_t.start.hpp │ │ │ │ ├── cache_uninitialize_event_t.end.hpp │ │ │ │ ├── cache_uninitialize_event_t.start.hpp │ │ │ │ ├── cached_child_list_t.end.hpp │ │ │ │ ├── cached_child_list_t.start.hpp │ │ │ │ ├── cached_kstack_list_t.end.hpp │ │ │ │ ├── cached_kstack_list_t.start.hpp │ │ │ │ ├── call_hash_entry_t.end.hpp │ │ │ │ ├── call_hash_entry_t.start.hpp │ │ │ │ ├── call_performance_data_t.end.hpp │ │ │ │ ├── call_performance_data_t.start.hpp │ │ │ │ ├── cast_guard_vftables_t.end.hpp │ │ │ │ ├── cast_guard_vftables_t.start.hpp │ │ │ │ ├── cdaudio_control_page_t.end.hpp │ │ │ │ ├── cdaudio_control_page_t.start.hpp │ │ │ │ ├── cdb32_t.end.hpp │ │ │ │ ├── cdb32_t.start.hpp │ │ │ │ ├── cdb32generic_t.end.hpp │ │ │ │ ├── cdb32generic_t.start.hpp │ │ │ │ ├── cdda_output_port_t.end.hpp │ │ │ │ ├── cdda_output_port_t.start.hpp │ │ │ │ ├── cdrom_disk_data_t.end.hpp │ │ │ │ ├── cdrom_disk_data_t.start.hpp │ │ │ │ ├── cdrom_exception_performance_descriptor_t.end.hpp │ │ │ │ ├── cdrom_exception_performance_descriptor_t.start.hpp │ │ │ │ ├── cdrom_exclusive_access_t.end.hpp │ │ │ │ ├── cdrom_exclusive_access_t.start.hpp │ │ │ │ ├── cdrom_exclusive_lock_state_t.end.hpp │ │ │ │ ├── cdrom_exclusive_lock_state_t.start.hpp │ │ │ │ ├── cdrom_exclusive_lock_t.end.hpp │ │ │ │ ├── cdrom_exclusive_lock_t.start.hpp │ │ │ │ ├── cdrom_nominal_performance_descriptor_t.end.hpp │ │ │ │ ├── cdrom_nominal_performance_descriptor_t.start.hpp │ │ │ │ ├── cdrom_performance_header_t.end.hpp │ │ │ │ ├── cdrom_performance_header_t.start.hpp │ │ │ │ ├── cdrom_performance_request_t.end.hpp │ │ │ │ ├── cdrom_performance_request_t.start.hpp │ │ │ │ ├── cdrom_play_audio_msf_t.end.hpp │ │ │ │ ├── cdrom_play_audio_msf_t.start.hpp │ │ │ │ ├── cdrom_read_toc_ex_t.end.hpp │ │ │ │ ├── cdrom_read_toc_ex_t.start.hpp │ │ │ │ ├── cdrom_seek_audio_msf_t.end.hpp │ │ │ │ ├── cdrom_seek_audio_msf_t.start.hpp │ │ │ │ ├── cdrom_set_speed_t.end.hpp │ │ │ │ ├── cdrom_set_speed_t.start.hpp │ │ │ │ ├── cdrom_set_streaming_t.end.hpp │ │ │ │ ├── cdrom_set_streaming_t.start.hpp │ │ │ │ ├── cdrom_simple_opc_info_t.end.hpp │ │ │ │ ├── cdrom_simple_opc_info_t.start.hpp │ │ │ │ ├── cdrom_streaming_control_t.end.hpp │ │ │ │ ├── cdrom_streaming_control_t.start.hpp │ │ │ │ ├── cdrom_sub_q_data_format_t.end.hpp │ │ │ │ ├── cdrom_sub_q_data_format_t.start.hpp │ │ │ │ ├── cdrom_toc_atip_data_block_t.end.hpp │ │ │ │ ├── cdrom_toc_atip_data_block_t.start.hpp │ │ │ │ ├── cdrom_toc_atip_data_t.end.hpp │ │ │ │ ├── cdrom_toc_atip_data_t.start.hpp │ │ │ │ ├── cdrom_toc_cd_text_data_block_t.end.hpp │ │ │ │ ├── cdrom_toc_cd_text_data_block_t.start.hpp │ │ │ │ ├── cdrom_toc_cd_text_data_t.end.hpp │ │ │ │ ├── cdrom_toc_cd_text_data_t.start.hpp │ │ │ │ ├── cdrom_toc_full_toc_data_block_t.end.hpp │ │ │ │ ├── cdrom_toc_full_toc_data_block_t.start.hpp │ │ │ │ ├── cdrom_toc_full_toc_data_t.end.hpp │ │ │ │ ├── cdrom_toc_full_toc_data_t.start.hpp │ │ │ │ ├── cdrom_toc_pma_data_t.end.hpp │ │ │ │ ├── cdrom_toc_pma_data_t.start.hpp │ │ │ │ ├── cdrom_toc_session_data_t.end.hpp │ │ │ │ ├── cdrom_toc_session_data_t.start.hpp │ │ │ │ ├── cdrom_toc_t.end.hpp │ │ │ │ ├── cdrom_toc_t.start.hpp │ │ │ │ ├── cdrom_write_speed_descriptor_t.end.hpp │ │ │ │ ├── cdrom_write_speed_descriptor_t.start.hpp │ │ │ │ ├── cdrom_write_speed_request_t.end.hpp │ │ │ │ ├── cdrom_write_speed_request_t.start.hpp │ │ │ │ ├── cdvd_capabilities_page_t.end.hpp │ │ │ │ ├── cdvd_capabilities_page_t.start.hpp │ │ │ │ ├── cdvd_challenge_key_data_t.end.hpp │ │ │ │ ├── cdvd_challenge_key_data_t.start.hpp │ │ │ │ ├── cdvd_feature_set_page_t.end.hpp │ │ │ │ ├── cdvd_feature_set_page_t.start.hpp │ │ │ │ ├── cdvd_inactivity_timeout_page_t.end.hpp │ │ │ │ ├── cdvd_inactivity_timeout_page_t.start.hpp │ │ │ │ ├── cdvd_key_data_t.end.hpp │ │ │ │ ├── cdvd_key_data_t.start.hpp │ │ │ │ ├── cdvd_key_header_t.end.hpp │ │ │ │ ├── cdvd_key_header_t.start.hpp │ │ │ │ ├── cdvd_report_agid_data_t.end.hpp │ │ │ │ ├── cdvd_report_agid_data_t.start.hpp │ │ │ │ ├── cdvd_report_asf_data_t.end.hpp │ │ │ │ ├── cdvd_report_asf_data_t.start.hpp │ │ │ │ ├── cdvd_title_key_header_t.end.hpp │ │ │ │ ├── cdvd_title_key_header_t.start.hpp │ │ │ │ ├── cell_data_t.end.hpp │ │ │ │ ├── cell_data_t.start.hpp │ │ │ │ ├── change_t.end.hpp │ │ │ │ ├── change_t.start.hpp │ │ │ │ ├── char_image_info_t.end.hpp │ │ │ │ ├── char_image_info_t.start.hpp │ │ │ │ ├── child_list_t.end.hpp │ │ │ │ ├── child_list_t.start.hpp │ │ │ │ ├── chromaticity_coordinate_t.end.hpp │ │ │ │ ├── chromaticity_coordinate_t.start.hpp │ │ │ │ ├── class_dev_info_t.end.hpp │ │ │ │ ├── class_dev_info_t.start.hpp │ │ │ │ ├── class_driver_extension_t.end.hpp │ │ │ │ ├── class_driver_extension_t.start.hpp │ │ │ │ ├── class_function_support_info_t.end.hpp │ │ │ │ ├── class_function_support_info_t.start.hpp │ │ │ │ ├── class_init_data_t.end.hpp │ │ │ │ ├── class_init_data_t.start.hpp │ │ │ │ ├── class_interpret_sense_info2_t.end.hpp │ │ │ │ ├── class_interpret_sense_info2_t.start.hpp │ │ │ │ ├── class_media_change_context_t.end.hpp │ │ │ │ ├── class_media_change_context_t.start.hpp │ │ │ │ ├── class_power_context_t.end.hpp │ │ │ │ ├── class_power_context_t.start.hpp │ │ │ │ ├── class_power_options_t.end.hpp │ │ │ │ ├── class_power_options_t.start.hpp │ │ │ │ ├── class_query_wmi_reginfo_ex_list_t.end.hpp │ │ │ │ ├── class_query_wmi_reginfo_ex_list_t.start.hpp │ │ │ │ ├── class_read_capacity16_data_t.end.hpp │ │ │ │ ├── class_read_capacity16_data_t.start.hpp │ │ │ │ ├── class_vpd_b0_data_t.end.hpp │ │ │ │ ├── class_vpd_b0_data_t.start.hpp │ │ │ │ ├── class_vpd_b1_data_t.end.hpp │ │ │ │ ├── class_vpd_b1_data_t.start.hpp │ │ │ │ ├── class_vpd_b2_data_t.end.hpp │ │ │ │ ├── class_vpd_b2_data_t.start.hpp │ │ │ │ ├── class_vpd_ecop_block_device_rod_limits_t.end.hpp │ │ │ │ ├── class_vpd_ecop_block_device_rod_limits_t.start.hpp │ │ │ │ ├── class_wmi_info_t.end.hpp │ │ │ │ ├── class_wmi_info_t.start.hpp │ │ │ │ ├── class_working_set_t.end.hpp │ │ │ │ ├── class_working_set_t.start.hpp │ │ │ │ ├── classpnp_scan_for_special_info_t.end.hpp │ │ │ │ ├── classpnp_scan_for_special_info_t.start.hpp │ │ │ │ ├── client_id32_t.end.hpp │ │ │ │ ├── client_id32_t.start.hpp │ │ │ │ ├── client_id64_t.end.hpp │ │ │ │ ├── client_id64_t.start.hpp │ │ │ │ ├── client_id_t.end.hpp │ │ │ │ ├── client_id_t.start.hpp │ │ │ │ ├── cmhive_t.end.hpp │ │ │ │ ├── cmhive_t.start.hpp │ │ │ │ ├── cmsi_process_tuple_t.end.hpp │ │ │ │ ├── cmsi_process_tuple_t.start.hpp │ │ │ │ ├── colorspace_transform_1dlut_cap_t.end.hpp │ │ │ │ ├── colorspace_transform_1dlut_cap_t.start.hpp │ │ │ │ ├── colorspace_transform_3x4_t.end.hpp │ │ │ │ ├── colorspace_transform_3x4_t.start.hpp │ │ │ │ ├── colorspace_transform_data_cap_t.end.hpp │ │ │ │ ├── colorspace_transform_data_cap_t.start.hpp │ │ │ │ ├── colorspace_transform_matrix_cap_t.end.hpp │ │ │ │ ├── colorspace_transform_matrix_cap_t.start.hpp │ │ │ │ ├── colorspace_transform_matrix_v2_t.end.hpp │ │ │ │ ├── colorspace_transform_matrix_v2_t.start.hpp │ │ │ │ ├── colorspace_transform_set_input_t.end.hpp │ │ │ │ ├── colorspace_transform_set_input_t.start.hpp │ │ │ │ ├── colorspace_transform_t.end.hpp │ │ │ │ ├── colorspace_transform_t.start.hpp │ │ │ │ ├── colorspace_transform_target_caps_t.end.hpp │ │ │ │ ├── colorspace_transform_target_caps_t.start.hpp │ │ │ │ ├── common_device_extension_t.end.hpp │ │ │ │ ├── common_device_extension_t.start.hpp │ │ │ │ ├── completion_context_t.end.hpp │ │ │ │ ├── completion_context_t.start.hpp │ │ │ │ ├── compressed_data_info_t.end.hpp │ │ │ │ ├── compressed_data_info_t.start.hpp │ │ │ │ ├── configuration_component_data_t.end.hpp │ │ │ │ ├── configuration_component_data_t.start.hpp │ │ │ │ ├── configuration_component_t.end.hpp │ │ │ │ ├── configuration_component_t.start.hpp │ │ │ │ ├── configuration_information_t.end.hpp │ │ │ │ ├── configuration_information_t.start.hpp │ │ │ │ ├── control_area_t.end.hpp │ │ │ │ ├── control_area_t.start.hpp │ │ │ │ ├── controller_object_t.end.hpp │ │ │ │ ├── controller_object_t.start.hpp │ │ │ │ ├── copy_information_t.end.hpp │ │ │ │ ├── copy_information_t.start.hpp │ │ │ │ ├── correlation_vector_t.end.hpp │ │ │ │ ├── correlation_vector_t.start.hpp │ │ │ │ ├── counted_reason_context_t.end.hpp │ │ │ │ ├── counted_reason_context_t.start.hpp │ │ │ │ ├── counter_reading_t.end.hpp │ │ │ │ ├── counter_reading_t.start.hpp │ │ │ │ ├── cptableinfo_t.end.hpp │ │ │ │ ├── cptableinfo_t.start.hpp │ │ │ │ ├── cpu_info_t.end.hpp │ │ │ │ ├── cpu_info_t.start.hpp │ │ │ │ ├── crash_module32_t.end.hpp │ │ │ │ ├── crash_module32_t.start.hpp │ │ │ │ ├── crash_module64_t.end.hpp │ │ │ │ ├── crash_module64_t.start.hpp │ │ │ │ ├── crash_module_t.end.hpp │ │ │ │ ├── crash_module_t.start.hpp │ │ │ │ ├── crash_thread32_t.end.hpp │ │ │ │ ├── crash_thread32_t.start.hpp │ │ │ │ ├── crash_thread64_t.end.hpp │ │ │ │ ├── crash_thread64_t.start.hpp │ │ │ │ ├── crash_thread_t.end.hpp │ │ │ │ ├── crash_thread_t.start.hpp │ │ │ │ ├── crashdump_version_info_t.end.hpp │ │ │ │ ├── crashdump_version_info_t.start.hpp │ │ │ │ ├── create_disk_gpt_t.end.hpp │ │ │ │ ├── create_disk_gpt_t.start.hpp │ │ │ │ ├── create_disk_mbr_t.end.hpp │ │ │ │ ├── create_disk_mbr_t.start.hpp │ │ │ │ ├── create_disk_t.end.hpp │ │ │ │ ├── create_disk_t.start.hpp │ │ │ │ ├── create_redirection_ecp_context_t.end.hpp │ │ │ │ ├── create_redirection_ecp_context_t.start.hpp │ │ │ │ ├── critical_process_exception_data_t.end.hpp │ │ │ │ ├── critical_process_exception_data_t.start.hpp │ │ │ │ ├── crt_locale_data_public_t.end.hpp │ │ │ │ ├── crt_locale_data_public_t.start.hpp │ │ │ │ ├── crt_locale_pointers_t.end.hpp │ │ │ │ ├── crt_locale_pointers_t.start.hpp │ │ │ │ ├── csv_down_level_open_ecp_context_t.end.hpp │ │ │ │ ├── csv_down_level_open_ecp_context_t.start.hpp │ │ │ │ ├── csv_query_file_revision_ecp_context_file_id_128_t.end.hpp │ │ │ │ ├── csv_query_file_revision_ecp_context_file_id_128_t.start.hpp │ │ │ │ ├── csv_query_file_revision_ecp_context_t.end.hpp │ │ │ │ ├── csv_query_file_revision_ecp_context_t.start.hpp │ │ │ │ ├── csv_set_handle_properties_ecp_context_t.end.hpp │ │ │ │ ├── csv_set_handle_properties_ecp_context_t.start.hpp │ │ │ │ ├── curdir_t.end.hpp │ │ │ │ ├── curdir_t.start.hpp │ │ │ │ ├── current_internal_status_parameter_data_t.end.hpp │ │ │ │ ├── current_internal_status_parameter_data_t.start.hpp │ │ │ │ ├── custom_system_event_trigger_config_t.end.hpp │ │ │ │ ├── custom_system_event_trigger_config_t.start.hpp │ │ │ │ ├── cvdd_t.end.hpp │ │ │ │ ├── cvdd_t.start.hpp │ │ │ │ ├── d3dcolorvalue_t.end.hpp │ │ │ │ ├── d3dcolorvalue_t.start.hpp │ │ │ │ ├── d3dddiarg_createresource2_t.end.hpp │ │ │ │ ├── d3dddiarg_createresource2_t.start.hpp │ │ │ │ ├── d3dddiarg_createresource_t.end.hpp │ │ │ │ ├── d3dddiarg_createresource_t.start.hpp │ │ │ │ ├── d3dddicb_destroyallocation2flags_t.end.hpp │ │ │ │ ├── d3dddicb_destroyallocation2flags_t.start.hpp │ │ │ │ ├── d3dddicb_lock2flags_t.end.hpp │ │ │ │ ├── d3dddicb_lock2flags_t.start.hpp │ │ │ │ ├── d3dddicb_lockflags_t.end.hpp │ │ │ │ ├── d3dddicb_lockflags_t.start.hpp │ │ │ │ ├── d3dddicb_signalflags_t.end.hpp │ │ │ │ ├── d3dddicb_signalflags_t.start.hpp │ │ │ │ ├── d3dddigpuvirtualaddress_protection_type_t.end.hpp │ │ │ │ ├── d3dddigpuvirtualaddress_protection_type_t.start.hpp │ │ │ │ ├── d3dddirect_t.end.hpp │ │ │ │ ├── d3dddirect_t.start.hpp │ │ │ │ ├── d3dgpu_physical_address_t.end.hpp │ │ │ │ ├── d3dgpu_physical_address_t.start.hpp │ │ │ │ ├── d3dkm_transparentbltflags_t.end.hpp │ │ │ │ ├── d3dkm_transparentbltflags_t.start.hpp │ │ │ │ ├── data_block_header_t.end.hpp │ │ │ │ ├── data_block_header_t.start.hpp │ │ │ │ ├── data_stream_t.end.hpp │ │ │ │ ├── data_stream_t.start.hpp │ │ │ │ ├── date_of_manufacture_t.end.hpp │ │ │ │ ├── date_of_manufacture_t.start.hpp │ │ │ │ ├── dbgui_create_process_t.end.hpp │ │ │ │ ├── dbgui_create_process_t.start.hpp │ │ │ │ ├── dbgui_create_thread_t.end.hpp │ │ │ │ ├── dbgui_create_thread_t.start.hpp │ │ │ │ ├── dbgui_wait_state_change_t.end.hpp │ │ │ │ ├── dbgui_wait_state_change_t.start.hpp │ │ │ │ ├── ddc_control_t.end.hpp │ │ │ │ ├── ddc_control_t.start.hpp │ │ │ │ ├── debug_device_address_t.end.hpp │ │ │ │ ├── debug_device_address_t.start.hpp │ │ │ │ ├── debug_device_descriptor_t.end.hpp │ │ │ │ ├── debug_device_descriptor_t.start.hpp │ │ │ │ ├── debug_iommu_efi_data_t.end.hpp │ │ │ │ ├── debug_iommu_efi_data_t.start.hpp │ │ │ │ ├── debug_memory_requirements_t.end.hpp │ │ │ │ ├── debug_memory_requirements_t.start.hpp │ │ │ │ ├── debug_transport_data_t.end.hpp │ │ │ │ ├── debug_transport_data_t.start.hpp │ │ │ │ ├── deferred_write_t.end.hpp │ │ │ │ ├── deferred_write_t.start.hpp │ │ │ │ ├── delay_ack_fo_t.end.hpp │ │ │ │ ├── delay_ack_fo_t.start.hpp │ │ │ │ ├── description_header_t.end.hpp │ │ │ │ ├── description_header_t.start.hpp │ │ │ │ ├── desired_storage_class_t.end.hpp │ │ │ │ ├── desired_storage_class_t.start.hpp │ │ │ │ ├── device_capabilities_t.end.hpp │ │ │ │ ├── device_capabilities_t.start.hpp │ │ │ │ ├── device_copy_offload_descriptor_t.end.hpp │ │ │ │ ├── device_copy_offload_descriptor_t.start.hpp │ │ │ │ ├── device_data_set_lb_provisioning_state_t.end.hpp │ │ │ │ ├── device_data_set_lb_provisioning_state_t.start.hpp │ │ │ │ ├── device_data_set_lb_provisioning_state_v2_t.end.hpp │ │ │ │ ├── device_data_set_lb_provisioning_state_v2_t.start.hpp │ │ │ │ ├── device_data_set_lbp_state_parameters_t.end.hpp │ │ │ │ ├── device_data_set_lbp_state_parameters_t.start.hpp │ │ │ │ ├── device_data_set_range_t.end.hpp │ │ │ │ ├── device_data_set_range_t.start.hpp │ │ │ │ ├── device_data_set_repair_output_t.end.hpp │ │ │ │ ├── device_data_set_repair_output_t.start.hpp │ │ │ │ ├── device_data_set_repair_parameters_t.end.hpp │ │ │ │ ├── device_data_set_repair_parameters_t.start.hpp │ │ │ │ ├── device_data_set_scrub_ex_output_t.end.hpp │ │ │ │ ├── device_data_set_scrub_ex_output_t.start.hpp │ │ │ │ ├── device_data_set_scrub_output_t.end.hpp │ │ │ │ ├── device_data_set_scrub_output_t.start.hpp │ │ │ │ ├── device_data_set_topology_id_query_output_t.end.hpp │ │ │ │ ├── device_data_set_topology_id_query_output_t.start.hpp │ │ │ │ ├── device_description_t.end.hpp │ │ │ │ ├── device_description_t.start.hpp │ │ │ │ ├── device_dsm_conversion_output_t.end.hpp │ │ │ │ ├── device_dsm_conversion_output_t.start.hpp │ │ │ │ ├── device_dsm_definition_t.end.hpp │ │ │ │ ├── device_dsm_definition_t.start.hpp │ │ │ │ ├── device_dsm_free_space_output_t.end.hpp │ │ │ │ ├── device_dsm_free_space_output_t.start.hpp │ │ │ │ ├── device_dsm_lost_query_output_t.end.hpp │ │ │ │ ├── device_dsm_lost_query_output_t.start.hpp │ │ │ │ ├── device_dsm_lost_query_parameters_t.end.hpp │ │ │ │ ├── device_dsm_lost_query_parameters_t.start.hpp │ │ │ │ ├── device_dsm_notification_parameters_t.end.hpp │ │ │ │ ├── device_dsm_notification_parameters_t.start.hpp │ │ │ │ ├── device_dsm_nvcache_change_priority_parameters_t.end.hpp │ │ │ │ ├── device_dsm_nvcache_change_priority_parameters_t.start.hpp │ │ │ │ ├── device_dsm_offload_read_parameters_t.end.hpp │ │ │ │ ├── device_dsm_offload_read_parameters_t.start.hpp │ │ │ │ ├── device_dsm_offload_write_parameters_t.end.hpp │ │ │ │ ├── device_dsm_offload_write_parameters_t.start.hpp │ │ │ │ ├── device_dsm_physical_addresses_output_t.end.hpp │ │ │ │ ├── device_dsm_physical_addresses_output_t.start.hpp │ │ │ │ ├── device_dsm_range_error_info_t.end.hpp │ │ │ │ ├── device_dsm_range_error_info_t.start.hpp │ │ │ │ ├── device_dsm_report_zones_data_t.end.hpp │ │ │ │ ├── device_dsm_report_zones_data_t.start.hpp │ │ │ │ ├── device_dsm_report_zones_parameters_t.end.hpp │ │ │ │ ├── device_dsm_report_zones_parameters_t.start.hpp │ │ │ │ ├── device_dsm_tiering_query_input_t.end.hpp │ │ │ │ ├── device_dsm_tiering_query_input_t.start.hpp │ │ │ │ ├── device_dsm_tiering_query_output_t.end.hpp │ │ │ │ ├── device_dsm_tiering_query_output_t.start.hpp │ │ │ │ ├── device_fault_configuration_t.end.hpp │ │ │ │ ├── device_fault_configuration_t.start.hpp │ │ │ │ ├── device_flags_t.end.hpp │ │ │ │ ├── device_flags_t.start.hpp │ │ │ │ ├── device_internal_status_data_t.end.hpp │ │ │ │ ├── device_internal_status_data_t.start.hpp │ │ │ │ ├── device_lb_provisioning_descriptor_t.end.hpp │ │ │ │ ├── device_lb_provisioning_descriptor_t.start.hpp │ │ │ │ ├── device_location_t.end.hpp │ │ │ │ ├── device_location_t.start.hpp │ │ │ │ ├── device_manage_data_set_attributes_output_t.end.hpp │ │ │ │ ├── device_manage_data_set_attributes_output_t.start.hpp │ │ │ │ ├── device_manage_data_set_attributes_t.end.hpp │ │ │ │ ├── device_manage_data_set_attributes_t.start.hpp │ │ │ │ ├── device_map_t.end.hpp │ │ │ │ ├── device_map_t.start.hpp │ │ │ │ ├── device_media_info_t.end.hpp │ │ │ │ ├── device_media_info_t.start.hpp │ │ │ │ ├── device_node_t.end.hpp │ │ │ │ ├── device_node_t.start.hpp │ │ │ │ ├── device_object_list_entry_t.end.hpp │ │ │ │ ├── device_object_list_entry_t.start.hpp │ │ │ │ ├── device_object_list_t.end.hpp │ │ │ │ ├── device_object_list_t.start.hpp │ │ │ │ ├── device_object_power_extension_t.end.hpp │ │ │ │ ├── device_object_power_extension_t.start.hpp │ │ │ │ ├── device_object_t.end.hpp │ │ │ │ ├── device_object_t.start.hpp │ │ │ │ ├── device_power_descriptor_t.end.hpp │ │ │ │ ├── device_power_descriptor_t.start.hpp │ │ │ │ ├── device_relations_t.end.hpp │ │ │ │ ├── device_relations_t.start.hpp │ │ │ │ ├── device_seek_penalty_descriptor_t.end.hpp │ │ │ │ ├── device_seek_penalty_descriptor_t.start.hpp │ │ │ │ ├── device_storage_address_range_t.end.hpp │ │ │ │ ├── device_storage_address_range_t.start.hpp │ │ │ │ ├── device_storage_range_attributes_t.end.hpp │ │ │ │ ├── device_storage_range_attributes_t.start.hpp │ │ │ │ ├── device_trim_descriptor_t.end.hpp │ │ │ │ ├── device_trim_descriptor_t.start.hpp │ │ │ │ ├── device_write_aggregation_descriptor_t.end.hpp │ │ │ │ ├── device_write_aggregation_descriptor_t.start.hpp │ │ │ │ ├── devicedump_private_subsection_t.end.hpp │ │ │ │ ├── devicedump_private_subsection_t.start.hpp │ │ │ │ ├── devicedump_public_subsection_t.end.hpp │ │ │ │ ├── devicedump_public_subsection_t.start.hpp │ │ │ │ ├── devicedump_restricted_subsection_t.end.hpp │ │ │ │ ├── devicedump_restricted_subsection_t.start.hpp │ │ │ │ ├── devicedump_section_header_t.end.hpp │ │ │ │ ├── devicedump_section_header_t.start.hpp │ │ │ │ ├── devicedump_storagedevice_data_t.end.hpp │ │ │ │ ├── devicedump_storagedevice_data_t.start.hpp │ │ │ │ ├── devicedump_storagestack_public_dump_t.end.hpp │ │ │ │ ├── devicedump_storagestack_public_dump_t.start.hpp │ │ │ │ ├── devicedump_storagestack_public_state_record_t.end.hpp │ │ │ │ ├── devicedump_storagestack_public_state_record_t.start.hpp │ │ │ │ ├── devicedump_structure_version_t.end.hpp │ │ │ │ ├── devicedump_structure_version_t.start.hpp │ │ │ │ ├── devicedump_subsection_pointer_t.end.hpp │ │ │ │ ├── devicedump_subsection_pointer_t.start.hpp │ │ │ │ ├── devobj_extension_t.end.hpp │ │ │ │ ├── devobj_extension_t.start.hpp │ │ │ │ ├── devpropkey_t.end.hpp │ │ │ │ ├── devpropkey_t.start.hpp │ │ │ │ ├── diagnostic_buffer_t.end.hpp │ │ │ │ ├── diagnostic_buffer_t.start.hpp │ │ │ │ ├── diagnostic_context_t.end.hpp │ │ │ │ ├── diagnostic_context_t.start.hpp │ │ │ │ ├── dictionary_t.end.hpp │ │ │ │ ├── dictionary_t.start.hpp │ │ │ │ ├── dirty_page_statistics_t.end.hpp │ │ │ │ ├── dirty_page_statistics_t.start.hpp │ │ │ │ ├── dirty_page_thresholds_t.end.hpp │ │ │ │ ├── dirty_page_thresholds_t.start.hpp │ │ │ │ ├── disallowed_guids_t.end.hpp │ │ │ │ ├── disallowed_guids_t.start.hpp │ │ │ │ ├── disc_information_t.end.hpp │ │ │ │ ├── disc_information_t.start.hpp │ │ │ │ ├── disk_cache_information_t.end.hpp │ │ │ │ ├── disk_cache_information_t.start.hpp │ │ │ │ ├── disk_cache_setting_t.end.hpp │ │ │ │ ├── disk_cache_setting_t.start.hpp │ │ │ │ ├── disk_cluster_info_t.end.hpp │ │ │ │ ├── disk_cluster_info_t.start.hpp │ │ │ │ ├── disk_controller_number_t.end.hpp │ │ │ │ ├── disk_controller_number_t.start.hpp │ │ │ │ ├── disk_copy_data_parameters_t.end.hpp │ │ │ │ ├── disk_copy_data_parameters_t.start.hpp │ │ │ │ ├── disk_detection_info_t.end.hpp │ │ │ │ ├── disk_detection_info_t.start.hpp │ │ │ │ ├── disk_ex_int13_info_t.end.hpp │ │ │ │ ├── disk_ex_int13_info_t.start.hpp │ │ │ │ ├── disk_geometry_ex_t.end.hpp │ │ │ │ ├── disk_geometry_ex_t.start.hpp │ │ │ │ ├── disk_geometry_t.end.hpp │ │ │ │ ├── disk_geometry_t.start.hpp │ │ │ │ ├── disk_grow_partition_t.end.hpp │ │ │ │ ├── disk_grow_partition_t.start.hpp │ │ │ │ ├── disk_histogram_t.end.hpp │ │ │ │ ├── disk_histogram_t.start.hpp │ │ │ │ ├── disk_information_t.end.hpp │ │ │ │ ├── disk_information_t.start.hpp │ │ │ │ ├── disk_int13_info_t.end.hpp │ │ │ │ ├── disk_int13_info_t.start.hpp │ │ │ │ ├── disk_logging_t.end.hpp │ │ │ │ ├── disk_logging_t.start.hpp │ │ │ │ ├── disk_partition_info_t.end.hpp │ │ │ │ ├── disk_partition_info_t.start.hpp │ │ │ │ ├── disk_performance_info_t.end.hpp │ │ │ │ ├── disk_performance_info_t.start.hpp │ │ │ │ ├── disk_performance_parameters_t.end.hpp │ │ │ │ ├── disk_performance_parameters_t.start.hpp │ │ │ │ ├── disk_performance_t.end.hpp │ │ │ │ ├── disk_performance_t.start.hpp │ │ │ │ ├── disk_record_t.end.hpp │ │ │ │ ├── disk_record_t.start.hpp │ │ │ │ ├── disk_san_settings_t.end.hpp │ │ │ │ ├── disk_san_settings_t.start.hpp │ │ │ │ ├── disk_signature_t.end.hpp │ │ │ │ ├── disk_signature_t.start.hpp │ │ │ │ ├── disk_snapshot_info_t.end.hpp │ │ │ │ ├── disk_snapshot_info_t.start.hpp │ │ │ │ ├── dispatcher_header_t.end.hpp │ │ │ │ ├── dispatcher_header_t.start.hpp │ │ │ │ ├── display_brightness_t.end.hpp │ │ │ │ ├── display_brightness_t.start.hpp │ │ │ │ ├── displayid_detailed_timing_type_i_t.end.hpp │ │ │ │ ├── displayid_detailed_timing_type_i_t.start.hpp │ │ │ │ ├── dkgk_gamma_data_cap_t.end.hpp │ │ │ │ ├── dkgk_gamma_data_cap_t.start.hpp │ │ │ │ ├── dock_interface_t.end.hpp │ │ │ │ ├── dock_interface_t.start.hpp │ │ │ │ ├── domain_configuration_arm64_t.end.hpp │ │ │ │ ├── domain_configuration_arm64_t.start.hpp │ │ │ │ ├── domain_configuration_t.end.hpp │ │ │ │ ├── domain_configuration_t.start.hpp │ │ │ │ ├── domain_configuration_x64_t.end.hpp │ │ │ │ ├── domain_configuration_x64_t.start.hpp │ │ │ │ ├── domain_password_information_t.end.hpp │ │ │ │ ├── domain_password_information_t.start.hpp │ │ │ │ ├── drive_layout_information_ex_t.end.hpp │ │ │ │ ├── drive_layout_information_ex_t.start.hpp │ │ │ │ ├── drive_layout_information_gpt_t.end.hpp │ │ │ │ ├── drive_layout_information_gpt_t.start.hpp │ │ │ │ ├── drive_layout_information_mbr_t.end.hpp │ │ │ │ ├── drive_layout_information_mbr_t.start.hpp │ │ │ │ ├── drive_layout_information_t.end.hpp │ │ │ │ ├── drive_layout_information_t.start.hpp │ │ │ │ ├── driver_extension_t.end.hpp │ │ │ │ ├── driver_extension_t.start.hpp │ │ │ │ ├── driver_initialization_data_t.end.hpp │ │ │ │ ├── driver_initialization_data_t.start.hpp │ │ │ │ ├── driver_object_t.end.hpp │ │ │ │ ├── driver_object_t.start.hpp │ │ │ │ ├── driverstatus_t.end.hpp │ │ │ │ ├── driverstatus_t.start.hpp │ │ │ │ ├── dsm_notification_request_block_t.end.hpp │ │ │ │ ├── dsm_notification_request_block_t.start.hpp │ │ │ │ ├── dual_oplock_key_ecp_context_t.end.hpp │ │ │ │ ├── dual_oplock_key_ecp_context_t.start.hpp │ │ │ │ ├── dual_t.end.hpp │ │ │ │ ├── dual_t.start.hpp │ │ │ │ ├── dummy_file_object_t.end.hpp │ │ │ │ ├── dummy_file_object_t.start.hpp │ │ │ │ ├── dump_blob_file_header_t.end.hpp │ │ │ │ ├── dump_blob_file_header_t.start.hpp │ │ │ │ ├── dump_blob_header_t.end.hpp │ │ │ │ ├── dump_blob_header_t.start.hpp │ │ │ │ ├── dump_driver_entry32_t.end.hpp │ │ │ │ ├── dump_driver_entry32_t.start.hpp │ │ │ │ ├── dump_driver_entry64_t.end.hpp │ │ │ │ ├── dump_driver_entry64_t.start.hpp │ │ │ │ ├── dump_driver_ex_t.end.hpp │ │ │ │ ├── dump_driver_ex_t.start.hpp │ │ │ │ ├── dump_driver_t.end.hpp │ │ │ │ ├── dump_driver_t.start.hpp │ │ │ │ ├── dump_header32_t.end.hpp │ │ │ │ ├── dump_header32_t.start.hpp │ │ │ │ ├── dump_header64_t.end.hpp │ │ │ │ ├── dump_header64_t.start.hpp │ │ │ │ ├── dump_initialization_context_t.end.hpp │ │ │ │ ├── dump_initialization_context_t.start.hpp │ │ │ │ ├── dump_mm_storage32_t.end.hpp │ │ │ │ ├── dump_mm_storage32_t.start.hpp │ │ │ │ ├── dump_mm_storage64_t.end.hpp │ │ │ │ ├── dump_mm_storage64_t.start.hpp │ │ │ │ ├── dump_pointers_ex_t.end.hpp │ │ │ │ ├── dump_pointers_ex_t.start.hpp │ │ │ │ ├── dump_pointers_t.end.hpp │ │ │ │ ├── dump_pointers_t.start.hpp │ │ │ │ ├── dump_pointers_version_t.end.hpp │ │ │ │ ├── dump_pointers_version_t.start.hpp │ │ │ │ ├── dump_stack_context_t.end.hpp │ │ │ │ ├── dump_stack_context_t.start.hpp │ │ │ │ ├── dump_string_t.end.hpp │ │ │ │ ├── dump_string_t.start.hpp │ │ │ │ ├── dump_unloaded_drivers32_t.end.hpp │ │ │ │ ├── dump_unloaded_drivers32_t.start.hpp │ │ │ │ ├── dump_unloaded_drivers64_t.end.hpp │ │ │ │ ├── dump_unloaded_drivers64_t.start.hpp │ │ │ │ ├── dxgi1_1_ddi_base_functions_t.end.hpp │ │ │ │ ├── dxgi1_1_ddi_base_functions_t.start.hpp │ │ │ │ ├── dxgi1_2_ddi_base_functions_t.end.hpp │ │ │ │ ├── dxgi1_2_ddi_base_functions_t.start.hpp │ │ │ │ ├── dxgi1_3_ddi_base_functions_t.end.hpp │ │ │ │ ├── dxgi1_3_ddi_base_functions_t.start.hpp │ │ │ │ ├── dxgi1_4_ddi_base_functions_t.end.hpp │ │ │ │ ├── dxgi1_4_ddi_base_functions_t.start.hpp │ │ │ │ ├── dxgi1_5_ddi_base_functions_t.end.hpp │ │ │ │ ├── dxgi1_5_ddi_base_functions_t.start.hpp │ │ │ │ ├── dxgi1_6_1_ddi_arg_present_t.end.hpp │ │ │ │ ├── dxgi1_6_1_ddi_arg_present_t.start.hpp │ │ │ │ ├── dxgi1_6_1_ddi_arg_presentmultiplaneoverlay_t.end.hpp │ │ │ │ ├── dxgi1_6_1_ddi_arg_presentmultiplaneoverlay_t.start.hpp │ │ │ │ ├── dxgi1_6_1_ddi_base_functions_t.end.hpp │ │ │ │ ├── dxgi1_6_1_ddi_base_functions_t.start.hpp │ │ │ │ ├── dxgiddi_multiplane_overlay_allocation_info_t.end.hpp │ │ │ │ ├── dxgiddi_multiplane_overlay_allocation_info_t.start.hpp │ │ │ │ ├── dxgiddi_multiplane_overlay_plane_info_t.end.hpp │ │ │ │ ├── dxgiddi_multiplane_overlay_plane_info_t.start.hpp │ │ │ │ ├── dxgkrnl_interface_t.end.hpp │ │ │ │ ├── dxgkrnl_interface_t.start.hpp │ │ │ │ ├── dynamic_function_table_t.end.hpp │ │ │ │ ├── dynamic_function_table_t.start.hpp │ │ │ │ ├── ea_t.end.hpp │ │ │ │ ├── ea_t.start.hpp │ │ │ │ ├── ecp_list_t.end.hpp │ │ │ │ ├── ecp_list_t.start.hpp │ │ │ │ ├── ecp_open_parameters_t.end.hpp │ │ │ │ ├── ecp_open_parameters_t.start.hpp │ │ │ │ ├── ejob_t.end.hpp │ │ │ │ ├── ejob_t.start.hpp │ │ │ │ ├── emulator_access_entry_t.end.hpp │ │ │ │ ├── emulator_access_entry_t.start.hpp │ │ │ │ ├── energy_state_duration_t.end.hpp │ │ │ │ ├── energy_state_duration_t.start.hpp │ │ │ │ ├── eng_event_t.end.hpp │ │ │ │ ├── eng_event_t.start.hpp │ │ │ │ ├── enode_t.end.hpp │ │ │ │ ├── enode_t.start.hpp │ │ │ │ ├── eof_wait_block_t.end.hpp │ │ │ │ ├── eof_wait_block_t.start.hpp │ │ │ │ ├── epartition_t.end.hpp │ │ │ │ ├── epartition_t.start.hpp │ │ │ │ ├── eprocess_t.end.hpp │ │ │ │ ├── eprocess_t.start.hpp │ │ │ │ ├── eprocess_values_t.end.hpp │ │ │ │ ├── eprocess_values_t.start.hpp │ │ │ │ ├── eresource_t.end.hpp │ │ │ │ ├── eresource_t.start.hpp │ │ │ │ ├── error_history_directory_entry_t.end.hpp │ │ │ │ ├── error_history_directory_entry_t.start.hpp │ │ │ │ ├── error_history_directory_t.end.hpp │ │ │ │ ├── error_history_directory_t.start.hpp │ │ │ │ ├── eserversilo_globals_t.end.hpp │ │ │ │ ├── eserversilo_globals_t.start.hpp │ │ │ │ ├── ethread_t.end.hpp │ │ │ │ ├── ethread_t.start.hpp │ │ │ │ ├── etimer_t.end.hpp │ │ │ │ ├── etimer_t.start.hpp │ │ │ │ ├── event_data_descriptor_t.end.hpp │ │ │ │ ├── event_data_descriptor_t.start.hpp │ │ │ │ ├── event_descriptor_t.end.hpp │ │ │ │ ├── event_descriptor_t.start.hpp │ │ │ │ ├── event_filter_descriptor_t.end.hpp │ │ │ │ ├── event_filter_descriptor_t.start.hpp │ │ │ │ ├── event_filter_header_t.end.hpp │ │ │ │ ├── event_filter_header_t.start.hpp │ │ │ │ ├── event_filter_level_kw_t.end.hpp │ │ │ │ ├── event_filter_level_kw_t.start.hpp │ │ │ │ ├── event_header_extended_data_item_t.end.hpp │ │ │ │ ├── event_header_extended_data_item_t.start.hpp │ │ │ │ ├── event_header_t.end.hpp │ │ │ │ ├── event_header_t.start.hpp │ │ │ │ ├── event_payload_predicate_t.end.hpp │ │ │ │ ├── event_payload_predicate_t.start.hpp │ │ │ │ ├── event_record_t.end.hpp │ │ │ │ ├── event_record_t.start.hpp │ │ │ │ ├── ewow64process_t.end.hpp │ │ │ │ ├── ewow64process_t.start.hpp │ │ │ │ ├── exception_pointers_t.end.hpp │ │ │ │ ├── exception_pointers_t.start.hpp │ │ │ │ ├── exception_record32_t.end.hpp │ │ │ │ ├── exception_record32_t.start.hpp │ │ │ │ ├── exception_record64_t.end.hpp │ │ │ │ ├── exception_record64_t.start.hpp │ │ │ │ ├── exception_record_t.end.hpp │ │ │ │ ├── exception_record_t.start.hpp │ │ │ │ ├── exception_registration_record_t.end.hpp │ │ │ │ ├── exception_registration_record_t.start.hpp │ │ │ │ ├── exhandle_t.end.hpp │ │ │ │ ├── exhandle_t.start.hpp │ │ │ │ ├── extended_arguments_t.end.hpp │ │ │ │ ├── extended_arguments_t.start.hpp │ │ │ │ ├── facs_t.end.hpp │ │ │ │ ├── facs_t.start.hpp │ │ │ │ ├── fadt_t.end.hpp │ │ │ │ ├── fadt_t.start.hpp │ │ │ │ ├── fake_heap_entry_t.end.hpp │ │ │ │ ├── fake_heap_entry_t.start.hpp │ │ │ │ ├── fast_eresource_internal_t.end.hpp │ │ │ │ ├── fast_eresource_internal_t.start.hpp │ │ │ │ ├── fast_io_dispatch_t.end.hpp │ │ │ │ ├── fast_io_dispatch_t.start.hpp │ │ │ │ ├── fast_mutex_t.end.hpp │ │ │ │ ├── fast_mutex_t.start.hpp │ │ │ │ ├── fast_owner_entry_internal_t.end.hpp │ │ │ │ ├── fast_owner_entry_internal_t.start.hpp │ │ │ │ ├── fault_information_arm64_flags_t.end.hpp │ │ │ │ ├── fault_information_arm64_flags_t.start.hpp │ │ │ │ ├── fault_information_arm64_t.end.hpp │ │ │ │ ├── fault_information_arm64_t.start.hpp │ │ │ │ ├── fault_information_t.end.hpp │ │ │ │ ├── fault_information_t.start.hpp │ │ │ │ ├── fault_information_x64_flags_t.end.hpp │ │ │ │ ├── fault_information_x64_flags_t.start.hpp │ │ │ │ ├── fault_information_x64_t.end.hpp │ │ │ │ ├── fault_information_x64_t.start.hpp │ │ │ │ ├── feature_error_t.end.hpp │ │ │ │ ├── feature_error_t.start.hpp │ │ │ │ ├── feature_logged_traits_t.end.hpp │ │ │ │ ├── feature_logged_traits_t.start.hpp │ │ │ │ ├── file_basic_information_t.end.hpp │ │ │ │ ├── file_basic_information_t.start.hpp │ │ │ │ ├── file_full_ea_information_t.end.hpp │ │ │ │ ├── file_full_ea_information_t.start.hpp │ │ │ │ ├── file_get_quota_information_t.end.hpp │ │ │ │ ├── file_get_quota_information_t.start.hpp │ │ │ │ ├── file_lock_info_t.end.hpp │ │ │ │ ├── file_lock_info_t.start.hpp │ │ │ │ ├── file_lock_t.end.hpp │ │ │ │ ├── file_lock_t.start.hpp │ │ │ │ ├── file_network_open_information_t.end.hpp │ │ │ │ ├── file_network_open_information_t.start.hpp │ │ │ │ ├── file_object_extension_t.end.hpp │ │ │ │ ├── file_object_extension_t.start.hpp │ │ │ │ ├── file_object_t.end.hpp │ │ │ │ ├── file_object_t.start.hpp │ │ │ │ ├── file_quota_information_t.end.hpp │ │ │ │ ├── file_quota_information_t.start.hpp │ │ │ │ ├── file_segment_element_t.end.hpp │ │ │ │ ├── file_segment_element_t.start.hpp │ │ │ │ ├── file_standard_information_t.end.hpp │ │ │ │ ├── file_standard_information_t.start.hpp │ │ │ │ ├── file_timestamps_t.end.hpp │ │ │ │ ├── file_timestamps_t.start.hpp │ │ │ │ ├── filesystem_disk_counters_t.end.hpp │ │ │ │ ├── filesystem_disk_counters_t.start.hpp │ │ │ │ ├── firmware_information_loader_block_t.end.hpp │ │ │ │ ├── firmware_information_loader_block_t.start.hpp │ │ │ │ ├── firmware_request_block_t.end.hpp │ │ │ │ ├── firmware_request_block_t.start.hpp │ │ │ │ ├── flags_t.end.hpp │ │ │ │ ├── flags_t.start.hpp │ │ │ │ ├── font_image_info_t.end.hpp │ │ │ │ ├── font_image_info_t.start.hpp │ │ │ │ ├── format_descriptor_t.end.hpp │ │ │ │ ├── format_descriptor_t.start.hpp │ │ │ │ ├── format_ex_parameters_t.end.hpp │ │ │ │ ├── format_ex_parameters_t.start.hpp │ │ │ │ ├── format_list_header_t.end.hpp │ │ │ │ ├── format_list_header_t.start.hpp │ │ │ │ ├── format_parameters_t.end.hpp │ │ │ │ ├── format_parameters_t.start.hpp │ │ │ │ ├── formatted_capacity_descriptor_t.end.hpp │ │ │ │ ├── formatted_capacity_descriptor_t.start.hpp │ │ │ │ ├── formatted_capacity_list_t.end.hpp │ │ │ │ ├── formatted_capacity_list_t.start.hpp │ │ │ │ ├── free_display_t.end.hpp │ │ │ │ ├── free_display_t.start.hpp │ │ │ │ ├── fscntl_screen_info_t.end.hpp │ │ │ │ ├── fscntl_screen_info_t.start.hpp │ │ │ │ ├── fsrtl_advanced_fcb_header_t.end.hpp │ │ │ │ ├── fsrtl_advanced_fcb_header_t.start.hpp │ │ │ │ ├── fsrtl_auxiliary_buffer_t.end.hpp │ │ │ │ ├── fsrtl_auxiliary_buffer_t.start.hpp │ │ │ │ ├── fsrtl_common_fcb_header_t.end.hpp │ │ │ │ ├── fsrtl_common_fcb_header_t.start.hpp │ │ │ │ ├── fsrtl_mup_provider_info_level_1_t.end.hpp │ │ │ │ ├── fsrtl_mup_provider_info_level_1_t.start.hpp │ │ │ │ ├── fsrtl_mup_provider_info_level_2_t.end.hpp │ │ │ │ ├── fsrtl_mup_provider_info_level_2_t.start.hpp │ │ │ │ ├── fsrtl_per_file_context_t.end.hpp │ │ │ │ ├── fsrtl_per_file_context_t.start.hpp │ │ │ │ ├── fsrtl_per_fileobject_context_t.end.hpp │ │ │ │ ├── fsrtl_per_fileobject_context_t.start.hpp │ │ │ │ ├── fsrtl_per_stream_context_t.end.hpp │ │ │ │ ├── fsrtl_per_stream_context_t.start.hpp │ │ │ │ ├── fsrtl_unc_provider_registration_t.end.hpp │ │ │ │ ├── fsrtl_unc_provider_registration_t.start.hpp │ │ │ │ ├── fsvideo_copy_frame_buffer_t.end.hpp │ │ │ │ ├── fsvideo_copy_frame_buffer_t.start.hpp │ │ │ │ ├── fsvideo_cursor_position_t.end.hpp │ │ │ │ ├── fsvideo_cursor_position_t.start.hpp │ │ │ │ ├── fsvideo_mode_information_t.end.hpp │ │ │ │ ├── fsvideo_mode_information_t.start.hpp │ │ │ │ ├── fsvideo_reverse_mouse_pointer_t.end.hpp │ │ │ │ ├── fsvideo_reverse_mouse_pointer_t.start.hpp │ │ │ │ ├── fsvideo_screen_information_t.end.hpp │ │ │ │ ├── fsvideo_screen_information_t.start.hpp │ │ │ │ ├── fsvideo_write_to_frame_buffer_t.end.hpp │ │ │ │ ├── fsvideo_write_to_frame_buffer_t.start.hpp │ │ │ │ ├── full_dump32_t.end.hpp │ │ │ │ ├── full_dump32_t.start.hpp │ │ │ │ ├── full_dump64_t.end.hpp │ │ │ │ ├── full_dump64_t.start.hpp │ │ │ │ ├── functional_device_extension_t.end.hpp │ │ │ │ ├── functional_device_extension_t.start.hpp │ │ │ │ ├── gamma_ramp_dxgi_1_t.end.hpp │ │ │ │ ├── gamma_ramp_dxgi_1_t.start.hpp │ │ │ │ ├── gamma_ramp_rgb256x3x16_t.end.hpp │ │ │ │ ├── gamma_ramp_rgb256x3x16_t.start.hpp │ │ │ │ ├── gamma_ramp_rgb_t.end.hpp │ │ │ │ ├── gamma_ramp_rgb_t.start.hpp │ │ │ │ ├── gdi_teb_batch32_t.end.hpp │ │ │ │ ├── gdi_teb_batch32_t.start.hpp │ │ │ │ ├── gdi_teb_batch64_t.end.hpp │ │ │ │ ├── gdi_teb_batch64_t.start.hpp │ │ │ │ ├── gdi_teb_batch_t.end.hpp │ │ │ │ ├── gdi_teb_batch_t.start.hpp │ │ │ │ ├── gen_addr_t.end.hpp │ │ │ │ ├── gen_addr_t.start.hpp │ │ │ │ ├── general_lookaside_pool_t.end.hpp │ │ │ │ ├── general_lookaside_pool_t.start.hpp │ │ │ │ ├── general_lookaside_t.end.hpp │ │ │ │ ├── general_lookaside_t.start.hpp │ │ │ │ ├── generate_name_context_t.end.hpp │ │ │ │ ├── generate_name_context_t.start.hpp │ │ │ │ ├── generic_mapping_t.end.hpp │ │ │ │ ├── generic_mapping_t.start.hpp │ │ │ │ ├── get_device_internal_status_data_request_t.end.hpp │ │ │ │ ├── get_device_internal_status_data_request_t.start.hpp │ │ │ │ ├── get_disk_attributes_t.end.hpp │ │ │ │ ├── get_disk_attributes_t.start.hpp │ │ │ │ ├── get_length_information_t.end.hpp │ │ │ │ ├── get_length_information_t.start.hpp │ │ │ │ ├── get_media_types_t.end.hpp │ │ │ │ ├── get_media_types_t.start.hpp │ │ │ │ ├── get_partition_attributes_t.end.hpp │ │ │ │ ├── get_partition_attributes_t.start.hpp │ │ │ │ ├── getversioninparams_t.end.hpp │ │ │ │ ├── getversioninparams_t.start.hpp │ │ │ │ ├── gic_distributor_t.end.hpp │ │ │ │ ├── gic_distributor_t.start.hpp │ │ │ │ ├── gic_its_t.end.hpp │ │ │ │ ├── gic_its_t.start.hpp │ │ │ │ ├── gic_msiframe_entry_t.end.hpp │ │ │ │ ├── gic_msiframe_entry_t.start.hpp │ │ │ │ ├── gic_redistributor_t.end.hpp │ │ │ │ ├── gic_redistributor_t.start.hpp │ │ │ │ ├── gp_log_page_descriptor_t.end.hpp │ │ │ │ ├── gp_log_page_descriptor_t.start.hpp │ │ │ │ ├── gpup_driver_escape_input_t.end.hpp │ │ │ │ ├── gpup_driver_escape_input_t.start.hpp │ │ │ │ ├── group_affinity_t.end.hpp │ │ │ │ ├── group_affinity_t.start.hpp │ │ │ │ ├── group_membership_t.end.hpp │ │ │ │ ├── group_membership_t.start.hpp │ │ │ │ ├── group_relationship_t.end.hpp │ │ │ │ ├── group_relationship_t.start.hpp │ │ │ │ ├── guid_t.end.hpp │ │ │ │ ├── guid_t.start.hpp │ │ │ │ ├── guidreginfo_t.end.hpp │ │ │ │ ├── guidreginfo_t.start.hpp │ │ │ │ ├── handle_revocation_info_t.end.hpp │ │ │ │ ├── handle_revocation_info_t.start.hpp │ │ │ │ ├── handle_table_entry_info_t.end.hpp │ │ │ │ ├── handle_table_entry_info_t.start.hpp │ │ │ │ ├── handle_table_entry_t.end.hpp │ │ │ │ ├── handle_table_entry_t.start.hpp │ │ │ │ ├── handle_table_free_list_t.end.hpp │ │ │ │ ├── handle_table_free_list_t.start.hpp │ │ │ │ ├── handle_table_t.end.hpp │ │ │ │ ├── handle_table_t.start.hpp │ │ │ │ ├── handle_trace_db_entry_t.end.hpp │ │ │ │ ├── handle_trace_db_entry_t.start.hpp │ │ │ │ ├── handle_trace_debug_info_t.end.hpp │ │ │ │ ├── handle_trace_debug_info_t.start.hpp │ │ │ │ ├── hardware_counter_t.end.hpp │ │ │ │ ├── hardware_counter_t.start.hpp │ │ │ │ ├── hardware_pte_t.end.hpp │ │ │ │ ├── hardware_pte_t.start.hpp │ │ │ │ ├── hbase_block_t.end.hpp │ │ │ │ ├── hbase_block_t.start.hpp │ │ │ │ ├── hbin_t.end.hpp │ │ │ │ ├── hbin_t.start.hpp │ │ │ │ ├── hcell_t.end.hpp │ │ │ │ ├── hcell_t.start.hpp │ │ │ │ ├── headless_loader_block_t.end.hpp │ │ │ │ ├── headless_loader_block_t.start.hpp │ │ │ │ ├── heap_t.end.hpp │ │ │ │ ├── heap_t.start.hpp │ │ │ │ ├── hhive_t.end.hpp │ │ │ │ ├── hhive_t.start.hpp │ │ │ │ ├── hidden_processor_power_interface_t.end.hpp │ │ │ │ ├── hidden_processor_power_interface_t.start.hpp │ │ │ │ ├── histogram_bucket_t.end.hpp │ │ │ │ ├── histogram_bucket_t.start.hpp │ │ │ │ ├── hive_list_entry_t.end.hpp │ │ │ │ ├── hive_list_entry_t.start.hpp │ │ │ │ ├── hive_load_failure_t.end.hpp │ │ │ │ ├── hive_load_failure_t.start.hpp │ │ │ │ ├── hive_wait_packet_t.end.hpp │ │ │ │ ├── hive_wait_packet_t.start.hpp │ │ │ │ ├── hive_write_wait_queue_t.end.hpp │ │ │ │ ├── hive_write_wait_queue_t.start.hpp │ │ │ │ ├── hmap_directory_t.end.hpp │ │ │ │ ├── hmap_directory_t.start.hpp │ │ │ │ ├── hmap_entry_t.end.hpp │ │ │ │ ├── hmap_entry_t.start.hpp │ │ │ │ ├── hmap_table_t.end.hpp │ │ │ │ ├── hmap_table_t.start.hpp │ │ │ │ ├── hview_map_directory_t.end.hpp │ │ │ │ ├── hview_map_directory_t.start.hpp │ │ │ │ ├── hview_map_entry_t.end.hpp │ │ │ │ ├── hview_map_entry_t.start.hpp │ │ │ │ ├── hview_map_pin_log_entry_t.end.hpp │ │ │ │ ├── hview_map_pin_log_entry_t.start.hpp │ │ │ │ ├── hview_map_pin_log_t.end.hpp │ │ │ │ ├── hview_map_pin_log_t.start.hpp │ │ │ │ ├── hview_map_t.end.hpp │ │ │ │ ├── hview_map_t.start.hpp │ │ │ │ ├── hview_map_table_t.end.hpp │ │ │ │ ├── hview_map_table_t.start.hpp │ │ │ │ ├── hybrid_demote_by_size_t.end.hpp │ │ │ │ ├── hybrid_demote_by_size_t.start.hpp │ │ │ │ ├── hybrid_dirty_thresholds_t.end.hpp │ │ │ │ ├── hybrid_dirty_thresholds_t.start.hpp │ │ │ │ ├── hybrid_information_t.end.hpp │ │ │ │ ├── hybrid_information_t.start.hpp │ │ │ │ ├── hybrid_request_block_t.end.hpp │ │ │ │ ├── hybrid_request_block_t.start.hpp │ │ │ │ ├── i2c_callbacks_t.end.hpp │ │ │ │ ├── i2c_callbacks_t.start.hpp │ │ │ │ ├── i2c_fnc_table_t.end.hpp │ │ │ │ ├── i2c_fnc_table_t.start.hpp │ │ │ │ ├── i386_loader_block_t.end.hpp │ │ │ │ ├── i386_loader_block_t.start.hpp │ │ │ │ ├── ia64_dbgkd_control_set_t.end.hpp │ │ │ │ ├── ia64_dbgkd_control_set_t.start.hpp │ │ │ │ ├── ide_io_control_t.end.hpp │ │ │ │ ├── ide_io_control_t.start.hpp │ │ │ │ ├── ideregs_t.end.hpp │ │ │ │ ├── ideregs_t.start.hpp │ │ │ │ ├── in6_addr_t.end.hpp │ │ │ │ ├── in6_addr_t.start.hpp │ │ │ │ ├── in_addr_t.end.hpp │ │ │ │ ├── in_addr_t.start.hpp │ │ │ │ ├── inbv_display_context_t.end.hpp │ │ │ │ ├── inbv_display_context_t.start.hpp │ │ │ │ ├── inbv_graphics_rectangle_t.end.hpp │ │ │ │ ├── inbv_graphics_rectangle_t.start.hpp │ │ │ │ ├── inbv_mode_information_t.end.hpp │ │ │ │ ├── inbv_mode_information_t.start.hpp │ │ │ │ ├── inbv_offset_t.end.hpp │ │ │ │ ├── inbv_offset_t.start.hpp │ │ │ │ ├── indirect_display_info_t.end.hpp │ │ │ │ ├── indirect_display_info_t.start.hpp │ │ │ │ ├── informational_exceptions_t.end.hpp │ │ │ │ ├── informational_exceptions_t.start.hpp │ │ │ │ ├── initial_privilege_set_t.end.hpp │ │ │ │ ├── initial_privilege_set_t.start.hpp │ │ │ │ ├── input_mapping_element_t.end.hpp │ │ │ │ ├── input_mapping_element_t.start.hpp │ │ │ │ ├── installed_memory_range_t.end.hpp │ │ │ │ ├── installed_memory_range_t.start.hpp │ │ │ │ ├── int10_bios_arguments_t.end.hpp │ │ │ │ ├── int10_bios_arguments_t.start.hpp │ │ │ │ ├── interface_t.end.hpp │ │ │ │ ├── interface_t.start.hpp │ │ │ │ ├── interrupt_connection_data_t.end.hpp │ │ │ │ ├── interrupt_connection_data_t.start.hpp │ │ │ │ ├── interrupt_function_table_t.end.hpp │ │ │ │ ├── interrupt_function_table_t.start.hpp │ │ │ │ ├── interrupt_ht_intr_info_t.end.hpp │ │ │ │ ├── interrupt_ht_intr_info_t.start.hpp │ │ │ │ ├── interrupt_line_internal_state_t.end.hpp │ │ │ │ ├── interrupt_line_internal_state_t.start.hpp │ │ │ │ ├── interrupt_line_state_t.end.hpp │ │ │ │ ├── interrupt_line_state_t.start.hpp │ │ │ │ ├── interrupt_line_t.end.hpp │ │ │ │ ├── interrupt_line_t.start.hpp │ │ │ │ ├── interrupt_lines_t.end.hpp │ │ │ │ ├── interrupt_lines_t.start.hpp │ │ │ │ ├── interrupt_remapping_info_t.end.hpp │ │ │ │ ├── interrupt_remapping_info_t.start.hpp │ │ │ │ ├── interrupt_target_t.end.hpp │ │ │ │ ├── interrupt_target_t.start.hpp │ │ │ │ ├── interrupt_tracking_entry_t.end.hpp │ │ │ │ ├── interrupt_tracking_entry_t.start.hpp │ │ │ │ ├── interrupt_tracking_root_t.end.hpp │ │ │ │ ├── interrupt_tracking_root_t.start.hpp │ │ │ │ ├── interrupt_vector_data_t.end.hpp │ │ │ │ ├── interrupt_vector_data_t.start.hpp │ │ │ │ ├── inverted_function_table_entry_t.end.hpp │ │ │ │ ├── inverted_function_table_entry_t.start.hpp │ │ │ │ ├── inverted_function_table_kernel_mode_t.end.hpp │ │ │ │ ├── inverted_function_table_kernel_mode_t.start.hpp │ │ │ │ ├── invpcid_descriptor_t.end.hpp │ │ │ │ ├── invpcid_descriptor_t.start.hpp │ │ │ │ ├── ioapic_t.end.hpp │ │ │ │ ├── ioapic_t.start.hpp │ │ │ │ ├── iobuf_t.end.hpp │ │ │ │ ├── iobuf_t.start.hpp │ │ │ │ ├── iommu_ats_settings_t.end.hpp │ │ │ │ ├── iommu_ats_settings_t.start.hpp │ │ │ │ ├── iommu_device_creation_configuration_acpi_t.end.hpp │ │ │ │ ├── iommu_device_creation_configuration_acpi_t.start.hpp │ │ │ │ ├── iommu_device_creation_configuration_t.end.hpp │ │ │ │ ├── iommu_device_creation_configuration_t.start.hpp │ │ │ │ ├── iommu_dma_device_t.end.hpp │ │ │ │ ├── iommu_dma_device_t.start.hpp │ │ │ │ ├── iommu_dma_domain_creation_flags_t.end.hpp │ │ │ │ ├── iommu_dma_domain_creation_flags_t.start.hpp │ │ │ │ ├── iommu_dma_domain_t.end.hpp │ │ │ │ ├── iommu_dma_domain_t.start.hpp │ │ │ │ ├── iommu_dma_logical_address_token_mapped_segment_t.end.hpp │ │ │ │ ├── iommu_dma_logical_address_token_mapped_segment_t.start.hpp │ │ │ │ ├── iommu_dma_logical_address_token_t.end.hpp │ │ │ │ ├── iommu_dma_logical_address_token_t.start.hpp │ │ │ │ ├── iommu_dma_logical_allocator_capabilities_t.end.hpp │ │ │ │ ├── iommu_dma_logical_allocator_capabilities_t.start.hpp │ │ │ │ ├── iommu_dma_logical_allocator_config_t.end.hpp │ │ │ │ ├── iommu_dma_logical_allocator_config_t.start.hpp │ │ │ │ ├── iommu_dma_logical_allocator_operations_v1_t.end.hpp │ │ │ │ ├── iommu_dma_logical_allocator_operations_v1_t.start.hpp │ │ │ │ ├── iommu_dma_logical_allocator_t.end.hpp │ │ │ │ ├── iommu_dma_logical_allocator_t.start.hpp │ │ │ │ ├── iommu_dma_reserved_region_t.end.hpp │ │ │ │ ├── iommu_dma_reserved_region_t.start.hpp │ │ │ │ ├── iommu_interface_callback_record_t.end.hpp │ │ │ │ ├── iommu_interface_callback_record_t.start.hpp │ │ │ │ ├── iommu_interface_state_change_fields_t.end.hpp │ │ │ │ ├── iommu_interface_state_change_fields_t.start.hpp │ │ │ │ ├── iommu_interface_state_change_t.end.hpp │ │ │ │ ├── iommu_interface_state_change_t.start.hpp │ │ │ │ ├── iommu_map_physical_address_t.end.hpp │ │ │ │ ├── iommu_map_physical_address_t.start.hpp │ │ │ │ ├── iommu_page_handling_data_t.end.hpp │ │ │ │ ├── iommu_page_handling_data_t.start.hpp │ │ │ │ ├── iommu_pasid_table_object_t.end.hpp │ │ │ │ ├── iommu_pasid_table_object_t.start.hpp │ │ │ │ ├── iommu_reserved_device_list_t.end.hpp │ │ │ │ ├── iommu_reserved_device_list_t.start.hpp │ │ │ │ ├── iommu_reserved_device_t.end.hpp │ │ │ │ ├── iommu_reserved_device_t.start.hpp │ │ │ │ ├── iommu_svm_capabilities_t.end.hpp │ │ │ │ ├── iommu_svm_capabilities_t.start.hpp │ │ │ │ ├── iommu_tracked_device_t.end.hpp │ │ │ │ ├── iommu_tracked_device_t.start.hpp │ │ │ │ ├── ioring_buffer_info_t.end.hpp │ │ │ │ ├── ioring_buffer_info_t.start.hpp │ │ │ │ ├── ioring_object_t.end.hpp │ │ │ │ ├── ioring_object_t.start.hpp │ │ │ │ ├── ioring_registered_buffer_t.end.hpp │ │ │ │ ├── ioring_registered_buffer_t.start.hpp │ │ │ │ ├── iosapic_t.end.hpp │ │ │ │ ├── iosapic_t.start.hpp │ │ │ │ ├── ipmi_os_sel_record_t.end.hpp │ │ │ │ ├── ipmi_os_sel_record_t.start.hpp │ │ │ │ ├── irp_t.end.hpp │ │ │ │ ├── irp_t.start.hpp │ │ │ │ ├── isa_vector_t.end.hpp │ │ │ │ ├── isa_vector_t.start.hpp │ │ │ │ ├── isr_thunk_t.end.hpp │ │ │ │ ├── isr_thunk_t.start.hpp │ │ │ │ ├── isrdpcstats_sequence_t.end.hpp │ │ │ │ ├── isrdpcstats_sequence_t.start.hpp │ │ │ │ ├── isrdpcstats_t.end.hpp │ │ │ │ ├── isrdpcstats_t.start.hpp │ │ │ │ ├── job_rate_control_header_t.end.hpp │ │ │ │ ├── job_rate_control_header_t.start.hpp │ │ │ │ ├── jobobject_energy_tracking_state_t.end.hpp │ │ │ │ ├── jobobject_energy_tracking_state_t.start.hpp │ │ │ │ ├── jobobject_wake_filter_t.end.hpp │ │ │ │ ├── jobobject_wake_filter_t.start.hpp │ │ │ │ ├── kaffinity_ex_t.end.hpp │ │ │ │ ├── kaffinity_ex_t.start.hpp │ │ │ │ ├── kalpc_direct_event_t.end.hpp │ │ │ │ ├── kalpc_direct_event_t.start.hpp │ │ │ │ ├── kalpc_handle_data_t.end.hpp │ │ │ │ ├── kalpc_handle_data_t.start.hpp │ │ │ │ ├── kalpc_message_attributes_t.end.hpp │ │ │ │ ├── kalpc_message_attributes_t.start.hpp │ │ │ │ ├── kalpc_message_t.end.hpp │ │ │ │ ├── kalpc_message_t.start.hpp │ │ │ │ ├── kalpc_region_t.end.hpp │ │ │ │ ├── kalpc_region_t.start.hpp │ │ │ │ ├── kalpc_reserve_t.end.hpp │ │ │ │ ├── kalpc_reserve_t.start.hpp │ │ │ │ ├── kalpc_section_t.end.hpp │ │ │ │ ├── kalpc_section_t.start.hpp │ │ │ │ ├── kalpc_security_data_t.end.hpp │ │ │ │ ├── kalpc_security_data_t.start.hpp │ │ │ │ ├── kalpc_view_t.end.hpp │ │ │ │ ├── kalpc_view_t.start.hpp │ │ │ │ ├── kalpc_work_on_behalf_data_t.end.hpp │ │ │ │ ├── kalpc_work_on_behalf_data_t.start.hpp │ │ │ │ ├── kapc_state_t.end.hpp │ │ │ │ ├── kapc_state_t.start.hpp │ │ │ │ ├── kapc_t.end.hpp │ │ │ │ ├── kapc_t.start.hpp │ │ │ │ ├── kbugcheck_callback_record_t.end.hpp │ │ │ │ ├── kbugcheck_callback_record_t.start.hpp │ │ │ │ ├── kbugcheck_reason_callback_record_t.end.hpp │ │ │ │ ├── kbugcheck_reason_callback_record_t.start.hpp │ │ │ │ ├── kclock_increment_trace_t.end.hpp │ │ │ │ ├── kclock_increment_trace_t.start.hpp │ │ │ │ ├── kclock_tick_trace_t.end.hpp │ │ │ │ ├── kclock_tick_trace_t.start.hpp │ │ │ │ ├── kclock_timer_deadline_entry_t.end.hpp │ │ │ │ ├── kclock_timer_deadline_entry_t.start.hpp │ │ │ │ ├── kclock_timer_state_t.end.hpp │ │ │ │ ├── kclock_timer_state_t.start.hpp │ │ │ │ ├── kcore_control_block_t.end.hpp │ │ │ │ ├── kcore_control_block_t.start.hpp │ │ │ │ ├── kddebugger_data64_t.end.hpp │ │ │ │ ├── kddebugger_data64_t.start.hpp │ │ │ │ ├── kdescriptor_t.end.hpp │ │ │ │ ├── kdescriptor_t.start.hpp │ │ │ │ ├── kdevice_queue_entry_t.end.hpp │ │ │ │ ├── kdevice_queue_entry_t.start.hpp │ │ │ │ ├── kdevice_queue_t.end.hpp │ │ │ │ ├── kdevice_queue_t.start.hpp │ │ │ │ ├── kdpc_data_t.end.hpp │ │ │ │ ├── kdpc_data_t.start.hpp │ │ │ │ ├── kdpc_list_t.end.hpp │ │ │ │ ├── kdpc_list_t.start.hpp │ │ │ │ ├── kdpc_t.end.hpp │ │ │ │ ├── kdpc_t.start.hpp │ │ │ │ ├── kdpc_watchdog_information_t.end.hpp │ │ │ │ ├── kdpc_watchdog_information_t.start.hpp │ │ │ │ ├── kenlistment_history_t.end.hpp │ │ │ │ ├── kenlistment_history_t.start.hpp │ │ │ │ ├── kenlistment_t.end.hpp │ │ │ │ ├── kenlistment_t.start.hpp │ │ │ │ ├── kentropy_timing_state_t.end.hpp │ │ │ │ ├── kentropy_timing_state_t.start.hpp │ │ │ │ ├── kernel_shadow_stack_limit_t.end.hpp │ │ │ │ ├── kernel_shadow_stack_limit_t.start.hpp │ │ │ │ ├── kernel_stack_segment_t.end.hpp │ │ │ │ ├── kernel_stack_segment_t.start.hpp │ │ │ │ ├── kevent_t.end.hpp │ │ │ │ ├── kevent_t.start.hpp │ │ │ │ ├── kexecute_options_t.end.hpp │ │ │ │ ├── kexecute_options_t.start.hpp │ │ │ │ ├── key_value_full_information_t.end.hpp │ │ │ │ ├── key_value_full_information_t.start.hpp │ │ │ │ ├── kfloating_save_t.end.hpp │ │ │ │ ├── kfloating_save_t.start.hpp │ │ │ │ ├── kgate_t.end.hpp │ │ │ │ ├── kgate_t.start.hpp │ │ │ │ ├── kgdtentry64_t.end.hpp │ │ │ │ ├── kgdtentry64_t.start.hpp │ │ │ │ ├── khetero_hwfeedback_class_t.end.hpp │ │ │ │ ├── khetero_hwfeedback_class_t.start.hpp │ │ │ │ ├── khetero_processor_set_t.end.hpp │ │ │ │ ├── khetero_processor_set_t.start.hpp │ │ │ │ ├── khetero_state_t.end.hpp │ │ │ │ ├── khetero_state_t.start.hpp │ │ │ │ ├── khetro_hwfeedback_type_t.end.hpp │ │ │ │ ├── khetro_hwfeedback_type_t.start.hpp │ │ │ │ ├── kidtentry64_t.end.hpp │ │ │ │ ├── kidtentry64_t.start.hpp │ │ │ │ ├── kinterrupt_t.end.hpp │ │ │ │ ├── kinterrupt_t.start.hpp │ │ │ │ ├── kist_base_frame_t.end.hpp │ │ │ │ ├── kist_base_frame_t.start.hpp │ │ │ │ ├── kist_link_frame_t.end.hpp │ │ │ │ ├── kist_link_frame_t.start.hpp │ │ │ │ ├── kldtentry_t.end.hpp │ │ │ │ ├── kldtentry_t.start.hpp │ │ │ │ ├── klock_entry_boost_bitmap_t.end.hpp │ │ │ │ ├── klock_entry_boost_bitmap_t.start.hpp │ │ │ │ ├── klock_entry_lock_state_t.end.hpp │ │ │ │ ├── klock_entry_lock_state_t.start.hpp │ │ │ │ ├── klock_entry_t.end.hpp │ │ │ │ ├── klock_entry_t.start.hpp │ │ │ │ ├── klock_queue_handle_t.end.hpp │ │ │ │ ├── klock_queue_handle_t.start.hpp │ │ │ │ ├── kmddod_initialization_data_t.end.hpp │ │ │ │ ├── kmddod_initialization_data_t.start.hpp │ │ │ │ ├── kmutant_t.end.hpp │ │ │ │ ├── kmutant_t.start.hpp │ │ │ │ ├── knode_t.end.hpp │ │ │ │ ├── knode_t.start.hpp │ │ │ │ ├── kpcr_t.end.hpp │ │ │ │ ├── kpcr_t.start.hpp │ │ │ │ ├── kprcb_t.end.hpp │ │ │ │ ├── kprcb_t.start.hpp │ │ │ │ ├── kprcb_tracepoint_log_entry_t.end.hpp │ │ │ │ ├── kprcb_tracepoint_log_entry_t.start.hpp │ │ │ │ ├── kprcb_tracepoint_log_t.end.hpp │ │ │ │ ├── kprcb_tracepoint_log_t.start.hpp │ │ │ │ ├── kprcbflag_t.end.hpp │ │ │ │ ├── kprcbflag_t.start.hpp │ │ │ │ ├── kpriority_state_t.end.hpp │ │ │ │ ├── kpriority_state_t.start.hpp │ │ │ │ ├── kpriqueue_t.end.hpp │ │ │ │ ├── kpriqueue_t.start.hpp │ │ │ │ ├── kprocess_t.end.hpp │ │ │ │ ├── kprocess_t.start.hpp │ │ │ │ ├── kprocessor_descriptor_area_t.end.hpp │ │ │ │ ├── kprocessor_descriptor_area_t.start.hpp │ │ │ │ ├── kprocessor_state_t.end.hpp │ │ │ │ ├── kprocessor_state_t.start.hpp │ │ │ │ ├── kqos_grouping_sets_t.end.hpp │ │ │ │ ├── kqos_grouping_sets_t.start.hpp │ │ │ │ ├── kqueue_t.end.hpp │ │ │ │ ├── kqueue_t.start.hpp │ │ │ │ ├── krequest_packet_t.end.hpp │ │ │ │ ├── krequest_packet_t.start.hpp │ │ │ │ ├── kresourcemanager_completion_binding_t.end.hpp │ │ │ │ ├── kresourcemanager_completion_binding_t.start.hpp │ │ │ │ ├── kresourcemanager_t.end.hpp │ │ │ │ ├── kresourcemanager_t.start.hpp │ │ │ │ ├── kscb_t.end.hpp │ │ │ │ ├── kscb_t.start.hpp │ │ │ │ ├── kscheduler_subnode_t.end.hpp │ │ │ │ ├── kscheduler_subnode_t.start.hpp │ │ │ │ ├── kscheduling_group_policy_t.end.hpp │ │ │ │ ├── kscheduling_group_policy_t.start.hpp │ │ │ │ ├── kscheduling_group_t.end.hpp │ │ │ │ ├── kscheduling_group_t.start.hpp │ │ │ │ ├── ksecondary_idt_entry_t.end.hpp │ │ │ │ ├── ksecondary_idt_entry_t.start.hpp │ │ │ │ ├── ksecure_fault_information_t.end.hpp │ │ │ │ ├── ksecure_fault_information_t.start.hpp │ │ │ │ ├── ksemaphore_t.end.hpp │ │ │ │ ├── ksemaphore_t.start.hpp │ │ │ │ ├── kshared_ready_queue_hetero_statistics_t.end.hpp │ │ │ │ ├── kshared_ready_queue_hetero_statistics_t.start.hpp │ │ │ │ ├── kshared_ready_queue_t.end.hpp │ │ │ │ ├── kshared_ready_queue_t.start.hpp │ │ │ │ ├── ksingle_dpc_soft_timeout_event_info_t.end.hpp │ │ │ │ ├── ksingle_dpc_soft_timeout_event_info_t.start.hpp │ │ │ │ ├── ksoftware_interrupt_batch_t.end.hpp │ │ │ │ ├── ksoftware_interrupt_batch_t.start.hpp │ │ │ │ ├── kspecial_registers_t.end.hpp │ │ │ │ ├── kspecial_registers_t.start.hpp │ │ │ │ ├── kspin_lock_queue_t.end.hpp │ │ │ │ ├── kspin_lock_queue_t.start.hpp │ │ │ │ ├── ksr_capabilities_t.end.hpp │ │ │ │ ├── ksr_capabilities_t.start.hpp │ │ │ │ ├── ksr_firmware_information_t.end.hpp │ │ │ │ ├── ksr_firmware_information_t.start.hpp │ │ │ │ ├── kstack_control_t.end.hpp │ │ │ │ ├── kstack_control_t.start.hpp │ │ │ │ ├── kstack_count_t.end.hpp │ │ │ │ ├── kstack_count_t.start.hpp │ │ │ │ ├── kstatic_affinity_block_t.end.hpp │ │ │ │ ├── kstatic_affinity_block_t.start.hpp │ │ │ │ ├── ksystem_time_t.end.hpp │ │ │ │ ├── ksystem_time_t.start.hpp │ │ │ │ ├── ktb_flush_va_t.end.hpp │ │ │ │ ├── ktb_flush_va_t.start.hpp │ │ │ │ ├── kthread_counters_t.end.hpp │ │ │ │ ├── kthread_counters_t.start.hpp │ │ │ │ ├── kthread_t.end.hpp │ │ │ │ ├── kthread_t.start.hpp │ │ │ │ ├── ktimer2_collection_t.end.hpp │ │ │ │ ├── ktimer2_collection_t.start.hpp │ │ │ │ ├── ktimer2_t.end.hpp │ │ │ │ ├── ktimer2_t.start.hpp │ │ │ │ ├── ktimer_expiration_trace_t.end.hpp │ │ │ │ ├── ktimer_expiration_trace_t.start.hpp │ │ │ │ ├── ktimer_t.end.hpp │ │ │ │ ├── ktimer_t.start.hpp │ │ │ │ ├── ktimer_table_entry_t.end.hpp │ │ │ │ ├── ktimer_table_entry_t.start.hpp │ │ │ │ ├── ktimer_table_state_t.end.hpp │ │ │ │ ├── ktimer_table_state_t.start.hpp │ │ │ │ ├── ktimer_table_t.end.hpp │ │ │ │ ├── ktimer_table_t.start.hpp │ │ │ │ ├── ktm_t.end.hpp │ │ │ │ ├── ktm_t.start.hpp │ │ │ │ ├── ktmobject_cursor_t.end.hpp │ │ │ │ ├── ktmobject_cursor_t.start.hpp │ │ │ │ ├── ktmobject_namespace_link_t.end.hpp │ │ │ │ ├── ktmobject_namespace_link_t.start.hpp │ │ │ │ ├── ktmobject_namespace_t.end.hpp │ │ │ │ ├── ktmobject_namespace_t.start.hpp │ │ │ │ ├── ktransaction_history_t.end.hpp │ │ │ │ ├── ktransaction_history_t.start.hpp │ │ │ │ ├── ktransaction_t.end.hpp │ │ │ │ ├── ktransaction_t.start.hpp │ │ │ │ ├── ktransition_stack_t.end.hpp │ │ │ │ ├── ktransition_stack_t.start.hpp │ │ │ │ ├── ktss64_t.end.hpp │ │ │ │ ├── ktss64_t.start.hpp │ │ │ │ ├── kums_context_header_t.end.hpp │ │ │ │ ├── kums_context_header_t.start.hpp │ │ │ │ ├── kuser_shared_data_t.end.hpp │ │ │ │ ├── kuser_shared_data_t.start.hpp │ │ │ │ ├── kwait_block_t.end.hpp │ │ │ │ ├── kwait_block_t.start.hpp │ │ │ │ ├── kwait_chain_entry_t.end.hpp │ │ │ │ ├── kwait_chain_entry_t.start.hpp │ │ │ │ ├── kwait_chain_t.end.hpp │ │ │ │ ├── kwait_chain_t.start.hpp │ │ │ │ ├── kwait_status_register_t.end.hpp │ │ │ │ ├── kwait_status_register_t.start.hpp │ │ │ │ ├── large_mcb_t.end.hpp │ │ │ │ ├── large_mcb_t.start.hpp │ │ │ │ ├── lazy_writer_t.end.hpp │ │ │ │ ├── lazy_writer_t.start.hpp │ │ │ │ ├── lba_status_descriptor_t.end.hpp │ │ │ │ ├── lba_status_descriptor_t.start.hpp │ │ │ │ ├── lba_status_list_header_t.end.hpp │ │ │ │ ├── lba_status_list_header_t.start.hpp │ │ │ │ ├── leap_second_data_t.end.hpp │ │ │ │ ├── leap_second_data_t.start.hpp │ │ │ │ ├── learning_mode_data_t.end.hpp │ │ │ │ ├── learning_mode_data_t.start.hpp │ │ │ │ ├── link_share_access_t.end.hpp │ │ │ │ ├── link_share_access_t.start.hpp │ │ │ │ ├── linked_device_t.end.hpp │ │ │ │ ├── linked_device_t.start.hpp │ │ │ │ ├── list_entry32_t.end.hpp │ │ │ │ ├── list_entry32_t.start.hpp │ │ │ │ ├── list_entry64_t.end.hpp │ │ │ │ ├── list_entry64_t.start.hpp │ │ │ │ ├── loader_bugcheck_parameters_t.end.hpp │ │ │ │ ├── loader_bugcheck_parameters_t.start.hpp │ │ │ │ ├── loader_feature_configuration_diagnostic_information_t.end.hpp │ │ │ │ ├── loader_feature_configuration_diagnostic_information_t.start.hpp │ │ │ │ ├── loader_feature_configuration_information_t.end.hpp │ │ │ │ ├── loader_feature_configuration_information_t.start.hpp │ │ │ │ ├── loader_hive_recovery_info_t.end.hpp │ │ │ │ ├── loader_hive_recovery_info_t.start.hpp │ │ │ │ ├── loader_memory_range_t.end.hpp │ │ │ │ ├── loader_memory_range_t.start.hpp │ │ │ │ ├── loader_parameter_block_t.end.hpp │ │ │ │ ├── loader_parameter_block_t.start.hpp │ │ │ │ ├── loader_parameter_ci_extension_t.end.hpp │ │ │ │ ├── loader_parameter_ci_extension_t.start.hpp │ │ │ │ ├── loader_parameter_extension_t.end.hpp │ │ │ │ ├── loader_parameter_extension_t.start.hpp │ │ │ │ ├── loader_parameter_hypervisor_extension_t.end.hpp │ │ │ │ ├── loader_parameter_hypervisor_extension_t.start.hpp │ │ │ │ ├── loader_partition_information_ex_t.end.hpp │ │ │ │ ├── loader_partition_information_ex_t.start.hpp │ │ │ │ ├── loader_performance_data_t.end.hpp │ │ │ │ ├── loader_performance_data_t.start.hpp │ │ │ │ ├── loader_reset_reason_t.end.hpp │ │ │ │ ├── loader_reset_reason_t.start.hpp │ │ │ │ ├── local_nmisource_t.end.hpp │ │ │ │ ├── local_nmisource_t.start.hpp │ │ │ │ ├── local_x2apic_nmisource_t.end.hpp │ │ │ │ ├── local_x2apic_nmisource_t.start.hpp │ │ │ │ ├── lock_header_t.end.hpp │ │ │ │ ├── lock_header_t.start.hpp │ │ │ │ ├── lock_tracker_t.end.hpp │ │ │ │ ├── lock_tracker_t.start.hpp │ │ │ │ ├── log_handle_context_t.end.hpp │ │ │ │ ├── log_handle_context_t.start.hpp │ │ │ │ ├── log_page_logical_block_provisioning_t.end.hpp │ │ │ │ ├── log_page_logical_block_provisioning_t.start.hpp │ │ │ │ ├── log_page_t.end.hpp │ │ │ │ ├── log_page_t.start.hpp │ │ │ │ ├── log_parameter_header_t.end.hpp │ │ │ │ ├── log_parameter_header_t.start.hpp │ │ │ │ ├── log_parameter_t.end.hpp │ │ │ │ ├── log_parameter_t.start.hpp │ │ │ │ ├── log_parameter_threshold_resource_count_t.end.hpp │ │ │ │ ├── log_parameter_threshold_resource_count_t.start.hpp │ │ │ │ ├── logged_stream_callback_v1_t.end.hpp │ │ │ │ ├── logged_stream_callback_v1_t.start.hpp │ │ │ │ ├── logged_stream_callback_v2_t.end.hpp │ │ │ │ ├── logged_stream_callback_v2_t.start.hpp │ │ │ │ ├── lookaside_list_ex_t.end.hpp │ │ │ │ ├── lookaside_list_ex_t.start.hpp │ │ │ │ ├── luid_and_attributes_t.end.hpp │ │ │ │ ├── luid_and_attributes_t.start.hpp │ │ │ │ ├── luid_t.end.hpp │ │ │ │ ├── luid_t.start.hpp │ │ │ │ ├── machine_check_context_t.end.hpp │ │ │ │ ├── machine_check_context_t.start.hpp │ │ │ │ ├── machine_frame_t.end.hpp │ │ │ │ ├── machine_frame_t.start.hpp │ │ │ │ ├── mailslot_create_parameters_t.end.hpp │ │ │ │ ├── mailslot_create_parameters_t.start.hpp │ │ │ │ ├── map_register_entry_t.end.hpp │ │ │ │ ├── map_register_entry_t.start.hpp │ │ │ │ ├── mapic_t.end.hpp │ │ │ │ ├── mapic_t.start.hpp │ │ │ │ ├── mapped_file_segment_t.end.hpp │ │ │ │ ├── mapped_file_segment_t.start.hpp │ │ │ │ ├── mbcb_t.end.hpp │ │ │ │ ├── mbcb_t.start.hpp │ │ │ │ ├── mcb_t.end.hpp │ │ │ │ ├── mcb_t.start.hpp │ │ │ │ ├── mcg_cap_t.end.hpp │ │ │ │ ├── mcg_cap_t.start.hpp │ │ │ │ ├── mcg_status_t.end.hpp │ │ │ │ ├── mcg_status_t.start.hpp │ │ │ │ ├── mcgen_trace_context_t.end.hpp │ │ │ │ ├── mcgen_trace_context_t.start.hpp │ │ │ │ ├── mci_status_amd_bits_t.end.hpp │ │ │ │ ├── mci_status_amd_bits_t.start.hpp │ │ │ │ ├── mci_status_bits_common_t.end.hpp │ │ │ │ ├── mci_status_bits_common_t.start.hpp │ │ │ │ ├── mci_status_intel_bits_t.end.hpp │ │ │ │ ├── mci_status_intel_bits_t.start.hpp │ │ │ │ ├── mci_status_t.end.hpp │ │ │ │ ├── mci_status_t.start.hpp │ │ │ │ ├── mcupdate_info_t.end.hpp │ │ │ │ ├── mcupdate_info_t.start.hpp │ │ │ │ ├── mdl_t.end.hpp │ │ │ │ ├── mdl_t.start.hpp │ │ │ │ ├── mechanical_status_information_header_t.end.hpp │ │ │ │ ├── mechanical_status_information_header_t.start.hpp │ │ │ │ ├── mechanical_status_t.end.hpp │ │ │ │ ├── mechanical_status_t.start.hpp │ │ │ │ ├── mem_extended_parameter_t.end.hpp │ │ │ │ ├── mem_extended_parameter_t.start.hpp │ │ │ │ ├── memory_allocation_descriptor_t.end.hpp │ │ │ │ ├── memory_allocation_descriptor_t.start.hpp │ │ │ │ ├── memory_caching_requirements_t.end.hpp │ │ │ │ ├── memory_caching_requirements_t.start.hpp │ │ │ │ ├── memory_dump32_t.end.hpp │ │ │ │ ├── memory_dump32_t.start.hpp │ │ │ │ ├── memory_dump64_t.end.hpp │ │ │ │ ├── memory_dump64_t.start.hpp │ │ │ │ ├── memory_mirroring_data_t.end.hpp │ │ │ │ ├── memory_mirroring_data_t.start.hpp │ │ │ │ ├── memory_range_entry_t.end.hpp │ │ │ │ ├── memory_range_entry_t.start.hpp │ │ │ │ ├── mipfnblink_t.end.hpp │ │ │ │ ├── mipfnblink_t.start.hpp │ │ │ │ ├── mipi_dsi_caps_t.end.hpp │ │ │ │ ├── mipi_dsi_caps_t.start.hpp │ │ │ │ ├── mipi_dsi_packet_t.end.hpp │ │ │ │ ├── mipi_dsi_packet_t.start.hpp │ │ │ │ ├── mipi_dsi_reset_t.end.hpp │ │ │ │ ├── mipi_dsi_reset_t.start.hpp │ │ │ │ ├── mipi_dsi_transmission_t.end.hpp │ │ │ │ ├── mipi_dsi_transmission_t.start.hpp │ │ │ │ ├── mmaddress_list_t.end.hpp │ │ │ │ ├── mmaddress_list_t.start.hpp │ │ │ │ ├── mmclone_block_t.end.hpp │ │ │ │ ├── mmclone_block_t.start.hpp │ │ │ │ ├── mmclone_descriptor_t.end.hpp │ │ │ │ ├── mmclone_descriptor_t.start.hpp │ │ │ │ ├── mmclone_header_t.end.hpp │ │ │ │ ├── mmclone_header_t.start.hpp │ │ │ │ ├── mmdereference_segment_header_t.end.hpp │ │ │ │ ├── mmdereference_segment_header_t.start.hpp │ │ │ │ ├── mmextend_info_t.end.hpp │ │ │ │ ├── mmextend_info_t.start.hpp │ │ │ │ ├── mminpage_flags_t.end.hpp │ │ │ │ ├── mminpage_flags_t.start.hpp │ │ │ │ ├── mminpage_support_flow_through_t.end.hpp │ │ │ │ ├── mminpage_support_flow_through_t.start.hpp │ │ │ │ ├── mminpage_support_t.end.hpp │ │ │ │ ├── mminpage_support_t.start.hpp │ │ │ │ ├── mmmod_writer_listhead_t.end.hpp │ │ │ │ ├── mmmod_writer_listhead_t.start.hpp │ │ │ │ ├── mmmod_writer_mdl_entry_t.end.hpp │ │ │ │ ├── mmmod_writer_mdl_entry_t.start.hpp │ │ │ │ ├── mmpage_file_expansion_flags_t.end.hpp │ │ │ │ ├── mmpage_file_expansion_flags_t.start.hpp │ │ │ │ ├── mmpage_file_expansion_t.end.hpp │ │ │ │ ├── mmpage_file_expansion_t.start.hpp │ │ │ │ ├── mmpaging_file_t.end.hpp │ │ │ │ ├── mmpaging_file_t.start.hpp │ │ │ │ ├── mmpfn_t.end.hpp │ │ │ │ ├── mmpfn_t.start.hpp │ │ │ │ ├── mmpfnentry1_t.end.hpp │ │ │ │ ├── mmpfnentry1_t.start.hpp │ │ │ │ ├── mmpfnentry3_t.end.hpp │ │ │ │ ├── mmpfnentry3_t.start.hpp │ │ │ │ ├── mmpfnlist_short_t.end.hpp │ │ │ │ ├── mmpfnlist_short_t.start.hpp │ │ │ │ ├── mmpfnlist_t.end.hpp │ │ │ │ ├── mmpfnlist_t.start.hpp │ │ │ │ ├── mmpte_hardware_t.end.hpp │ │ │ │ ├── mmpte_hardware_t.start.hpp │ │ │ │ ├── mmpte_list_t.end.hpp │ │ │ │ ├── mmpte_list_t.start.hpp │ │ │ │ ├── mmpte_prototype_t.end.hpp │ │ │ │ ├── mmpte_prototype_t.start.hpp │ │ │ │ ├── mmpte_software_t.end.hpp │ │ │ │ ├── mmpte_software_t.start.hpp │ │ │ │ ├── mmpte_subsection_t.end.hpp │ │ │ │ ├── mmpte_subsection_t.start.hpp │ │ │ │ ├── mmpte_t.end.hpp │ │ │ │ ├── mmpte_t.start.hpp │ │ │ │ ├── mmpte_timestamp_t.end.hpp │ │ │ │ ├── mmpte_timestamp_t.start.hpp │ │ │ │ ├── mmpte_transition_t.end.hpp │ │ │ │ ├── mmpte_transition_t.start.hpp │ │ │ │ ├── mmsection_flags2_t.end.hpp │ │ │ │ ├── mmsection_flags2_t.start.hpp │ │ │ │ ├── mmsection_flags_t.end.hpp │ │ │ │ ├── mmsection_flags_t.start.hpp │ │ │ │ ├── mmsecure_flags_t.end.hpp │ │ │ │ ├── mmsecure_flags_t.start.hpp │ │ │ │ ├── mmsession_t.end.hpp │ │ │ │ ├── mmsession_t.start.hpp │ │ │ │ ├── mmsubsection_flags_t.end.hpp │ │ │ │ ├── mmsubsection_flags_t.start.hpp │ │ │ │ ├── mmsupport_aggregation_t.end.hpp │ │ │ │ ├── mmsupport_aggregation_t.start.hpp │ │ │ │ ├── mmsupport_flags_t.end.hpp │ │ │ │ ├── mmsupport_flags_t.start.hpp │ │ │ │ ├── mmsupport_full_t.end.hpp │ │ │ │ ├── mmsupport_full_t.start.hpp │ │ │ │ ├── mmsupport_instance_t.end.hpp │ │ │ │ ├── mmsupport_instance_t.start.hpp │ │ │ │ ├── mmsupport_shared_t.end.hpp │ │ │ │ ├── mmsupport_shared_t.start.hpp │ │ │ │ ├── mmvad_flags1_t.end.hpp │ │ │ │ ├── mmvad_flags1_t.start.hpp │ │ │ │ ├── mmvad_flags2_t.end.hpp │ │ │ │ ├── mmvad_flags2_t.start.hpp │ │ │ │ ├── mmvad_flags_t.end.hpp │ │ │ │ ├── mmvad_flags_t.start.hpp │ │ │ │ ├── mmvad_short_t.end.hpp │ │ │ │ ├── mmvad_short_t.start.hpp │ │ │ │ ├── mmvad_t.end.hpp │ │ │ │ ├── mmvad_t.start.hpp │ │ │ │ ├── mmworking_set_expansion_head_t.end.hpp │ │ │ │ ├── mmworking_set_expansion_head_t.start.hpp │ │ │ │ ├── mmwsl_full_t.end.hpp │ │ │ │ ├── mmwsl_full_t.start.hpp │ │ │ │ ├── mmwsl_instance_t.end.hpp │ │ │ │ ├── mmwsl_instance_t.start.hpp │ │ │ │ ├── mmwsl_shared_t.end.hpp │ │ │ │ ├── mmwsl_shared_t.start.hpp │ │ │ │ ├── mmwsle_free_entry_t.end.hpp │ │ │ │ ├── mmwsle_free_entry_t.start.hpp │ │ │ │ ├── mmwsle_hash_t.end.hpp │ │ │ │ ├── mmwsle_hash_t.start.hpp │ │ │ │ ├── mmwsle_nondirect_hash_t.end.hpp │ │ │ │ ├── mmwsle_nondirect_hash_t.start.hpp │ │ │ │ ├── mmwsle_t.end.hpp │ │ │ │ ├── mmwsle_t.start.hpp │ │ │ │ ├── mmwslentry_t.end.hpp │ │ │ │ ├── mmwslentry_t.start.hpp │ │ │ │ ├── mode_caching_page_ex_t.end.hpp │ │ │ │ ├── mode_caching_page_ex_t.start.hpp │ │ │ │ ├── mode_caching_page_t.end.hpp │ │ │ │ ├── mode_caching_page_t.start.hpp │ │ │ │ ├── mode_cdrom_write_parameters_page2_t.end.hpp │ │ │ │ ├── mode_cdrom_write_parameters_page2_t.start.hpp │ │ │ │ ├── mode_cdrom_write_parameters_page_t.end.hpp │ │ │ │ ├── mode_cdrom_write_parameters_page_t.start.hpp │ │ │ │ ├── mode_control_page_t.end.hpp │ │ │ │ ├── mode_control_page_t.start.hpp │ │ │ │ ├── mode_disconnect_page_t.end.hpp │ │ │ │ ├── mode_disconnect_page_t.start.hpp │ │ │ │ ├── mode_flexible_disk_page_t.end.hpp │ │ │ │ ├── mode_flexible_disk_page_t.start.hpp │ │ │ │ ├── mode_format_page_t.end.hpp │ │ │ │ ├── mode_format_page_t.start.hpp │ │ │ │ ├── mode_info_exceptions_t.end.hpp │ │ │ │ ├── mode_info_exceptions_t.start.hpp │ │ │ │ ├── mode_mrw_page_t.end.hpp │ │ │ │ ├── mode_mrw_page_t.start.hpp │ │ │ │ ├── mode_parameter_block_t.end.hpp │ │ │ │ ├── mode_parameter_block_t.start.hpp │ │ │ │ ├── mode_parameter_header10_t.end.hpp │ │ │ │ ├── mode_parameter_header10_t.start.hpp │ │ │ │ ├── mode_parameter_header_t.end.hpp │ │ │ │ ├── mode_parameter_header_t.start.hpp │ │ │ │ ├── mode_parm_read_write_t.end.hpp │ │ │ │ ├── mode_parm_read_write_t.start.hpp │ │ │ │ ├── mode_read_recovery_page_t.end.hpp │ │ │ │ ├── mode_read_recovery_page_t.start.hpp │ │ │ │ ├── mode_read_write_recovery_page_t.end.hpp │ │ │ │ ├── mode_read_write_recovery_page_t.start.hpp │ │ │ │ ├── mode_rigid_geometry_page_t.end.hpp │ │ │ │ ├── mode_rigid_geometry_page_t.start.hpp │ │ │ │ ├── modwriter_flags_t.end.hpp │ │ │ │ ├── modwriter_flags_t.start.hpp │ │ │ │ ├── mp_device_data_set_range_t.end.hpp │ │ │ │ ├── mp_device_data_set_range_t.start.hpp │ │ │ │ ├── mpio_pass_through_path32_ex_t.end.hpp │ │ │ │ ├── mpio_pass_through_path32_ex_t.start.hpp │ │ │ │ ├── mpio_pass_through_path32_t.end.hpp │ │ │ │ ├── mpio_pass_through_path32_t.start.hpp │ │ │ │ ├── mpio_pass_through_path_direct32_ex_t.end.hpp │ │ │ │ ├── mpio_pass_through_path_direct32_ex_t.start.hpp │ │ │ │ ├── mpio_pass_through_path_direct32_t.end.hpp │ │ │ │ ├── mpio_pass_through_path_direct32_t.start.hpp │ │ │ │ ├── mpio_pass_through_path_direct_ex_t.end.hpp │ │ │ │ ├── mpio_pass_through_path_direct_ex_t.start.hpp │ │ │ │ ├── mpio_pass_through_path_direct_t.end.hpp │ │ │ │ ├── mpio_pass_through_path_direct_t.start.hpp │ │ │ │ ├── mpio_pass_through_path_ex_t.end.hpp │ │ │ │ ├── mpio_pass_through_path_ex_t.start.hpp │ │ │ │ ├── mpio_pass_through_path_t.end.hpp │ │ │ │ ├── mpio_pass_through_path_t.start.hpp │ │ │ │ ├── msubsection_t.end.hpp │ │ │ │ ├── msubsection_t.start.hpp │ │ │ │ ├── msv1_0_av_pair_t.end.hpp │ │ │ │ ├── msv1_0_av_pair_t.start.hpp │ │ │ │ ├── msv1_0_credential_key_t.end.hpp │ │ │ │ ├── msv1_0_credential_key_t.start.hpp │ │ │ │ ├── msv1_0_enumusers_request_t.end.hpp │ │ │ │ ├── msv1_0_enumusers_request_t.start.hpp │ │ │ │ ├── msv1_0_enumusers_response_t.end.hpp │ │ │ │ ├── msv1_0_enumusers_response_t.start.hpp │ │ │ │ ├── msv1_0_getchallenresp_request_t.end.hpp │ │ │ │ ├── msv1_0_getchallenresp_request_t.start.hpp │ │ │ │ ├── msv1_0_getchallenresp_request_v1_t.end.hpp │ │ │ │ ├── msv1_0_getchallenresp_request_v1_t.start.hpp │ │ │ │ ├── msv1_0_getchallenresp_response_t.end.hpp │ │ │ │ ├── msv1_0_getchallenresp_response_t.start.hpp │ │ │ │ ├── msv1_0_getuserinfo_request_t.end.hpp │ │ │ │ ├── msv1_0_getuserinfo_request_t.start.hpp │ │ │ │ ├── msv1_0_getuserinfo_response_t.end.hpp │ │ │ │ ├── msv1_0_getuserinfo_response_t.start.hpp │ │ │ │ ├── msv1_0_interactive_logon_t.end.hpp │ │ │ │ ├── msv1_0_interactive_logon_t.start.hpp │ │ │ │ ├── msv1_0_interactive_profile_t.end.hpp │ │ │ │ ├── msv1_0_interactive_profile_t.start.hpp │ │ │ │ ├── msv1_0_ium_supplemental_credential_t.end.hpp │ │ │ │ ├── msv1_0_ium_supplemental_credential_t.start.hpp │ │ │ │ ├── msv1_0_lm20_challenge_request_t.end.hpp │ │ │ │ ├── msv1_0_lm20_challenge_request_t.start.hpp │ │ │ │ ├── msv1_0_lm20_challenge_response_t.end.hpp │ │ │ │ ├── msv1_0_lm20_challenge_response_t.start.hpp │ │ │ │ ├── msv1_0_lm20_logon_profile_t.end.hpp │ │ │ │ ├── msv1_0_lm20_logon_profile_t.start.hpp │ │ │ │ ├── msv1_0_lm20_logon_t.end.hpp │ │ │ │ ├── msv1_0_lm20_logon_t.start.hpp │ │ │ │ ├── msv1_0_ntlm3_response_t.end.hpp │ │ │ │ ├── msv1_0_ntlm3_response_t.start.hpp │ │ │ │ ├── msv1_0_remote_supplemental_credential_t.end.hpp │ │ │ │ ├── msv1_0_remote_supplemental_credential_t.start.hpp │ │ │ │ ├── msv1_0_s4u_logon_t.end.hpp │ │ │ │ ├── msv1_0_s4u_logon_t.start.hpp │ │ │ │ ├── msv1_0_subauth_logon_t.end.hpp │ │ │ │ ├── msv1_0_subauth_logon_t.start.hpp │ │ │ │ ├── msv1_0_supplemental_credential_t.end.hpp │ │ │ │ ├── msv1_0_supplemental_credential_t.start.hpp │ │ │ │ ├── msv1_0_supplemental_credential_v2_t.end.hpp │ │ │ │ ├── msv1_0_supplemental_credential_v2_t.start.hpp │ │ │ │ ├── msv1_0_supplemental_credential_v3_t.end.hpp │ │ │ │ ├── msv1_0_supplemental_credential_v3_t.start.hpp │ │ │ │ ├── named_pipe_create_parameters_t.end.hpp │ │ │ │ ├── named_pipe_create_parameters_t.start.hpp │ │ │ │ ├── nb10_t.end.hpp │ │ │ │ ├── nb10_t.start.hpp │ │ │ │ ├── network_app_instance_ecp_context_t.end.hpp │ │ │ │ ├── network_app_instance_ecp_context_t.start.hpp │ │ │ │ ├── network_app_instance_version_ecp_context_t.end.hpp │ │ │ │ ├── network_app_instance_version_ecp_context_t.start.hpp │ │ │ │ ├── network_loader_block_t.end.hpp │ │ │ │ ├── network_loader_block_t.start.hpp │ │ │ │ ├── network_open_ecp_context_t.end.hpp │ │ │ │ ├── network_open_ecp_context_t.start.hpp │ │ │ │ ├── network_open_ecp_context_v0_t.end.hpp │ │ │ │ ├── network_open_ecp_context_v0_t.start.hpp │ │ │ │ ├── nfs_open_ecp_context_t.end.hpp │ │ │ │ ├── nfs_open_ecp_context_t.start.hpp │ │ │ │ ├── non_paged_debug_info_t.end.hpp │ │ │ │ ├── non_paged_debug_info_t.start.hpp │ │ │ │ ├── nonopaque_oplock_t.end.hpp │ │ │ │ ├── nonopaque_oplock_t.start.hpp │ │ │ │ ├── notification_busy_status_t.end.hpp │ │ │ │ ├── notification_busy_status_t.start.hpp │ │ │ │ ├── notification_event_status_header_t.end.hpp │ │ │ │ ├── notification_event_status_header_t.start.hpp │ │ │ │ ├── notification_external_status_t.end.hpp │ │ │ │ ├── notification_external_status_t.start.hpp │ │ │ │ ├── notification_media_status_t.end.hpp │ │ │ │ ├── notification_media_status_t.start.hpp │ │ │ │ ├── notification_multi_host_status_t.end.hpp │ │ │ │ ├── notification_multi_host_status_t.start.hpp │ │ │ │ ├── notification_operational_status_t.end.hpp │ │ │ │ ├── notification_operational_status_t.start.hpp │ │ │ │ ├── notification_power_status_t.end.hpp │ │ │ │ ├── notification_power_status_t.start.hpp │ │ │ │ ├── npaged_lookaside_list_t.end.hpp │ │ │ │ ├── npaged_lookaside_list_t.start.hpp │ │ │ │ ├── npi_client_characteristics_t.end.hpp │ │ │ │ ├── npi_client_characteristics_t.start.hpp │ │ │ │ ├── npi_provider_characteristics_t.end.hpp │ │ │ │ ├── npi_provider_characteristics_t.start.hpp │ │ │ │ ├── npi_registration_instance_t.end.hpp │ │ │ │ ├── npi_registration_instance_t.start.hpp │ │ │ │ ├── ntscsi_unicode_string_t.end.hpp │ │ │ │ ├── ntscsi_unicode_string_t.start.hpp │ │ │ │ ├── numa_memory_range_t.end.hpp │ │ │ │ ├── numa_memory_range_t.start.hpp │ │ │ │ ├── numa_node_relationship_t.end.hpp │ │ │ │ ├── numa_node_relationship_t.start.hpp │ │ │ │ ├── nv_feature_parameter_t.end.hpp │ │ │ │ ├── nv_feature_parameter_t.start.hpp │ │ │ │ ├── nv_memory_range_t.end.hpp │ │ │ │ ├── nv_memory_range_t.start.hpp │ │ │ │ ├── nv_sep_cache_parameter_t.end.hpp │ │ │ │ ├── nv_sep_cache_parameter_t.start.hpp │ │ │ │ ├── nvcache_hint_payload_t.end.hpp │ │ │ │ ├── nvcache_hint_payload_t.start.hpp │ │ │ │ ├── nvcache_priority_level_descriptor_t.end.hpp │ │ │ │ ├── nvcache_priority_level_descriptor_t.start.hpp │ │ │ │ ├── nvcache_request_block_t.end.hpp │ │ │ │ ├── nvcache_request_block_t.start.hpp │ │ │ │ ├── object_attributes_t.end.hpp │ │ │ │ ├── object_attributes_t.start.hpp │ │ │ │ ├── object_create_information_t.end.hpp │ │ │ │ ├── object_create_information_t.start.hpp │ │ │ │ ├── object_directory_entry_t.end.hpp │ │ │ │ ├── object_directory_entry_t.start.hpp │ │ │ │ ├── object_directory_t.end.hpp │ │ │ │ ├── object_directory_t.start.hpp │ │ │ │ ├── object_dump_control_t.end.hpp │ │ │ │ ├── object_dump_control_t.start.hpp │ │ │ │ ├── object_footer_t.end.hpp │ │ │ │ ├── object_footer_t.start.hpp │ │ │ │ ├── object_handle_count_database_t.end.hpp │ │ │ │ ├── object_handle_count_database_t.start.hpp │ │ │ │ ├── object_handle_count_entry_t.end.hpp │ │ │ │ ├── object_handle_count_entry_t.start.hpp │ │ │ │ ├── object_handle_information_t.end.hpp │ │ │ │ ├── object_handle_information_t.start.hpp │ │ │ │ ├── object_header_audit_info_t.end.hpp │ │ │ │ ├── object_header_audit_info_t.start.hpp │ │ │ │ ├── object_header_creator_info_t.end.hpp │ │ │ │ ├── object_header_creator_info_t.start.hpp │ │ │ │ ├── object_header_extended_info_t.end.hpp │ │ │ │ ├── object_header_extended_info_t.start.hpp │ │ │ │ ├── object_header_handle_info_t.end.hpp │ │ │ │ ├── object_header_handle_info_t.start.hpp │ │ │ │ ├── object_header_name_info_t.end.hpp │ │ │ │ ├── object_header_name_info_t.start.hpp │ │ │ │ ├── object_header_padding_info_t.end.hpp │ │ │ │ ├── object_header_padding_info_t.start.hpp │ │ │ │ ├── object_header_process_info_t.end.hpp │ │ │ │ ├── object_header_process_info_t.start.hpp │ │ │ │ ├── object_header_quota_info_t.end.hpp │ │ │ │ ├── object_header_quota_info_t.start.hpp │ │ │ │ ├── object_header_t.end.hpp │ │ │ │ ├── object_header_t.start.hpp │ │ │ │ ├── object_name_information_t.end.hpp │ │ │ │ ├── object_name_information_t.start.hpp │ │ │ │ ├── object_namespace_lookuptable_t.end.hpp │ │ │ │ ├── object_namespace_lookuptable_t.start.hpp │ │ │ │ ├── object_ref_info_t.end.hpp │ │ │ │ ├── object_ref_info_t.start.hpp │ │ │ │ ├── object_ref_stack_info_t.end.hpp │ │ │ │ ├── object_ref_stack_info_t.start.hpp │ │ │ │ ├── object_ref_trace_t.end.hpp │ │ │ │ ├── object_ref_trace_t.start.hpp │ │ │ │ ├── object_symbolic_link_t.end.hpp │ │ │ │ ├── object_symbolic_link_t.start.hpp │ │ │ │ ├── object_type_initializer_t.end.hpp │ │ │ │ ├── object_type_initializer_t.start.hpp │ │ │ │ ├── object_type_list_t.end.hpp │ │ │ │ ├── object_type_list_t.start.hpp │ │ │ │ ├── object_type_t.end.hpp │ │ │ │ ├── object_type_t.start.hpp │ │ │ │ ├── objectid_t.end.hpp │ │ │ │ ├── objectid_t.start.hpp │ │ │ │ ├── offline_crashdump_configuration_table_v2_t.end.hpp │ │ │ │ ├── offline_crashdump_configuration_table_v2_t.start.hpp │ │ │ │ ├── opc_table_entry_t.end.hpp │ │ │ │ ├── opc_table_entry_t.start.hpp │ │ │ │ ├── open_packet_t.end.hpp │ │ │ │ ├── open_packet_t.start.hpp │ │ │ │ ├── open_reparse_list_entry_t.end.hpp │ │ │ │ ├── open_reparse_list_entry_t.start.hpp │ │ │ │ ├── open_reparse_list_t.end.hpp │ │ │ │ ├── open_reparse_list_t.start.hpp │ │ │ │ ├── oplock_key_ecp_context_t.end.hpp │ │ │ │ ├── oplock_key_ecp_context_t.start.hpp │ │ │ │ ├── oplock_notify_params_t.end.hpp │ │ │ │ ├── oplock_notify_params_t.start.hpp │ │ │ │ ├── osversioninfoexw_t.end.hpp │ │ │ │ ├── osversioninfoexw_t.start.hpp │ │ │ │ ├── osversioninfow_t.end.hpp │ │ │ │ ├── osversioninfow_t.start.hpp │ │ │ │ ├── output_wire_format_t.end.hpp │ │ │ │ ├── output_wire_format_t.start.hpp │ │ │ │ ├── outputdupl_context_debug_info_t.end.hpp │ │ │ │ ├── outputdupl_context_debug_info_t.start.hpp │ │ │ │ ├── overwrite_parameter_list_t.end.hpp │ │ │ │ ├── overwrite_parameter_list_t.start.hpp │ │ │ │ ├── owner_entry_t.end.hpp │ │ │ │ ├── owner_entry_t.start.hpp │ │ │ │ ├── paged_lookaside_list_t.end.hpp │ │ │ │ ├── paged_lookaside_list_t.start.hpp │ │ │ │ ├── palpc_port_reference_wait_block_t.end.hpp │ │ │ │ ├── palpc_port_reference_wait_block_t.start.hpp │ │ │ │ ├── panel_brightness_sensor_data_t.end.hpp │ │ │ │ ├── panel_brightness_sensor_data_t.start.hpp │ │ │ │ ├── panel_get_backlight_reduction_t.end.hpp │ │ │ │ ├── panel_get_backlight_reduction_t.start.hpp │ │ │ │ ├── panel_get_brightness_t.end.hpp │ │ │ │ ├── panel_get_brightness_t.start.hpp │ │ │ │ ├── panel_query_brightness_caps_t.end.hpp │ │ │ │ ├── panel_query_brightness_caps_t.start.hpp │ │ │ │ ├── panel_query_brightness_ranges_t.end.hpp │ │ │ │ ├── panel_query_brightness_ranges_t.start.hpp │ │ │ │ ├── panel_set_backlight_optimization_t.end.hpp │ │ │ │ ├── panel_set_backlight_optimization_t.start.hpp │ │ │ │ ├── panel_set_brightness_state_t.end.hpp │ │ │ │ ├── panel_set_brightness_state_t.start.hpp │ │ │ │ ├── panel_set_brightness_t.end.hpp │ │ │ │ ├── panel_set_brightness_t.start.hpp │ │ │ │ ├── partition_information_ex_t.end.hpp │ │ │ │ ├── partition_information_ex_t.start.hpp │ │ │ │ ├── partition_information_gpt_t.end.hpp │ │ │ │ ├── partition_information_gpt_t.start.hpp │ │ │ │ ├── partition_information_mbr_t.end.hpp │ │ │ │ ├── partition_information_mbr_t.start.hpp │ │ │ │ ├── partition_information_t.end.hpp │ │ │ │ ├── partition_information_t.start.hpp │ │ │ │ ├── pcat_firmware_information_t.end.hpp │ │ │ │ ├── pcat_firmware_information_t.start.hpp │ │ │ │ ├── pcw_callback_information_t.end.hpp │ │ │ │ ├── pcw_callback_information_t.start.hpp │ │ │ │ ├── pcw_counter_descriptor_t.end.hpp │ │ │ │ ├── pcw_counter_descriptor_t.start.hpp │ │ │ │ ├── pcw_counter_information_t.end.hpp │ │ │ │ ├── pcw_counter_information_t.start.hpp │ │ │ │ ├── pcw_data_t.end.hpp │ │ │ │ ├── pcw_data_t.start.hpp │ │ │ │ ├── pcw_mask_information_t.end.hpp │ │ │ │ ├── pcw_mask_information_t.start.hpp │ │ │ │ ├── pcw_processor_info_t.end.hpp │ │ │ │ ├── pcw_processor_info_t.start.hpp │ │ │ │ ├── pcw_registration_information_t.end.hpp │ │ │ │ ├── pcw_registration_information_t.start.hpp │ │ │ │ ├── peb32_t.end.hpp │ │ │ │ ├── peb32_t.start.hpp │ │ │ │ ├── peb64_t.end.hpp │ │ │ │ ├── peb64_t.start.hpp │ │ │ │ ├── peb_ldr_data_t.end.hpp │ │ │ │ ├── peb_ldr_data_t.start.hpp │ │ │ │ ├── peb_t.end.hpp │ │ │ │ ├── peb_t.start.hpp │ │ │ │ ├── pebs_ds_save_area32_t.end.hpp │ │ │ │ ├── pebs_ds_save_area32_t.start.hpp │ │ │ │ ├── pebs_ds_save_area64_t.end.hpp │ │ │ │ ├── pebs_ds_save_area64_t.start.hpp │ │ │ │ ├── pebs_ds_save_area_t.end.hpp │ │ │ │ ├── pebs_ds_save_area_t.start.hpp │ │ │ │ ├── pending_relations_list_entry_t.end.hpp │ │ │ │ ├── pending_relations_list_entry_t.start.hpp │ │ │ │ ├── perfinfo_groupmask_t.end.hpp │ │ │ │ ├── perfinfo_groupmask_t.start.hpp │ │ │ │ ├── perfinfo_ppm_state_selection_t.end.hpp │ │ │ │ ├── perfinfo_ppm_state_selection_t.start.hpp │ │ │ │ ├── performance_descriptor_t.end.hpp │ │ │ │ ├── performance_descriptor_t.start.hpp │ │ │ │ ├── periodic_capture_state_context_t.end.hpp │ │ │ │ ├── periodic_capture_state_context_t.start.hpp │ │ │ │ ├── periodic_capture_state_guids_t.end.hpp │ │ │ │ ├── periodic_capture_state_guids_t.start.hpp │ │ │ │ ├── persistent_reserve_command_t.end.hpp │ │ │ │ ├── persistent_reserve_command_t.start.hpp │ │ │ │ ├── physical_counter_event_buffer_configuration_t.end.hpp │ │ │ │ ├── physical_counter_event_buffer_configuration_t.start.hpp │ │ │ │ ├── physical_counter_resource_descriptor_t.end.hpp │ │ │ │ ├── physical_counter_resource_descriptor_t.start.hpp │ │ │ │ ├── physical_counter_resource_list_t.end.hpp │ │ │ │ ├── physical_counter_resource_list_t.start.hpp │ │ │ │ ├── physical_device_extension_t.end.hpp │ │ │ │ ├── physical_device_extension_t.start.hpp │ │ │ │ ├── physical_element_status_data_descriptor_t.end.hpp │ │ │ │ ├── physical_element_status_data_descriptor_t.start.hpp │ │ │ │ ├── physical_element_status_descriptor_t.end.hpp │ │ │ │ ├── physical_element_status_descriptor_t.start.hpp │ │ │ │ ├── physical_element_status_parameter_data_t.end.hpp │ │ │ │ ├── physical_element_status_parameter_data_t.start.hpp │ │ │ │ ├── physical_element_status_request_t.end.hpp │ │ │ │ ├── physical_element_status_request_t.start.hpp │ │ │ │ ├── physical_element_status_t.end.hpp │ │ │ │ ├── physical_element_status_t.start.hpp │ │ │ │ ├── physical_extents_descriptor_t.end.hpp │ │ │ │ ├── physical_extents_descriptor_t.start.hpp │ │ │ │ ├── physical_memory_descriptor32_t.end.hpp │ │ │ │ ├── physical_memory_descriptor32_t.start.hpp │ │ │ │ ├── physical_memory_descriptor64_t.end.hpp │ │ │ │ ├── physical_memory_descriptor64_t.start.hpp │ │ │ │ ├── physical_memory_descriptor_t.end.hpp │ │ │ │ ├── physical_memory_descriptor_t.start.hpp │ │ │ │ ├── physical_memory_range_t.end.hpp │ │ │ │ ├── physical_memory_range_t.start.hpp │ │ │ │ ├── physical_memory_run32_t.end.hpp │ │ │ │ ├── physical_memory_run32_t.start.hpp │ │ │ │ ├── physical_memory_run64_t.end.hpp │ │ │ │ ├── physical_memory_run64_t.start.hpp │ │ │ │ ├── physical_memory_run_t.end.hpp │ │ │ │ ├── physical_memory_run_t.start.hpp │ │ │ │ ├── platform_idle_accounting_t.end.hpp │ │ │ │ ├── platform_idle_accounting_t.start.hpp │ │ │ │ ├── platform_idle_state_accounting_t.end.hpp │ │ │ │ ├── platform_idle_state_accounting_t.start.hpp │ │ │ │ ├── platform_interrupt_t.end.hpp │ │ │ │ ├── platform_interrupt_t.start.hpp │ │ │ │ ├── plugplay_event_block_t.end.hpp │ │ │ │ ├── plugplay_event_block_t.start.hpp │ │ │ │ ├── pool_descriptor_t.end.hpp │ │ │ │ ├── pool_descriptor_t.start.hpp │ │ │ │ ├── pool_header_t.end.hpp │ │ │ │ ├── pool_header_t.start.hpp │ │ │ │ ├── pool_limit_info_t.end.hpp │ │ │ │ ├── pool_limit_info_t.start.hpp │ │ │ │ ├── pool_limit_table_entry_t.end.hpp │ │ │ │ ├── pool_limit_table_entry_t.start.hpp │ │ │ │ ├── pool_tracker_big_pages_t.end.hpp │ │ │ │ ├── pool_tracker_big_pages_t.start.hpp │ │ │ │ ├── pool_tracker_table_t.end.hpp │ │ │ │ ├── pool_tracker_table_t.start.hpp │ │ │ │ ├── port_message32_t.end.hpp │ │ │ │ ├── port_message32_t.start.hpp │ │ │ │ ├── port_message_t.end.hpp │ │ │ │ ├── port_message_t.start.hpp │ │ │ │ ├── port_output_t.end.hpp │ │ │ │ ├── port_output_t.start.hpp │ │ │ │ ├── ppc_dbgkd_control_set_t.end.hpp │ │ │ │ ├── ppc_dbgkd_control_set_t.start.hpp │ │ │ │ ├── prefetch_open_ecp_context_t.end.hpp │ │ │ │ ├── prefetch_open_ecp_context_t.start.hpp │ │ │ │ ├── prefix_table_entry_t.end.hpp │ │ │ │ ├── prefix_table_entry_t.start.hpp │ │ │ │ ├── prefix_table_t.end.hpp │ │ │ │ ├── prefix_table_t.start.hpp │ │ │ │ ├── prevent_media_removal_t.end.hpp │ │ │ │ ├── prevent_media_removal_t.start.hpp │ │ │ │ ├── private_cache_map_flags_t.end.hpp │ │ │ │ ├── private_cache_map_flags_t.start.hpp │ │ │ │ ├── private_cache_map_t.end.hpp │ │ │ │ ├── private_cache_map_t.start.hpp │ │ │ │ ├── private_volume_cachemap_t.end.hpp │ │ │ │ ├── private_volume_cachemap_t.start.hpp │ │ │ │ ├── privilege_set_t.end.hpp │ │ │ │ ├── privilege_set_t.start.hpp │ │ │ │ ├── proc_feedback_counter_t.end.hpp │ │ │ │ ├── proc_feedback_counter_t.start.hpp │ │ │ │ ├── proc_feedback_t.end.hpp │ │ │ │ ├── proc_feedback_t.start.hpp │ │ │ │ ├── proc_idle_accounting_t.end.hpp │ │ │ │ ├── proc_idle_accounting_t.start.hpp │ │ │ │ ├── proc_idle_policy_t.end.hpp │ │ │ │ ├── proc_idle_policy_t.start.hpp │ │ │ │ ├── proc_idle_snap_t.end.hpp │ │ │ │ ├── proc_idle_snap_t.start.hpp │ │ │ │ ├── proc_idle_state_accounting_t.end.hpp │ │ │ │ ├── proc_idle_state_accounting_t.start.hpp │ │ │ │ ├── proc_idle_state_bucket_t.end.hpp │ │ │ │ ├── proc_idle_state_bucket_t.start.hpp │ │ │ │ ├── proc_perf_check_context_t.end.hpp │ │ │ │ ├── proc_perf_check_context_t.start.hpp │ │ │ │ ├── proc_perf_check_cycle_snap_t.end.hpp │ │ │ │ ├── proc_perf_check_cycle_snap_t.start.hpp │ │ │ │ ├── proc_perf_check_snap_t.end.hpp │ │ │ │ ├── proc_perf_check_snap_t.start.hpp │ │ │ │ ├── proc_perf_check_t.end.hpp │ │ │ │ ├── proc_perf_check_t.start.hpp │ │ │ │ ├── proc_perf_constraint_t.end.hpp │ │ │ │ ├── proc_perf_constraint_t.start.hpp │ │ │ │ ├── proc_perf_domain_t.end.hpp │ │ │ │ ├── proc_perf_domain_t.start.hpp │ │ │ │ ├── proc_perf_history_entry_t.end.hpp │ │ │ │ ├── proc_perf_history_entry_t.start.hpp │ │ │ │ ├── proc_perf_history_t.end.hpp │ │ │ │ ├── proc_perf_history_t.start.hpp │ │ │ │ ├── proc_perf_load_t.end.hpp │ │ │ │ ├── proc_perf_load_t.start.hpp │ │ │ │ ├── proc_perf_qos_class_policy_t.end.hpp │ │ │ │ ├── proc_perf_qos_class_policy_t.start.hpp │ │ │ │ ├── process_disk_counters_t.end.hpp │ │ │ │ ├── process_disk_counters_t.start.hpp │ │ │ │ ├── process_energy_values_extension_t.end.hpp │ │ │ │ ├── process_energy_values_extension_t.start.hpp │ │ │ │ ├── process_energy_values_t.end.hpp │ │ │ │ ├── process_energy_values_t.start.hpp │ │ │ │ ├── process_extended_energy_values_t.end.hpp │ │ │ │ ├── process_extended_energy_values_t.start.hpp │ │ │ │ ├── process_perf_counters_t.end.hpp │ │ │ │ ├── process_perf_counters_t.start.hpp │ │ │ │ ├── processor_cycles_workload_class_t.end.hpp │ │ │ │ ├── processor_cycles_workload_class_t.start.hpp │ │ │ │ ├── processor_group_info_t.end.hpp │ │ │ │ ├── processor_group_info_t.start.hpp │ │ │ │ ├── processor_idle_constraints_t.end.hpp │ │ │ │ ├── processor_idle_constraints_t.start.hpp │ │ │ │ ├── processor_idle_dependency_t.end.hpp │ │ │ │ ├── processor_idle_dependency_t.start.hpp │ │ │ │ ├── processor_idle_prepare_info_t.end.hpp │ │ │ │ ├── processor_idle_prepare_info_t.start.hpp │ │ │ │ ├── processor_idlestate_info_t.end.hpp │ │ │ │ ├── processor_idlestate_info_t.start.hpp │ │ │ │ ├── processor_idlestate_policy_t.end.hpp │ │ │ │ ├── processor_idlestate_policy_t.start.hpp │ │ │ │ ├── processor_number_t.end.hpp │ │ │ │ ├── processor_number_t.start.hpp │ │ │ │ ├── processor_perfstate_policy_t.end.hpp │ │ │ │ ├── processor_perfstate_policy_t.start.hpp │ │ │ │ ├── processor_platform_state_residencies_t.end.hpp │ │ │ │ ├── processor_platform_state_residencies_t.start.hpp │ │ │ │ ├── processor_platform_state_residency_t.end.hpp │ │ │ │ ├── processor_platform_state_residency_t.start.hpp │ │ │ │ ├── processor_power_state_t.end.hpp │ │ │ │ ├── processor_power_state_t.start.hpp │ │ │ │ ├── processor_profile_control_area_t.end.hpp │ │ │ │ ├── processor_profile_control_area_t.start.hpp │ │ │ │ ├── processor_relationship_t.end.hpp │ │ │ │ ├── processor_relationship_t.start.hpp │ │ │ │ ├── proclocalapic_t.end.hpp │ │ │ │ ├── proclocalapic_t.start.hpp │ │ │ │ ├── proclocalgic_t.end.hpp │ │ │ │ ├── proclocalgic_t.start.hpp │ │ │ │ ├── proclocalsapic_t.end.hpp │ │ │ │ ├── proclocalsapic_t.start.hpp │ │ │ │ ├── proclocalx2apic_t.end.hpp │ │ │ │ ├── proclocalx2apic_t.start.hpp │ │ │ │ ├── profile_parameter_block_t.end.hpp │ │ │ │ ├── profile_parameter_block_t.start.hpp │ │ │ │ ├── provider_binary_entry_t.end.hpp │ │ │ │ ├── provider_binary_entry_t.start.hpp │ │ │ │ ├── pte_tracker_t.end.hpp │ │ │ │ ├── pte_tracker_t.start.hpp │ │ │ │ ├── public_bcb_t.end.hpp │ │ │ │ ├── public_bcb_t.start.hpp │ │ │ │ ├── quad_t.end.hpp │ │ │ │ ├── quad_t.start.hpp │ │ │ │ ├── query_interface_t.end.hpp │ │ │ │ ├── query_interface_t.start.hpp │ │ │ │ ├── query_on_create_ea_information_t.end.hpp │ │ │ │ ├── query_on_create_ea_information_t.start.hpp │ │ │ │ ├── query_on_create_ecp_context_t.end.hpp │ │ │ │ ├── query_on_create_ecp_context_t.start.hpp │ │ │ │ ├── query_on_create_file_lx_information_t.end.hpp │ │ │ │ ├── query_on_create_file_lx_information_t.start.hpp │ │ │ │ ├── query_on_create_file_stat_information_t.end.hpp │ │ │ │ ├── query_on_create_file_stat_information_t.start.hpp │ │ │ │ ├── query_path_request_ex_t.end.hpp │ │ │ │ ├── query_path_request_ex_t.start.hpp │ │ │ │ ├── query_path_request_t.end.hpp │ │ │ │ ├── query_path_request_t.start.hpp │ │ │ │ ├── query_path_response_t.end.hpp │ │ │ │ ├── query_path_response_t.start.hpp │ │ │ │ ├── raw_read_info_t.end.hpp │ │ │ │ ├── raw_read_info_t.start.hpp │ │ │ │ ├── read_ahead_parameters_t.end.hpp │ │ │ │ ├── read_ahead_parameters_t.start.hpp │ │ │ │ ├── read_block_limits_t.end.hpp │ │ │ │ ├── read_block_limits_t.start.hpp │ │ │ │ ├── read_buffer_capacity_data_t.end.hpp │ │ │ │ ├── read_buffer_capacity_data_t.start.hpp │ │ │ │ ├── read_capacity16_data_t.end.hpp │ │ │ │ ├── read_capacity16_data_t.start.hpp │ │ │ │ ├── read_capacity_data_ex_t.end.hpp │ │ │ │ ├── read_capacity_data_ex_t.start.hpp │ │ │ │ ├── read_capacity_data_t.end.hpp │ │ │ │ ├── read_capacity_data_t.start.hpp │ │ │ │ ├── read_dvd_structures_header_t.end.hpp │ │ │ │ ├── read_dvd_structures_header_t.start.hpp │ │ │ │ ├── read_list_t.end.hpp │ │ │ │ ├── read_list_t.start.hpp │ │ │ │ ├── reassign_blocks_ex_t.end.hpp │ │ │ │ ├── reassign_blocks_ex_t.start.hpp │ │ │ │ ├── reassign_blocks_t.end.hpp │ │ │ │ ├── reassign_blocks_t.start.hpp │ │ │ │ ├── registered_interrupt_controller_t.end.hpp │ │ │ │ ├── registered_interrupt_controller_t.start.hpp │ │ │ │ ├── registered_iommu_t.end.hpp │ │ │ │ ├── registered_iommu_t.start.hpp │ │ │ │ ├── relation_list_t.end.hpp │ │ │ │ ├── relation_list_t.start.hpp │ │ │ │ ├── relative_symlink_info_t.end.hpp │ │ │ │ ├── relative_symlink_info_t.start.hpp │ │ │ │ ├── remote_port_view_t.end.hpp │ │ │ │ ├── remote_port_view_t.start.hpp │ │ │ │ ├── remove_element_and_truncate_request_t.end.hpp │ │ │ │ ├── remove_element_and_truncate_request_t.start.hpp │ │ │ │ ├── reparse_data_buffer_t.end.hpp │ │ │ │ ├── reparse_data_buffer_t.start.hpp │ │ │ │ ├── reparse_t.end.hpp │ │ │ │ ├── reparse_t.start.hpp │ │ │ │ ├── report_zones_data_t.end.hpp │ │ │ │ ├── report_zones_data_t.start.hpp │ │ │ │ ├── request_mailbox_t.end.hpp │ │ │ │ ├── request_mailbox_t.start.hpp │ │ │ │ ├── rh_op_context_t.end.hpp │ │ │ │ ├── rh_op_context_t.start.hpp │ │ │ │ ├── rkf_bypass_ecp_context_t.end.hpp │ │ │ │ ├── rkf_bypass_ecp_context_t.start.hpp │ │ │ │ ├── rs5_image_load_config_directory64_t.end.hpp │ │ │ │ ├── rs5_image_load_config_directory64_t.start.hpp │ │ │ │ ├── rsdp_t.end.hpp │ │ │ │ ├── rsdp_t.start.hpp │ │ │ │ ├── rsds_t.end.hpp │ │ │ │ ├── rsds_t.start.hpp │ │ │ │ ├── rsdt_32_t.end.hpp │ │ │ │ ├── rsdt_32_t.start.hpp │ │ │ │ ├── sam_generic_operation_input_t.end.hpp │ │ │ │ ├── sam_generic_operation_input_t.start.hpp │ │ │ │ ├── sam_generic_operation_output_t.end.hpp │ │ │ │ ├── sam_generic_operation_output_t.start.hpp │ │ │ │ ├── sam_validate_input_arg_t.end.hpp │ │ │ │ ├── sam_validate_input_arg_t.start.hpp │ │ │ │ ├── sam_validate_output_arg_t.end.hpp │ │ │ │ ├── sam_validate_output_arg_t.start.hpp │ │ │ │ ├── saved_internal_status_parameter_data_t.end.hpp │ │ │ │ ├── saved_internal_status_parameter_data_t.start.hpp │ │ │ │ ├── scatter_gather_element_t.end.hpp │ │ │ │ ├── scatter_gather_element_t.start.hpp │ │ │ │ ├── scatter_gather_list_t.end.hpp │ │ │ │ ├── scatter_gather_list_t.start.hpp │ │ │ │ ├── scsi_adapter_bus_info_t.end.hpp │ │ │ │ ├── scsi_adapter_bus_info_t.start.hpp │ │ │ │ ├── scsi_address_t.end.hpp │ │ │ │ ├── scsi_address_t.start.hpp │ │ │ │ ├── scsi_bus_data_t.end.hpp │ │ │ │ ├── scsi_bus_data_t.start.hpp │ │ │ │ ├── scsi_extended_message_t.end.hpp │ │ │ │ ├── scsi_extended_message_t.start.hpp │ │ │ │ ├── scsi_inquiry_data_t.end.hpp │ │ │ │ ├── scsi_inquiry_data_t.start.hpp │ │ │ │ ├── scsi_pass_through32_ex_t.end.hpp │ │ │ │ ├── scsi_pass_through32_ex_t.start.hpp │ │ │ │ ├── scsi_pass_through32_t.end.hpp │ │ │ │ ├── scsi_pass_through32_t.start.hpp │ │ │ │ ├── scsi_pass_through_direct32_ex_t.end.hpp │ │ │ │ ├── scsi_pass_through_direct32_ex_t.start.hpp │ │ │ │ ├── scsi_pass_through_direct32_t.end.hpp │ │ │ │ ├── scsi_pass_through_direct32_t.start.hpp │ │ │ │ ├── scsi_pass_through_direct_ex_t.end.hpp │ │ │ │ ├── scsi_pass_through_direct_ex_t.start.hpp │ │ │ │ ├── scsi_pass_through_direct_t.end.hpp │ │ │ │ ├── scsi_pass_through_direct_t.start.hpp │ │ │ │ ├── scsi_pass_through_ex_t.end.hpp │ │ │ │ ├── scsi_pass_through_ex_t.start.hpp │ │ │ │ ├── scsi_pass_through_t.end.hpp │ │ │ │ ├── scsi_pass_through_t.start.hpp │ │ │ │ ├── scsi_pnp_request_block_t.end.hpp │ │ │ │ ├── scsi_pnp_request_block_t.start.hpp │ │ │ │ ├── scsi_request_block_t.end.hpp │ │ │ │ ├── scsi_request_block_t.start.hpp │ │ │ │ ├── scsi_sense_descriptor_ata_status_return_t.end.hpp │ │ │ │ ├── scsi_sense_descriptor_ata_status_return_t.start.hpp │ │ │ │ ├── scsi_supported_control_type_list_t.end.hpp │ │ │ │ ├── scsi_supported_control_type_list_t.start.hpp │ │ │ │ ├── secondary_ic_list_entry_t.end.hpp │ │ │ │ ├── secondary_ic_list_entry_t.start.hpp │ │ │ │ ├── secondary_interrupt_line_state_t.end.hpp │ │ │ │ ├── secondary_interrupt_line_state_t.start.hpp │ │ │ │ ├── secondary_interrupt_provider_interface_t.end.hpp │ │ │ │ ├── secondary_interrupt_provider_interface_t.start.hpp │ │ │ │ ├── section_image_information_t.end.hpp │ │ │ │ ├── section_image_information_t.start.hpp │ │ │ │ ├── section_object_pointers_t.end.hpp │ │ │ │ ├── section_object_pointers_t.start.hpp │ │ │ │ ├── section_t.end.hpp │ │ │ │ ├── section_t.start.hpp │ │ │ │ ├── segment_flags_t.end.hpp │ │ │ │ ├── segment_flags_t.start.hpp │ │ │ │ ├── segment_t.end.hpp │ │ │ │ ├── segment_t.start.hpp │ │ │ │ ├── segmentation_vp8_t.end.hpp │ │ │ │ ├── segmentation_vp8_t.start.hpp │ │ │ │ ├── segmentation_vp9_t.end.hpp │ │ │ │ ├── segmentation_vp9_t.start.hpp │ │ │ │ ├── self_test_results_t.end.hpp │ │ │ │ ├── self_test_results_t.start.hpp │ │ │ │ ├── sendcmdinparams_t.end.hpp │ │ │ │ ├── sendcmdinparams_t.start.hpp │ │ │ │ ├── sendcmdoutparams_t.end.hpp │ │ │ │ ├── sendcmdoutparams_t.start.hpp │ │ │ │ ├── ses_additional_element_status_descriptor_t.end.hpp │ │ │ │ ├── ses_additional_element_status_descriptor_t.start.hpp │ │ │ │ ├── ses_additional_element_status_diagnostic_page_t.end.hpp │ │ │ │ ├── ses_additional_element_status_diagnostic_page_t.start.hpp │ │ │ │ ├── ses_configuration_diagnostic_page_t.end.hpp │ │ │ │ ├── ses_configuration_diagnostic_page_t.start.hpp │ │ │ │ ├── ses_control_descriptor_t.end.hpp │ │ │ │ ├── ses_control_descriptor_t.start.hpp │ │ │ │ ├── ses_control_diagnostic_page_t.end.hpp │ │ │ │ ├── ses_control_diagnostic_page_t.start.hpp │ │ │ │ ├── ses_diagnostic_page_t.end.hpp │ │ │ │ ├── ses_diagnostic_page_t.start.hpp │ │ │ │ ├── ses_download_microcode_control_diagnostic_page_t.end.hpp │ │ │ │ ├── ses_download_microcode_control_diagnostic_page_t.start.hpp │ │ │ │ ├── ses_download_microcode_status_descriptor_t.end.hpp │ │ │ │ ├── ses_download_microcode_status_descriptor_t.start.hpp │ │ │ │ ├── ses_download_microcode_status_diagnostic_page_t.end.hpp │ │ │ │ ├── ses_download_microcode_status_diagnostic_page_t.start.hpp │ │ │ │ ├── ses_enclosure_descriptor_t.end.hpp │ │ │ │ ├── ses_enclosure_descriptor_t.start.hpp │ │ │ │ ├── ses_phy_descriptor_t.end.hpp │ │ │ │ ├── ses_phy_descriptor_t.start.hpp │ │ │ │ ├── ses_protocol_information_t.end.hpp │ │ │ │ ├── ses_protocol_information_t.start.hpp │ │ │ │ ├── ses_sas_slot_information_t.end.hpp │ │ │ │ ├── ses_sas_slot_information_t.start.hpp │ │ │ │ ├── ses_status_descriptor_t.end.hpp │ │ │ │ ├── ses_status_descriptor_t.start.hpp │ │ │ │ ├── ses_status_diagnostic_page_t.end.hpp │ │ │ │ ├── ses_status_diagnostic_page_t.start.hpp │ │ │ │ ├── ses_type_descriptor_header_t.end.hpp │ │ │ │ ├── ses_type_descriptor_header_t.start.hpp │ │ │ │ ├── session_lowbox_map_t.end.hpp │ │ │ │ ├── session_lowbox_map_t.start.hpp │ │ │ │ ├── set_active_color_profile_name_t.end.hpp │ │ │ │ ├── set_active_color_profile_name_t.start.hpp │ │ │ │ ├── set_disk_attributes_t.end.hpp │ │ │ │ ├── set_disk_attributes_t.start.hpp │ │ │ │ ├── set_partition_attributes_t.end.hpp │ │ │ │ ├── set_partition_attributes_t.start.hpp │ │ │ │ ├── set_partition_information_ex_t.end.hpp │ │ │ │ ├── set_partition_information_ex_t.start.hpp │ │ │ │ ├── set_partition_information_t.end.hpp │ │ │ │ ├── set_partition_information_t.start.hpp │ │ │ │ ├── share_access_t.end.hpp │ │ │ │ ├── share_access_t.start.hpp │ │ │ │ ├── shared_cache_map_list_cursor_t.end.hpp │ │ │ │ ├── shared_cache_map_list_cursor_t.start.hpp │ │ │ │ ├── shared_cache_map_t.end.hpp │ │ │ │ ├── shared_cache_map_t.start.hpp │ │ │ │ ├── sid_and_attributes_hash_t.end.hpp │ │ │ │ ├── sid_and_attributes_hash_t.start.hpp │ │ │ │ ├── sid_and_attributes_t.end.hpp │ │ │ │ ├── sid_and_attributes_t.start.hpp │ │ │ │ ├── sid_identifier_authority_t.end.hpp │ │ │ │ ├── sid_identifier_authority_t.start.hpp │ │ │ │ ├── sid_t.end.hpp │ │ │ │ ├── sid_t.start.hpp │ │ │ │ ├── silo_monitor_registration_t.end.hpp │ │ │ │ ├── silo_monitor_registration_t.start.hpp │ │ │ │ ├── silo_user_shared_data_t.end.hpp │ │ │ │ ├── silo_user_shared_data_t.start.hpp │ │ │ │ ├── single_list_entry32_t.end.hpp │ │ │ │ ├── single_list_entry32_t.start.hpp │ │ │ │ ├── single_list_entry_t.end.hpp │ │ │ │ ├── single_list_entry_t.start.hpp │ │ │ │ ├── slist_entry_t.end.hpp │ │ │ │ ├── slist_entry_t.start.hpp │ │ │ │ ├── slist_header_t.end.hpp │ │ │ │ ├── slist_header_t.start.hpp │ │ │ │ ├── slot_table_information_t.end.hpp │ │ │ │ ├── slot_table_information_t.start.hpp │ │ │ │ ├── smbios3_table_header_t.end.hpp │ │ │ │ ├── smbios3_table_header_t.start.hpp │ │ │ │ ├── solid_state_media_t.end.hpp │ │ │ │ ├── solid_state_media_t.start.hpp │ │ │ │ ├── srb_history_item_t.end.hpp │ │ │ │ ├── srb_history_item_t.start.hpp │ │ │ │ ├── srb_history_t.end.hpp │ │ │ │ ├── srb_history_t.start.hpp │ │ │ │ ├── srb_io_control_t.end.hpp │ │ │ │ ├── srb_io_control_t.start.hpp │ │ │ │ ├── srv_open_ecp_context_t.end.hpp │ │ │ │ ├── srv_open_ecp_context_t.start.hpp │ │ │ │ ├── stack_table_t.end.hpp │ │ │ │ ├── stack_table_t.start.hpp │ │ │ │ ├── status_block_t.end.hpp │ │ │ │ ├── status_block_t.start.hpp │ │ │ │ ├── stor_device_capabilities_ex_t.end.hpp │ │ │ │ ├── stor_device_capabilities_ex_t.start.hpp │ │ │ │ ├── stor_device_capabilities_t.end.hpp │ │ │ │ ├── stor_device_capabilities_t.start.hpp │ │ │ │ ├── storage_access_alignment_descriptor_t.end.hpp │ │ │ │ ├── storage_access_alignment_descriptor_t.start.hpp │ │ │ │ ├── storage_adapter_descriptor_t.end.hpp │ │ │ │ ├── storage_adapter_descriptor_t.start.hpp │ │ │ │ ├── storage_adapter_serial_number_t.end.hpp │ │ │ │ ├── storage_adapter_serial_number_t.start.hpp │ │ │ │ ├── storage_allocate_bc_stream_input_t.end.hpp │ │ │ │ ├── storage_allocate_bc_stream_input_t.start.hpp │ │ │ │ ├── storage_allocate_bc_stream_output_t.end.hpp │ │ │ │ ├── storage_allocate_bc_stream_output_t.start.hpp │ │ │ │ ├── storage_attribute_mgmt_t.end.hpp │ │ │ │ ├── storage_attribute_mgmt_t.start.hpp │ │ │ │ ├── storage_break_reservation_request_t.end.hpp │ │ │ │ ├── storage_break_reservation_request_t.start.hpp │ │ │ │ ├── storage_bus_reset_request_t.end.hpp │ │ │ │ ├── storage_bus_reset_request_t.start.hpp │ │ │ │ ├── storage_counter_t.end.hpp │ │ │ │ ├── storage_counter_t.start.hpp │ │ │ │ ├── storage_counters_t.end.hpp │ │ │ │ ├── storage_counters_t.start.hpp │ │ │ │ ├── storage_crypto_capability_t.end.hpp │ │ │ │ ├── storage_crypto_capability_t.start.hpp │ │ │ │ ├── storage_crypto_descriptor_t.end.hpp │ │ │ │ ├── storage_crypto_descriptor_t.start.hpp │ │ │ │ ├── storage_descriptor_header_t.end.hpp │ │ │ │ ├── storage_descriptor_header_t.start.hpp │ │ │ │ ├── storage_device_attributes_descriptor_t.end.hpp │ │ │ │ ├── storage_device_attributes_descriptor_t.start.hpp │ │ │ │ ├── storage_device_descriptor_t.end.hpp │ │ │ │ ├── storage_device_descriptor_t.start.hpp │ │ │ │ ├── storage_device_fault_domain_descriptor_t.end.hpp │ │ │ │ ├── storage_device_fault_domain_descriptor_t.start.hpp │ │ │ │ ├── storage_device_id_descriptor_t.end.hpp │ │ │ │ ├── storage_device_id_descriptor_t.start.hpp │ │ │ │ ├── storage_device_io_capability_descriptor_t.end.hpp │ │ │ │ ├── storage_device_io_capability_descriptor_t.start.hpp │ │ │ │ ├── storage_device_location_descriptor_t.end.hpp │ │ │ │ ├── storage_device_location_descriptor_t.start.hpp │ │ │ │ ├── storage_device_management_status_t.end.hpp │ │ │ │ ├── storage_device_management_status_t.start.hpp │ │ │ │ ├── storage_device_numa_property_t.end.hpp │ │ │ │ ├── storage_device_numa_property_t.start.hpp │ │ │ │ ├── storage_device_number_ex_t.end.hpp │ │ │ │ ├── storage_device_number_ex_t.start.hpp │ │ │ │ ├── storage_device_number_t.end.hpp │ │ │ │ ├── storage_device_number_t.start.hpp │ │ │ │ ├── storage_device_numbers_t.end.hpp │ │ │ │ ├── storage_device_numbers_t.start.hpp │ │ │ │ ├── storage_device_power_cap_t.end.hpp │ │ │ │ ├── storage_device_power_cap_t.start.hpp │ │ │ │ ├── storage_device_resiliency_descriptor_t.end.hpp │ │ │ │ ├── storage_device_resiliency_descriptor_t.start.hpp │ │ │ │ ├── storage_device_tiering_descriptor_t.end.hpp │ │ │ │ ├── storage_device_tiering_descriptor_t.start.hpp │ │ │ │ ├── storage_device_unsafe_shutdown_count_t.end.hpp │ │ │ │ ├── storage_device_unsafe_shutdown_count_t.start.hpp │ │ │ │ ├── storage_diagnostic_data_t.end.hpp │ │ │ │ ├── storage_diagnostic_data_t.start.hpp │ │ │ │ ├── storage_diagnostic_mp_request_t.end.hpp │ │ │ │ ├── storage_diagnostic_mp_request_t.start.hpp │ │ │ │ ├── storage_diagnostic_request_t.end.hpp │ │ │ │ ├── storage_diagnostic_request_t.start.hpp │ │ │ │ ├── storage_endurance_data_descriptor_t.end.hpp │ │ │ │ ├── storage_endurance_data_descriptor_t.start.hpp │ │ │ │ ├── storage_endurance_info_t.end.hpp │ │ │ │ ├── storage_endurance_info_t.start.hpp │ │ │ │ ├── storage_event_notification_t.end.hpp │ │ │ │ ├── storage_event_notification_t.start.hpp │ │ │ │ ├── storage_failure_prediction_config_t.end.hpp │ │ │ │ ├── storage_failure_prediction_config_t.start.hpp │ │ │ │ ├── storage_firmware_activate_t.end.hpp │ │ │ │ ├── storage_firmware_activate_t.start.hpp │ │ │ │ ├── storage_firmware_download_t.end.hpp │ │ │ │ ├── storage_firmware_download_t.start.hpp │ │ │ │ ├── storage_firmware_download_v2_t.end.hpp │ │ │ │ ├── storage_firmware_download_v2_t.start.hpp │ │ │ │ ├── storage_firmware_info_t.end.hpp │ │ │ │ ├── storage_firmware_info_t.start.hpp │ │ │ │ ├── storage_firmware_info_v2_t.end.hpp │ │ │ │ ├── storage_firmware_info_v2_t.start.hpp │ │ │ │ ├── storage_firmware_slot_info_t.end.hpp │ │ │ │ ├── storage_firmware_slot_info_t.start.hpp │ │ │ │ ├── storage_firmware_slot_info_v2_t.end.hpp │ │ │ │ ├── storage_firmware_slot_info_v2_t.start.hpp │ │ │ │ ├── storage_get_bc_properties_output_t.end.hpp │ │ │ │ ├── storage_get_bc_properties_output_t.start.hpp │ │ │ │ ├── storage_hotplug_info_t.end.hpp │ │ │ │ ├── storage_hotplug_info_t.start.hpp │ │ │ │ ├── storage_hw_endurance_data_descriptor_t.end.hpp │ │ │ │ ├── storage_hw_endurance_data_descriptor_t.start.hpp │ │ │ │ ├── storage_hw_endurance_info_t.end.hpp │ │ │ │ ├── storage_hw_endurance_info_t.start.hpp │ │ │ │ ├── storage_hw_firmware_activate_t.end.hpp │ │ │ │ ├── storage_hw_firmware_activate_t.start.hpp │ │ │ │ ├── storage_hw_firmware_download_t.end.hpp │ │ │ │ ├── storage_hw_firmware_download_t.start.hpp │ │ │ │ ├── storage_hw_firmware_download_v2_t.end.hpp │ │ │ │ ├── storage_hw_firmware_download_v2_t.start.hpp │ │ │ │ ├── storage_hw_firmware_info_query_t.end.hpp │ │ │ │ ├── storage_hw_firmware_info_query_t.start.hpp │ │ │ │ ├── storage_hw_firmware_info_t.end.hpp │ │ │ │ ├── storage_hw_firmware_info_t.start.hpp │ │ │ │ ├── storage_hw_firmware_slot_info_t.end.hpp │ │ │ │ ├── storage_hw_firmware_slot_info_t.start.hpp │ │ │ │ ├── storage_identifier_t.end.hpp │ │ │ │ ├── storage_identifier_t.start.hpp │ │ │ │ ├── storage_idle_power_t.end.hpp │ │ │ │ ├── storage_idle_power_t.start.hpp │ │ │ │ ├── storage_idle_powerup_reason_t.end.hpp │ │ │ │ ├── storage_idle_powerup_reason_t.start.hpp │ │ │ │ ├── storage_lb_provisioning_map_resources_t.end.hpp │ │ │ │ ├── storage_lb_provisioning_map_resources_t.start.hpp │ │ │ │ ├── storage_media_serial_number_data_t.end.hpp │ │ │ │ ├── storage_media_serial_number_data_t.start.hpp │ │ │ │ ├── storage_medium_product_type_descriptor_t.end.hpp │ │ │ │ ├── storage_medium_product_type_descriptor_t.start.hpp │ │ │ │ ├── storage_miniport_descriptor_t.end.hpp │ │ │ │ ├── storage_miniport_descriptor_t.start.hpp │ │ │ │ ├── storage_offload_read_output_t.end.hpp │ │ │ │ ├── storage_offload_read_output_t.start.hpp │ │ │ │ ├── storage_offload_token_t.end.hpp │ │ │ │ ├── storage_offload_token_t.start.hpp │ │ │ │ ├── storage_offload_write_output_t.end.hpp │ │ │ │ ├── storage_offload_write_output_t.start.hpp │ │ │ │ ├── storage_operational_reason_t.end.hpp │ │ │ │ ├── storage_operational_reason_t.start.hpp │ │ │ │ ├── storage_physical_adapter_data_t.end.hpp │ │ │ │ ├── storage_physical_adapter_data_t.start.hpp │ │ │ │ ├── storage_physical_device_data_t.end.hpp │ │ │ │ ├── storage_physical_device_data_t.start.hpp │ │ │ │ ├── storage_physical_node_data_t.end.hpp │ │ │ │ ├── storage_physical_node_data_t.start.hpp │ │ │ │ ├── storage_physical_topology_descriptor_t.end.hpp │ │ │ │ ├── storage_physical_topology_descriptor_t.start.hpp │ │ │ │ ├── storage_predict_failure_t.end.hpp │ │ │ │ ├── storage_predict_failure_t.start.hpp │ │ │ │ ├── storage_priority_hint_support_t.end.hpp │ │ │ │ ├── storage_priority_hint_support_t.start.hpp │ │ │ │ ├── storage_property_query_t.end.hpp │ │ │ │ ├── storage_property_query_t.start.hpp │ │ │ │ ├── storage_property_set_t.end.hpp │ │ │ │ ├── storage_property_set_t.start.hpp │ │ │ │ ├── storage_protocol_command_t.end.hpp │ │ │ │ ├── storage_protocol_command_t.start.hpp │ │ │ │ ├── storage_protocol_data_descriptor_ext_t.end.hpp │ │ │ │ ├── storage_protocol_data_descriptor_ext_t.start.hpp │ │ │ │ ├── storage_protocol_data_descriptor_t.end.hpp │ │ │ │ ├── storage_protocol_data_descriptor_t.start.hpp │ │ │ │ ├── storage_protocol_specific_data_ext_t.end.hpp │ │ │ │ ├── storage_protocol_specific_data_ext_t.start.hpp │ │ │ │ ├── storage_protocol_specific_data_t.end.hpp │ │ │ │ ├── storage_protocol_specific_data_t.start.hpp │ │ │ │ ├── storage_read_capacity_t.end.hpp │ │ │ │ ├── storage_read_capacity_t.start.hpp │ │ │ │ ├── storage_rpmb_data_frame_t.end.hpp │ │ │ │ ├── storage_rpmb_data_frame_t.start.hpp │ │ │ │ ├── storage_rpmb_descriptor_t.end.hpp │ │ │ │ ├── storage_rpmb_descriptor_t.start.hpp │ │ │ │ ├── storage_spec_version_t.end.hpp │ │ │ │ ├── storage_spec_version_t.start.hpp │ │ │ │ ├── storage_temperature_data_descriptor_t.end.hpp │ │ │ │ ├── storage_temperature_data_descriptor_t.start.hpp │ │ │ │ ├── storage_temperature_info_t.end.hpp │ │ │ │ ├── storage_temperature_info_t.start.hpp │ │ │ │ ├── storage_temperature_threshold_t.end.hpp │ │ │ │ ├── storage_temperature_threshold_t.start.hpp │ │ │ │ ├── storage_tier_region_t.end.hpp │ │ │ │ ├── storage_tier_region_t.start.hpp │ │ │ │ ├── storage_tier_t.end.hpp │ │ │ │ ├── storage_tier_t.start.hpp │ │ │ │ ├── storage_write_cache_property_t.end.hpp │ │ │ │ ├── storage_write_cache_property_t.start.hpp │ │ │ │ ├── storage_zone_descriptor_t.end.hpp │ │ │ │ ├── storage_zone_descriptor_t.start.hpp │ │ │ │ ├── storage_zone_group_t.end.hpp │ │ │ │ ├── storage_zone_group_t.start.hpp │ │ │ │ ├── storage_zoned_device_descriptor_t.end.hpp │ │ │ │ ├── storage_zoned_device_descriptor_t.start.hpp │ │ │ │ ├── stream_information_t.end.hpp │ │ │ │ ├── stream_information_t.start.hpp │ │ │ │ ├── sub_q_channel_data_t.end.hpp │ │ │ │ ├── sub_q_channel_data_t.start.hpp │ │ │ │ ├── sub_q_current_position_t.end.hpp │ │ │ │ ├── sub_q_current_position_t.start.hpp │ │ │ │ ├── sub_q_header_t.end.hpp │ │ │ │ ├── sub_q_header_t.start.hpp │ │ │ │ ├── sub_q_media_catalog_number_t.end.hpp │ │ │ │ ├── sub_q_media_catalog_number_t.start.hpp │ │ │ │ ├── sub_q_track_isrc_t.end.hpp │ │ │ │ ├── sub_q_track_isrc_t.start.hpp │ │ │ │ ├── subsection_t.end.hpp │ │ │ │ ├── subsection_t.start.hpp │ │ │ │ ├── summary_dump32_t.end.hpp │ │ │ │ ├── summary_dump32_t.start.hpp │ │ │ │ ├── summary_dump64_t.end.hpp │ │ │ │ ├── summary_dump64_t.start.hpp │ │ │ │ ├── supported_range_t.end.hpp │ │ │ │ ├── supported_range_t.start.hpp │ │ │ │ ├── supported_ranges_t.end.hpp │ │ │ │ ├── supported_ranges_t.start.hpp │ │ │ │ ├── supported_security_protocols_parameter_data_t.end.hpp │ │ │ │ ├── supported_security_protocols_parameter_data_t.start.hpp │ │ │ │ ├── synch_counters_t.end.hpp │ │ │ │ ├── synch_counters_t.start.hpp │ │ │ │ ├── sysptes_header_t.end.hpp │ │ │ │ ├── sysptes_header_t.start.hpp │ │ │ │ ├── system_logical_processor_information_ex_t.end.hpp │ │ │ │ ├── system_logical_processor_information_ex_t.start.hpp │ │ │ │ ├── system_power_capabilities_t.end.hpp │ │ │ │ ├── system_power_capabilities_t.start.hpp │ │ │ │ ├── system_power_level_t.end.hpp │ │ │ │ ├── system_power_level_t.start.hpp │ │ │ │ ├── system_power_policy_t.end.hpp │ │ │ │ ├── system_power_policy_t.start.hpp │ │ │ │ ├── system_power_state_context_t.end.hpp │ │ │ │ ├── system_power_state_context_t.start.hpp │ │ │ │ ├── tape_get_statistics_t.end.hpp │ │ │ │ ├── tape_get_statistics_t.start.hpp │ │ │ │ ├── tape_position_data_t.end.hpp │ │ │ │ ├── tape_position_data_t.start.hpp │ │ │ │ ├── tape_statistics_t.end.hpp │ │ │ │ ├── tape_statistics_t.start.hpp │ │ │ │ ├── target_device_custom_notification_t.end.hpp │ │ │ │ ├── target_device_custom_notification_t.start.hpp │ │ │ │ ├── teb32_t.end.hpp │ │ │ │ ├── teb32_t.start.hpp │ │ │ │ ├── teb64_t.end.hpp │ │ │ │ ├── teb64_t.start.hpp │ │ │ │ ├── teb_active_frame_context_t.end.hpp │ │ │ │ ├── teb_active_frame_context_t.start.hpp │ │ │ │ ├── teb_active_frame_t.end.hpp │ │ │ │ ├── teb_active_frame_t.start.hpp │ │ │ │ ├── teb_t.end.hpp │ │ │ │ ├── teb_t.start.hpp │ │ │ │ ├── temperature_t.end.hpp │ │ │ │ ├── temperature_t.start.hpp │ │ │ │ ├── termination_port_t.end.hpp │ │ │ │ ├── termination_port_t.start.hpp │ │ │ │ ├── thermal_cooling_interface_t.end.hpp │ │ │ │ ├── thermal_cooling_interface_t.start.hpp │ │ │ │ ├── thermal_information_ex_t.end.hpp │ │ │ │ ├── thermal_information_ex_t.start.hpp │ │ │ │ ├── thermal_information_t.end.hpp │ │ │ │ ├── thermal_information_t.start.hpp │ │ │ │ ├── thermal_policy_t.end.hpp │ │ │ │ ├── thermal_policy_t.start.hpp │ │ │ │ ├── thermal_zone_counters_t.end.hpp │ │ │ │ ├── thermal_zone_counters_t.start.hpp │ │ │ │ ├── thread_energy_values_t.end.hpp │ │ │ │ ├── thread_energy_values_t.start.hpp │ │ │ │ ├── thread_performance_data_t.end.hpp │ │ │ │ ├── thread_performance_data_t.start.hpp │ │ │ │ ├── threshold_resource_count_t.end.hpp │ │ │ │ ├── threshold_resource_count_t.start.hpp │ │ │ │ ├── time_fields_t.end.hpp │ │ │ │ ├── time_fields_t.start.hpp │ │ │ │ ├── timeline_bitmap_t.end.hpp │ │ │ │ ├── timeline_bitmap_t.start.hpp │ │ │ │ ├── timezone_change_event_t.end.hpp │ │ │ │ ├── timezone_change_event_t.start.hpp │ │ │ │ ├── token_access_information_t.end.hpp │ │ │ │ ├── token_access_information_t.start.hpp │ │ │ │ ├── token_audit_policy_t.end.hpp │ │ │ │ ├── token_audit_policy_t.start.hpp │ │ │ │ ├── token_control_t.end.hpp │ │ │ │ ├── token_control_t.start.hpp │ │ │ │ ├── token_groups_t.end.hpp │ │ │ │ ├── token_groups_t.start.hpp │ │ │ │ ├── token_mandatory_policy_t.end.hpp │ │ │ │ ├── token_mandatory_policy_t.start.hpp │ │ │ │ ├── token_privileges_t.end.hpp │ │ │ │ ├── token_privileges_t.start.hpp │ │ │ │ ├── token_source_t.end.hpp │ │ │ │ ├── token_source_t.start.hpp │ │ │ │ ├── token_t.end.hpp │ │ │ │ ├── token_t.start.hpp │ │ │ │ ├── track_data_t.end.hpp │ │ │ │ ├── track_data_t.start.hpp │ │ │ │ ├── track_information2_t.end.hpp │ │ │ │ ├── track_information2_t.start.hpp │ │ │ │ ├── track_information3_t.end.hpp │ │ │ │ ├── track_information3_t.start.hpp │ │ │ │ ├── track_information_t.end.hpp │ │ │ │ ├── track_information_t.start.hpp │ │ │ │ ├── transaction_notification_t.end.hpp │ │ │ │ ├── transaction_notification_t.start.hpp │ │ │ │ ├── triage_9f_pnp_t.end.hpp │ │ │ │ ├── triage_9f_pnp_t.start.hpp │ │ │ │ ├── triage_9f_power_t.end.hpp │ │ │ │ ├── triage_9f_power_t.start.hpp │ │ │ │ ├── triage_data_block_t.end.hpp │ │ │ │ ├── triage_data_block_t.start.hpp │ │ │ │ ├── triage_device_node_t.end.hpp │ │ │ │ ├── triage_device_node_t.start.hpp │ │ │ │ ├── triage_dump32_t.end.hpp │ │ │ │ ├── triage_dump32_t.start.hpp │ │ │ │ ├── triage_dump64_t.end.hpp │ │ │ │ ├── triage_dump64_t.start.hpp │ │ │ │ ├── triage_ex_work_queue_t.end.hpp │ │ │ │ ├── triage_ex_work_queue_t.start.hpp │ │ │ │ ├── triage_pnp_device_completion_queue_t.end.hpp │ │ │ │ ├── triage_pnp_device_completion_queue_t.start.hpp │ │ │ │ ├── triage_pnp_device_completion_request_t.end.hpp │ │ │ │ ├── triage_pnp_device_completion_request_t.start.hpp │ │ │ │ ├── triage_pop_fx_device_t.end.hpp │ │ │ │ ├── triage_pop_fx_device_t.start.hpp │ │ │ │ ├── triage_pop_irp_data_t.end.hpp │ │ │ │ ├── triage_pop_irp_data_t.start.hpp │ │ │ │ ├── trustlet_collaboration_id_t.end.hpp │ │ │ │ ├── trustlet_collaboration_id_t.start.hpp │ │ │ │ ├── trustlet_mailbox_key_t.end.hpp │ │ │ │ ├── trustlet_mailbox_key_t.start.hpp │ │ │ │ ├── tunnel_t.end.hpp │ │ │ │ ├── tunnel_t.start.hpp │ │ │ │ ├── txn_parameter_block_t.end.hpp │ │ │ │ ├── txn_parameter_block_t.start.hpp │ │ │ │ ├── ums_control_block_t.end.hpp │ │ │ │ ├── ums_control_block_t.start.hpp │ │ │ │ ├── unexpected_interrupt_t.end.hpp │ │ │ │ ├── unexpected_interrupt_t.start.hpp │ │ │ │ ├── unicode_prefix_table_entry_t.end.hpp │ │ │ │ ├── unicode_prefix_table_entry_t.start.hpp │ │ │ │ ├── unicode_prefix_table_t.end.hpp │ │ │ │ ├── unicode_prefix_table_t.start.hpp │ │ │ │ ├── unloaded_drivers32_t.end.hpp │ │ │ │ ├── unloaded_drivers32_t.start.hpp │ │ │ │ ├── unloaded_drivers64_t.end.hpp │ │ │ │ ├── unloaded_drivers64_t.start.hpp │ │ │ │ ├── unmap_block_descriptor_t.end.hpp │ │ │ │ ├── unmap_block_descriptor_t.start.hpp │ │ │ │ ├── unmap_list_header_t.end.hpp │ │ │ │ ├── unmap_list_header_t.start.hpp │ │ │ │ ├── user_pwd_change_failure_information_t.end.hpp │ │ │ │ ├── user_pwd_change_failure_information_t.start.hpp │ │ │ │ ├── usermode_crashdump_header32_t.end.hpp │ │ │ │ ├── usermode_crashdump_header32_t.start.hpp │ │ │ │ ├── usermode_crashdump_header64_t.end.hpp │ │ │ │ ├── usermode_crashdump_header64_t.start.hpp │ │ │ │ ├── usermode_crashdump_header_t.end.hpp │ │ │ │ ├── usermode_crashdump_header_t.start.hpp │ │ │ │ ├── vacb_array_header_t.end.hpp │ │ │ │ ├── vacb_array_header_t.start.hpp │ │ │ │ ├── vacb_level_allocation_list_t.end.hpp │ │ │ │ ├── vacb_level_allocation_list_t.start.hpp │ │ │ │ ├── vacb_level_reference_t.end.hpp │ │ │ │ ├── vacb_level_reference_t.start.hpp │ │ │ │ ├── vacb_t.end.hpp │ │ │ │ ├── vacb_t.start.hpp │ │ │ │ ├── verify_information_t.end.hpp │ │ │ │ ├── verify_information_t.start.hpp │ │ │ │ ├── vga_char_t.end.hpp │ │ │ │ ├── vga_char_t.start.hpp │ │ │ │ ├── vhf_config_t.end.hpp │ │ │ │ ├── vhf_config_t.start.hpp │ │ │ │ ├── virtual_efi_runtime_services_t.end.hpp │ │ │ │ ├── virtual_efi_runtime_services_t.start.hpp │ │ │ │ ├── volume_cache_map_t.end.hpp │ │ │ │ ├── volume_cache_map_t.start.hpp │ │ │ │ ├── volume_control_t.end.hpp │ │ │ │ ├── volume_control_t.start.hpp │ │ │ │ ├── vp_device_description_t.end.hpp │ │ │ │ ├── vp_device_description_t.start.hpp │ │ │ │ ├── vp_scatter_gather_element_t.end.hpp │ │ │ │ ├── vp_scatter_gather_element_t.start.hpp │ │ │ │ ├── vp_scatter_gather_list_t.end.hpp │ │ │ │ ├── vp_scatter_gather_list_t.start.hpp │ │ │ │ ├── vpb_t.end.hpp │ │ │ │ ├── vpb_t.start.hpp │ │ │ │ ├── vpd_ata_information_page_t.end.hpp │ │ │ │ ├── vpd_ata_information_page_t.start.hpp │ │ │ │ ├── vpd_block_device_characteristics_page_t.end.hpp │ │ │ │ ├── vpd_block_device_characteristics_page_t.start.hpp │ │ │ │ ├── vpd_block_limits_page_t.end.hpp │ │ │ │ ├── vpd_block_limits_page_t.start.hpp │ │ │ │ ├── vpd_extended_inquiry_data_page_t.end.hpp │ │ │ │ ├── vpd_extended_inquiry_data_page_t.start.hpp │ │ │ │ ├── vpd_logical_block_provisioning_page_t.end.hpp │ │ │ │ ├── vpd_logical_block_provisioning_page_t.start.hpp │ │ │ │ ├── vpd_media_serial_number_page_t.end.hpp │ │ │ │ ├── vpd_media_serial_number_page_t.start.hpp │ │ │ │ ├── vpd_serial_number_page_t.end.hpp │ │ │ │ ├── vpd_serial_number_page_t.start.hpp │ │ │ │ ├── vpd_supported_pages_page_t.end.hpp │ │ │ │ ├── vpd_supported_pages_page_t.start.hpp │ │ │ │ ├── vpd_third_party_copy_page_t.end.hpp │ │ │ │ ├── vpd_third_party_copy_page_t.start.hpp │ │ │ │ ├── vpd_zoned_block_device_characteristics_page_t.end.hpp │ │ │ │ ├── vpd_zoned_block_device_characteristics_page_t.start.hpp │ │ │ │ ├── vposversioninfo_t.end.hpp │ │ │ │ ├── vposversioninfo_t.start.hpp │ │ │ │ ├── vrb_sg_t.end.hpp │ │ │ │ ├── vrb_sg_t.start.hpp │ │ │ │ ├── vsm_performance_data_t.end.hpp │ │ │ │ ├── vsm_performance_data_t.start.hpp │ │ │ │ ├── wait_context_block_t.end.hpp │ │ │ │ ├── wait_context_block_t.start.hpp │ │ │ │ ├── waiting_irp_t.end.hpp │ │ │ │ ├── waiting_irp_t.start.hpp │ │ │ │ ├── windows_block_device_token_limits_descriptor_t.end.hpp │ │ │ │ ├── windows_block_device_token_limits_descriptor_t.start.hpp │ │ │ │ ├── work_queue_entry_t.end.hpp │ │ │ │ ├── work_queue_entry_t.start.hpp │ │ │ │ ├── work_queue_item_t.end.hpp │ │ │ │ ├── work_queue_item_t.start.hpp │ │ │ │ ├── write_behind_throughput_t.end.hpp │ │ │ │ ├── write_behind_throughput_t.start.hpp │ │ │ │ ├── x86_dbgkd_control_set_t.end.hpp │ │ │ │ ├── x86_dbgkd_control_set_t.start.hpp │ │ │ │ ├── x86_ktrap_frame_blue_t.end.hpp │ │ │ │ ├── x86_ktrap_frame_blue_t.start.hpp │ │ │ │ ├── x86_ktrap_frame_t.end.hpp │ │ │ │ ├── x86_ktrap_frame_t.start.hpp │ │ │ │ ├── xpf_mc_bank_flags_t.end.hpp │ │ │ │ ├── xpf_mc_bank_flags_t.start.hpp │ │ │ │ ├── xpf_mce_flags_t.end.hpp │ │ │ │ ├── xpf_mce_flags_t.start.hpp │ │ │ │ ├── xpf_recovery_info_t.end.hpp │ │ │ │ ├── xpf_recovery_info_t.start.hpp │ │ │ │ ├── xsave_area_header_t.end.hpp │ │ │ │ ├── xsave_area_header_t.start.hpp │ │ │ │ ├── xsave_area_t.end.hpp │ │ │ │ ├── xsave_area_t.start.hpp │ │ │ │ ├── xsdt_t.end.hpp │ │ │ │ ├── xsdt_t.start.hpp │ │ │ │ ├── xstate_configuration_t.end.hpp │ │ │ │ ├── xstate_configuration_t.start.hpp │ │ │ │ ├── xstate_context_t.end.hpp │ │ │ │ ├── xstate_context_t.start.hpp │ │ │ │ ├── xstate_feature_t.end.hpp │ │ │ │ ├── xstate_feature_t.start.hpp │ │ │ │ ├── xstate_save_t.end.hpp │ │ │ │ ├── xstate_save_t.start.hpp │ │ │ │ ├── zone_descriptior_t.end.hpp │ │ │ │ ├── zone_descriptior_t.start.hpp │ │ │ │ ├── zone_header_t.end.hpp │ │ │ │ └── zone_header_t.start.hpp │ │ │ ├── mailslot_create_parameters_t.hpp │ │ │ ├── map_register_entry_t.hpp │ │ │ ├── mapic_t.hpp │ │ │ ├── mapped_file_segment_t.hpp │ │ │ ├── mbcb_t.hpp │ │ │ ├── mbr/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── mbr_entry/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── mbr_header/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── mca_amd_block_type_t.hpp │ │ │ ├── mcb_t.hpp │ │ │ ├── mcg_cap_t.hpp │ │ │ ├── mcg_status_t.hpp │ │ │ ├── mcgen_trace_context_t.hpp │ │ │ ├── mci_status_amd_bits_t.hpp │ │ │ ├── mci_status_bits_common_t.hpp │ │ │ ├── mci_status_intel_bits_t.hpp │ │ │ ├── mci_status_t.hpp │ │ │ ├── mcupdate_info_t.hpp │ │ │ ├── mdl_t.hpp │ │ │ ├── mechanical_status_information_header_t.hpp │ │ │ ├── mechanical_status_t.hpp │ │ │ ├── media_blank_type_t.hpp │ │ │ ├── media_change_detection_info_t.hpp │ │ │ ├── media_change_detection_state_t.hpp │ │ │ ├── media_type_t.hpp │ │ │ ├── mem_dedicated_attribute_type_t.hpp │ │ │ ├── mem_extended_parameter_t.hpp │ │ │ ├── memory_allocation_descriptor_t.hpp │ │ │ ├── memory_caching_requirements_t.hpp │ │ │ ├── memory_caching_type_orig_t.hpp │ │ │ ├── memory_caching_type_t.hpp │ │ │ ├── memory_dump32_t.hpp │ │ │ ├── memory_dump64_t.hpp │ │ │ ├── memory_information_class_t.hpp │ │ │ ├── memory_mirroring_data_t.hpp │ │ │ ├── memory_partition_information_class_t.hpp │ │ │ ├── memory_physical_contiguity_unit_state_t.hpp │ │ │ ├── memory_range_entry_t.hpp │ │ │ ├── metro_hash64/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── mipfnblink_t.hpp │ │ │ ├── mipi_dsi_caps_t.hpp │ │ │ ├── mipi_dsi_packet_t.hpp │ │ │ ├── mipi_dsi_reset_t.hpp │ │ │ ├── mipi_dsi_transmission_t.hpp │ │ │ ├── mmaddress_list_t.hpp │ │ │ ├── mmclone_block_t.hpp │ │ │ ├── mmclone_descriptor_t.hpp │ │ │ ├── mmclone_header_t.hpp │ │ │ ├── mmdereference_segment_header_t.hpp │ │ │ ├── mmextend_info_t.hpp │ │ │ ├── mmflush_type_t.hpp │ │ │ ├── mminpage_flags_t.hpp │ │ │ ├── mminpage_support_flow_through_t.hpp │ │ │ ├── mminpage_support_t.hpp │ │ │ ├── mmlists_t.hpp │ │ │ ├── mmmod_writer_listhead_t.hpp │ │ │ ├── mmmod_writer_mdl_entry_t.hpp │ │ │ ├── mmpage_file_expansion_flags_t.hpp │ │ │ ├── mmpage_file_expansion_t.hpp │ │ │ ├── mmpaging_file_t.hpp │ │ │ ├── mmpfn_t.hpp │ │ │ ├── mmpfnentry1_t.hpp │ │ │ ├── mmpfnentry3_t.hpp │ │ │ ├── mmpfnlist_short_t.hpp │ │ │ ├── mmpfnlist_t.hpp │ │ │ ├── mmpte_hardware_t.hpp │ │ │ ├── mmpte_list_t.hpp │ │ │ ├── mmpte_prototype_t.hpp │ │ │ ├── mmpte_software_t.hpp │ │ │ ├── mmpte_subsection_t.hpp │ │ │ ├── mmpte_t.hpp │ │ │ ├── mmpte_timestamp_t.hpp │ │ │ ├── mmpte_transition_t.hpp │ │ │ ├── mmsection_flags2_t.hpp │ │ │ ├── mmsection_flags_t.hpp │ │ │ ├── mmsecure_flags_t.hpp │ │ │ ├── mmsession_t.hpp │ │ │ ├── mmsubsection_flags_t.hpp │ │ │ ├── mmsupport_aggregation_t.hpp │ │ │ ├── mmsupport_flags_t.hpp │ │ │ ├── mmsupport_full_t.hpp │ │ │ ├── mmsupport_instance_t.hpp │ │ │ ├── mmsupport_shared_t.hpp │ │ │ ├── mmvad_flags1_t.hpp │ │ │ ├── mmvad_flags2_t.hpp │ │ │ ├── mmvad_flags_t.hpp │ │ │ ├── mmvad_short_t.hpp │ │ │ ├── mmvad_t.hpp │ │ │ ├── mmworking_set_expansion_head_t.hpp │ │ │ ├── mmwsl_full_t.hpp │ │ │ ├── mmwsl_instance_t.hpp │ │ │ ├── mmwsl_shared_t.hpp │ │ │ ├── mmwsle_free_entry_t.hpp │ │ │ ├── mmwsle_hash_t.hpp │ │ │ ├── mmwsle_nondirect_hash_t.hpp │ │ │ ├── mmwsle_t.hpp │ │ │ ├── mmwslentry_t.hpp │ │ │ ├── mode_caching_page_ex_t.hpp │ │ │ ├── mode_caching_page_t.hpp │ │ │ ├── mode_cdrom_write_parameters_page2_t.hpp │ │ │ ├── mode_cdrom_write_parameters_page_t.hpp │ │ │ ├── mode_control_page_t.hpp │ │ │ ├── mode_disconnect_page_t.hpp │ │ │ ├── mode_flexible_disk_page_t.hpp │ │ │ ├── mode_format_page_t.hpp │ │ │ ├── mode_info_exceptions_t.hpp │ │ │ ├── mode_mrw_page_t.hpp │ │ │ ├── mode_parameter_block_t.hpp │ │ │ ├── mode_parameter_header10_t.hpp │ │ │ ├── mode_parameter_header_t.hpp │ │ │ ├── mode_parm_read_write_t.hpp │ │ │ ├── mode_read_recovery_page_t.hpp │ │ │ ├── mode_read_write_recovery_page_t.hpp │ │ │ ├── mode_rigid_geometry_page_t.hpp │ │ │ ├── mode_t.hpp │ │ │ ├── modwriter_flags_t.hpp │ │ │ ├── mp_device_data_set_range_t.hpp │ │ │ ├── mp_storage_diagnostic_level_t.hpp │ │ │ ├── mp_storage_diagnostic_target_type_t.hpp │ │ │ ├── mpio_pass_through_path32_ex_t.hpp │ │ │ ├── mpio_pass_through_path32_t.hpp │ │ │ ├── mpio_pass_through_path_direct32_ex_t.hpp │ │ │ ├── mpio_pass_through_path_direct32_t.hpp │ │ │ ├── mpio_pass_through_path_direct_ex_t.hpp │ │ │ ├── mpio_pass_through_path_direct_t.hpp │ │ │ ├── mpio_pass_through_path_ex_t.hpp │ │ │ ├── mpio_pass_through_path_t.hpp │ │ │ ├── msubsection_t.hpp │ │ │ ├── msv1_0_av_pair_t.hpp │ │ │ ├── msv1_0_credential_key_t.hpp │ │ │ ├── msv1_0_credential_key_type_t.hpp │ │ │ ├── msv1_0_enumusers_request_t.hpp │ │ │ ├── msv1_0_enumusers_response_t.hpp │ │ │ ├── msv1_0_getchallenresp_request_t.hpp │ │ │ ├── msv1_0_getchallenresp_request_v1_t.hpp │ │ │ ├── msv1_0_getchallenresp_response_t.hpp │ │ │ ├── msv1_0_getuserinfo_request_t.hpp │ │ │ ├── msv1_0_getuserinfo_response_t.hpp │ │ │ ├── msv1_0_interactive_logon_t.hpp │ │ │ ├── msv1_0_interactive_profile_t.hpp │ │ │ ├── msv1_0_ium_supplemental_credential_t.hpp │ │ │ ├── msv1_0_lm20_challenge_request_t.hpp │ │ │ ├── msv1_0_lm20_challenge_response_t.hpp │ │ │ ├── msv1_0_lm20_logon_profile_t.hpp │ │ │ ├── msv1_0_lm20_logon_t.hpp │ │ │ ├── msv1_0_logon_submit_type_t.hpp │ │ │ ├── msv1_0_ntlm3_response_t.hpp │ │ │ ├── msv1_0_profile_buffer_type_t.hpp │ │ │ ├── msv1_0_protocol_message_type_t.hpp │ │ │ ├── msv1_0_remote_supplemental_credential_t.hpp │ │ │ ├── msv1_0_s4u_logon_t.hpp │ │ │ ├── msv1_0_subauth_logon_t.hpp │ │ │ ├── msv1_0_supplemental_credential_t.hpp │ │ │ ├── msv1_0_supplemental_credential_v2_t.hpp │ │ │ ├── msv1_0_supplemental_credential_v3_t.hpp │ │ │ ├── named_pipe_create_parameters_t.hpp │ │ │ ├── nb10_t.hpp │ │ │ ├── network_app_instance_ecp_context_t.hpp │ │ │ ├── network_app_instance_version_ecp_context_t.hpp │ │ │ ├── network_loader_block_t.hpp │ │ │ ├── network_open_ecp_context_t.hpp │ │ │ ├── network_open_ecp_context_v0_t.hpp │ │ │ ├── nfs_open_ecp_context_t.hpp │ │ │ ├── non_paged_debug_info_t.hpp │ │ │ ├── nonopaque_oplock_t.hpp │ │ │ ├── notification_busy_status_t.hpp │ │ │ ├── notification_event_status_header_t.hpp │ │ │ ├── notification_external_status_t.hpp │ │ │ ├── notification_media_status_t.hpp │ │ │ ├── notification_multi_host_status_t.hpp │ │ │ ├── notification_operational_status_t.hpp │ │ │ ├── notification_power_status_t.hpp │ │ │ ├── np_context/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── npaged_lookaside_list_t.hpp │ │ │ ├── npi_client_characteristics_t.hpp │ │ │ ├── npi_provider_characteristics_t.hpp │ │ │ ├── npi_registration_instance_t.hpp │ │ │ ├── ntscsi_unicode_string_t.hpp │ │ │ ├── numa_memory_range_t.hpp │ │ │ ├── numa_node_relationship_t.hpp │ │ │ ├── nv_feature_parameter_t.hpp │ │ │ ├── nv_memory_range_t.hpp │ │ │ ├── nv_sep_cache_parameter_t.hpp │ │ │ ├── nv_sep_write_cache_type_t.hpp │ │ │ ├── nvcache_hint_payload_t.hpp │ │ │ ├── nvcache_priority_level_descriptor_t.hpp │ │ │ ├── nvcache_request_block_t.hpp │ │ │ ├── nvcache_status_t.hpp │ │ │ ├── nvcache_type_t.hpp │ │ │ ├── object_attributes_t.hpp │ │ │ ├── object_create_information_t.hpp │ │ │ ├── object_directory_entry_t.hpp │ │ │ ├── object_directory_t.hpp │ │ │ ├── object_dump_control_t.hpp │ │ │ ├── object_footer_t.hpp │ │ │ ├── object_handle_count_database_t.hpp │ │ │ ├── object_handle_count_entry_t.hpp │ │ │ ├── object_handle_information_t.hpp │ │ │ ├── object_header_audit_info_t.hpp │ │ │ ├── object_header_creator_info_t.hpp │ │ │ ├── object_header_extended_info_t.hpp │ │ │ ├── object_header_handle_info_t.hpp │ │ │ ├── object_header_name_info_t.hpp │ │ │ ├── object_header_padding_info_t.hpp │ │ │ ├── object_header_process_info_t.hpp │ │ │ ├── object_header_quota_info_t.hpp │ │ │ ├── object_header_t.hpp │ │ │ ├── object_information_class_t.hpp │ │ │ ├── object_name_information_t.hpp │ │ │ ├── object_namespace_lookuptable_t.hpp │ │ │ ├── object_ref_info_t.hpp │ │ │ ├── object_ref_stack_info_t.hpp │ │ │ ├── object_ref_trace_t.hpp │ │ │ ├── object_symbolic_link_t.hpp │ │ │ ├── object_type_initializer_t.hpp │ │ │ ├── object_type_list_t.hpp │ │ │ ├── object_type_t.hpp │ │ │ ├── objectid_t.hpp │ │ │ ├── offline_crashdump_configuration_table_v2_t.hpp │ │ │ ├── opc_table_entry_t.hpp │ │ │ ├── open_packet_t.hpp │ │ │ ├── open_reparse_list_entry_t.hpp │ │ │ ├── open_reparse_list_t.hpp │ │ │ ├── opencount_reason_t.hpp │ │ │ ├── operation_status_t.hpp │ │ │ ├── oplock_key_ecp_context_t.hpp │ │ │ ├── oplock_notify_params_t.hpp │ │ │ ├── os_deployement_state_values_t.hpp │ │ │ ├── osversioninfoexw_t.hpp │ │ │ ├── osversioninfow_t.hpp │ │ │ ├── output_color_encoding_t.hpp │ │ │ ├── output_wire_color_space_type_t.hpp │ │ │ ├── output_wire_format_t.hpp │ │ │ ├── outputdupl_context_debug_info_t.hpp │ │ │ ├── outputdupl_context_debug_status_t.hpp │ │ │ ├── overwrite_parameter_list_t.hpp │ │ │ ├── owner_entry_t.hpp │ │ │ ├── paged_lookaside_list_t.hpp │ │ │ ├── pagefault_history_t.hpp │ │ │ ├── palpc_port_reference_wait_block_t.hpp │ │ │ ├── panel_brightness_sensor_data_t.hpp │ │ │ ├── panel_get_backlight_reduction_t.hpp │ │ │ ├── panel_get_brightness_t.hpp │ │ │ ├── panel_query_brightness_caps_t.hpp │ │ │ ├── panel_query_brightness_ranges_t.hpp │ │ │ ├── panel_set_backlight_optimization_t.hpp │ │ │ ├── panel_set_brightness_state_t.hpp │ │ │ ├── panel_set_brightness_t.hpp │ │ │ ├── partition_information_ex_t.hpp │ │ │ ├── partition_information_gpt_t.hpp │ │ │ ├── partition_information_mbr_t.hpp │ │ │ ├── partition_information_t.hpp │ │ │ ├── partition_style_t.hpp │ │ │ ├── password_policy_validation_type_t.hpp │ │ │ ├── pc_disk/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── pc_environment/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── pc_gpt/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── pc_mbr/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── pc_raw/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── pcat_firmware_information_t.hpp │ │ │ ├── pcw_buffer_t.hpp │ │ │ ├── pcw_callback_information_t.hpp │ │ │ ├── pcw_callback_type_t.hpp │ │ │ ├── pcw_counter_descriptor_t.hpp │ │ │ ├── pcw_counter_information_t.hpp │ │ │ ├── pcw_data_t.hpp │ │ │ ├── pcw_instance_t.hpp │ │ │ ├── pcw_mask_information_t.hpp │ │ │ ├── pcw_processor_info_t.hpp │ │ │ ├── pcw_registration_flags_t.hpp │ │ │ ├── pcw_registration_information_t.hpp │ │ │ ├── pcw_registration_t.hpp │ │ │ ├── pdc_activity_type_t.hpp │ │ │ ├── pdc_cs_phase_t.hpp │ │ │ ├── pdc_resource_t.hpp │ │ │ ├── pdcclientid_t.hpp │ │ │ ├── peb32_t.hpp │ │ │ ├── peb64_t.hpp │ │ │ ├── peb_ldr_data_t.hpp │ │ │ ├── peb_t.hpp │ │ │ ├── pebs_ds_save_area32_t.hpp │ │ │ ├── pebs_ds_save_area64_t.hpp │ │ │ ├── pebs_ds_save_area_t.hpp │ │ │ ├── pending_relations_list_entry_t.hpp │ │ │ ├── pephandle_t.hpp │ │ │ ├── perfinfo_groupmask_t.hpp │ │ │ ├── perfinfo_kernelmemory_usage_type_t.hpp │ │ │ ├── perfinfo_mm_stat_t.hpp │ │ │ ├── perfinfo_ppm_state_selection_t.hpp │ │ │ ├── performance_descriptor_t.hpp │ │ │ ├── periodic_capture_state_context_t.hpp │ │ │ ├── periodic_capture_state_guids_t.hpp │ │ │ ├── periodic_flush_frequency_t.hpp │ │ │ ├── persistent_reserve_command_t.hpp │ │ │ ├── physical_counter_event_buffer_configuration_t.hpp │ │ │ ├── physical_counter_resource_descriptor_t.hpp │ │ │ ├── physical_counter_resource_descriptor_type_t.hpp │ │ │ ├── physical_counter_resource_list_t.hpp │ │ │ ├── physical_device_extension_t.hpp │ │ │ ├── physical_element_status_data_descriptor_t.hpp │ │ │ ├── physical_element_status_descriptor_t.hpp │ │ │ ├── physical_element_status_parameter_data_t.hpp │ │ │ ├── physical_element_status_request_t.hpp │ │ │ ├── physical_element_status_t.hpp │ │ │ ├── physical_extents_descriptor_t.hpp │ │ │ ├── physical_memory_descriptor32_t.hpp │ │ │ ├── physical_memory_descriptor64_t.hpp │ │ │ ├── physical_memory_descriptor_t.hpp │ │ │ ├── physical_memory_range_t.hpp │ │ │ ├── physical_memory_run32_t.hpp │ │ │ ├── physical_memory_run64_t.hpp │ │ │ ├── physical_memory_run_t.hpp │ │ │ ├── platform_idle_accounting_t.hpp │ │ │ ├── platform_idle_state_accounting_t.hpp │ │ │ ├── platform_interrupt_t.hpp │ │ │ ├── plugplay_event_block_t.hpp │ │ │ ├── plugplay_event_category_t.hpp │ │ │ ├── pohandle_t.hpp │ │ │ ├── policy_audit_event_type_t.hpp │ │ │ ├── pool_descriptor_t.hpp │ │ │ ├── pool_header_t.hpp │ │ │ ├── pool_limit_info_t.hpp │ │ │ ├── pool_limit_table_entry_t.hpp │ │ │ ├── pool_tracker_big_pages_t.hpp │ │ │ ├── pool_tracker_table_t.hpp │ │ │ ├── pool_type_t.hpp │ │ │ ├── port_message32_t.hpp │ │ │ ├── port_message_t.hpp │ │ │ ├── port_output_t.hpp │ │ │ ├── ppc_dbgkd_control_set_t.hpp │ │ │ ├── prefetch_open_ecp_context_t.hpp │ │ │ ├── prefetch_virtual_address_list_t.hpp │ │ │ ├── prefix_table_entry_t.hpp │ │ │ ├── prefix_table_t.hpp │ │ │ ├── prevent_media_removal_t.hpp │ │ │ ├── private_cache_map_flags_t.hpp │ │ │ ├── private_cache_map_t.hpp │ │ │ ├── private_volume_cachemap_t.hpp │ │ │ ├── privilege_set_t.hpp │ │ │ ├── proc_feedback_counter_t.hpp │ │ │ ├── proc_feedback_t.hpp │ │ │ ├── proc_hypervisor_state_t.hpp │ │ │ ├── proc_idle_accounting_t.hpp │ │ │ ├── proc_idle_policy_t.hpp │ │ │ ├── proc_idle_snap_t.hpp │ │ │ ├── proc_idle_state_accounting_t.hpp │ │ │ ├── proc_idle_state_bucket_t.hpp │ │ │ ├── proc_perf_check_context_t.hpp │ │ │ ├── proc_perf_check_cycle_snap_t.hpp │ │ │ ├── proc_perf_check_snap_t.hpp │ │ │ ├── proc_perf_check_t.hpp │ │ │ ├── proc_perf_constraint_t.hpp │ │ │ ├── proc_perf_domain_t.hpp │ │ │ ├── proc_perf_history_entry_t.hpp │ │ │ ├── proc_perf_history_t.hpp │ │ │ ├── proc_perf_load_t.hpp │ │ │ ├── proc_perf_qos_class_policy_t.hpp │ │ │ ├── process_attribute_list_t.hpp │ │ │ ├── process_create_info_t.hpp │ │ │ ├── process_disk_counters_t.hpp │ │ │ ├── process_energy_values_extension_t.hpp │ │ │ ├── process_energy_values_t.hpp │ │ │ ├── process_extended_energy_values_t.hpp │ │ │ ├── process_perf_counters_t.hpp │ │ │ ├── process_section_type_t.hpp │ │ │ ├── process_terminate_request_reason_t.hpp │ │ │ ├── process_va_type_t.hpp │ │ │ ├── processor_cache_type_t.hpp │ │ │ ├── processor_cycles_workload_class_t.hpp │ │ │ ├── processor_group_info_t.hpp │ │ │ ├── processor_idle_constraints_t.hpp │ │ │ ├── processor_idle_dependency_t.hpp │ │ │ ├── processor_idle_prepare_info_t.hpp │ │ │ ├── processor_idlestate_info_t.hpp │ │ │ ├── processor_idlestate_policy_t.hpp │ │ │ ├── processor_number_t.hpp │ │ │ ├── processor_perfstate_policy_t.hpp │ │ │ ├── processor_platform_state_residencies_t.hpp │ │ │ ├── processor_platform_state_residency_t.hpp │ │ │ ├── processor_power_state_t.hpp │ │ │ ├── processor_presence_t.hpp │ │ │ ├── processor_profile_control_area_t.hpp │ │ │ ├── processor_relationship_t.hpp │ │ │ ├── proclocalapic_t.hpp │ │ │ ├── proclocalgic_t.hpp │ │ │ ├── proclocalsapic_t.hpp │ │ │ ├── proclocalx2apic_t.hpp │ │ │ ├── profile_departure_style_t.hpp │ │ │ ├── profile_parameter_block_t.hpp │ │ │ ├── profile_status_t.hpp │ │ │ ├── provider_binary_entry_t.hpp │ │ │ ├── pscreateprocessnotifytype_t.hpp │ │ │ ├── pscreatethreadnotifytype_t.hpp │ │ │ ├── psprocessprioritymode_t.hpp │ │ │ ├── pte_tracker_t.hpp │ │ │ ├── public_bcb_t.hpp │ │ │ ├── qai_driverversion_t.hpp │ │ │ ├── quad_t.hpp │ │ │ ├── query_interface_t.hpp │ │ │ ├── query_on_create_ea_information_t.hpp │ │ │ ├── query_on_create_ecp_context_t.hpp │ │ │ ├── query_on_create_file_lx_information_t.hpp │ │ │ ├── query_on_create_file_stat_information_t.hpp │ │ │ ├── query_path_request_ex_t.hpp │ │ │ ├── query_path_request_t.hpp │ │ │ ├── query_path_response_t.hpp │ │ │ ├── raw_read_info_t.hpp │ │ │ ├── read_ahead_parameters_t.hpp │ │ │ ├── read_block_limits_t.hpp │ │ │ ├── read_buffer_capacity_data_t.hpp │ │ │ ├── read_capacity16_data_t.hpp │ │ │ ├── read_capacity_data_ex_t.hpp │ │ │ ├── read_capacity_data_t.hpp │ │ │ ├── read_dvd_structures_header_t.hpp │ │ │ ├── read_element_address_info_t.hpp │ │ │ ├── read_list_t.hpp │ │ │ ├── real_notify_sync_t.hpp │ │ │ ├── reassign_blocks_ex_t.hpp │ │ │ ├── reassign_blocks_t.hpp │ │ │ ├── refs_set_volume_compression_info_flags_t.hpp │ │ │ ├── refs_stream_snapshot_operation_t.hpp │ │ │ ├── reg_notify_class_t.hpp │ │ │ ├── registered_interrupt_controller_t.hpp │ │ │ ├── registered_iommu_t.hpp │ │ │ ├── relation_list_t.hpp │ │ │ ├── relative_symlink_info_t.hpp │ │ │ ├── remote_port_view_t.hpp │ │ │ ├── remove_element_and_truncate_request_t.hpp │ │ │ ├── reparse_data_buffer_t.hpp │ │ │ ├── reparse_t.hpp │ │ │ ├── replaces_cor_hdr_numeric_defines_t.hpp │ │ │ ├── report_zones_data_t.hpp │ │ │ ├── request_mailbox_t.hpp │ │ │ ├── requester_type_t.hpp │ │ │ ├── resourcemanager_information_class_t.hpp │ │ │ ├── rh_op_context_t.hpp │ │ │ ├── rkf_bypass_ecp_context_t.hpp │ │ │ ├── rs5_image_load_config_directory64_t.hpp │ │ │ ├── rsdp_t.hpp │ │ │ ├── rsds_t.hpp │ │ │ ├── rsdt_32_t.hpp │ │ │ ├── sam_generic_operation_input_t.hpp │ │ │ ├── sam_generic_operation_output_t.hpp │ │ │ ├── sam_generic_operation_type_t.hpp │ │ │ ├── sam_operation_objchg_input_t.hpp │ │ │ ├── sam_operation_objchg_output_t.hpp │ │ │ ├── sam_validate_authentication_input_arg_t.hpp │ │ │ ├── sam_validate_input_arg_t.hpp │ │ │ ├── sam_validate_output_arg_t.hpp │ │ │ ├── sam_validate_password_change_input_arg_t.hpp │ │ │ ├── sam_validate_password_reset_input_arg_t.hpp │ │ │ ├── sam_validate_standard_output_arg_t.hpp │ │ │ ├── saved_internal_status_parameter_data_t.hpp │ │ │ ├── sc_device/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── sc_disk/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── sc_env/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── sc_gpt/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── sc_mbr/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── sc_raw/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── scatter_gather_element_t.hpp │ │ │ ├── scatter_gather_list_t.hpp │ │ │ ├── scm_interleaved_pd_info_t.hpp │ │ │ ├── scm_ld_interleave_set_info_t.hpp │ │ │ ├── scm_logical_device_instance_t.hpp │ │ │ ├── scm_logical_devices_t.hpp │ │ │ ├── scm_pd_descriptor_header_t.hpp │ │ │ ├── scm_pd_device_handle_t.hpp │ │ │ ├── scm_pd_device_info_t.hpp │ │ │ ├── scm_pd_device_specific_info_t.hpp │ │ │ ├── scm_pd_device_specific_property_t.hpp │ │ │ ├── scm_pd_firmware_activate_t.hpp │ │ │ ├── scm_pd_firmware_download_t.hpp │ │ │ ├── scm_pd_firmware_info_t.hpp │ │ │ ├── scm_pd_firmware_slot_info_t.hpp │ │ │ ├── scm_pd_health_notification_data_t.hpp │ │ │ ├── scm_pd_health_status_t.hpp │ │ │ ├── scm_pd_location_string_t.hpp │ │ │ ├── scm_pd_management_status_t.hpp │ │ │ ├── scm_pd_media_reinitialization_status_t.hpp │ │ │ ├── scm_pd_operational_status_reason_t.hpp │ │ │ ├── scm_pd_operational_status_t.hpp │ │ │ ├── scm_pd_passthrough_input_t.hpp │ │ │ ├── scm_pd_passthrough_invdimm_input_t.hpp │ │ │ ├── scm_pd_passthrough_invdimm_output_t.hpp │ │ │ ├── scm_pd_passthrough_output_t.hpp │ │ │ ├── scm_pd_property_id_t.hpp │ │ │ ├── scm_pd_property_query_t.hpp │ │ │ ├── scm_pd_query_type_t.hpp │ │ │ ├── scm_pd_reinitialize_media_input_t.hpp │ │ │ ├── scm_pd_reinitialize_media_output_t.hpp │ │ │ ├── scm_physical_device_instance_t.hpp │ │ │ ├── scm_physical_devices_t.hpp │ │ │ ├── scm_region_flag_t.hpp │ │ │ ├── scm_region_t.hpp │ │ │ ├── scm_regions_t.hpp │ │ │ ├── scsi_adapter_bus_info_t.hpp │ │ │ ├── scsi_address_t.hpp │ │ │ ├── scsi_bus_data_t.hpp │ │ │ ├── scsi_extended_message_t.hpp │ │ │ ├── scsi_inquiry_data_t.hpp │ │ │ ├── scsi_pass_through32_ex_t.hpp │ │ │ ├── scsi_pass_through32_t.hpp │ │ │ ├── scsi_pass_through_direct32_ex_t.hpp │ │ │ ├── scsi_pass_through_direct32_t.hpp │ │ │ ├── scsi_pass_through_direct_ex_t.hpp │ │ │ ├── scsi_pass_through_direct_t.hpp │ │ │ ├── scsi_pass_through_ex_t.hpp │ │ │ ├── scsi_pass_through_t.hpp │ │ │ ├── scsi_pnp_request_block_t.hpp │ │ │ ├── scsi_request_block_t.hpp │ │ │ ├── scsi_sense_descriptor_ata_status_return_t.hpp │ │ │ ├── scsi_supported_control_type_list_t.hpp │ │ │ ├── secondary_ic_list_entry_t.hpp │ │ │ ├── secondary_interrupt_line_state_t.hpp │ │ │ ├── secondary_interrupt_provider_interface_t.hpp │ │ │ ├── section_image_information_t.hpp │ │ │ ├── section_inherit_t.hpp │ │ │ ├── section_object_pointers_t.hpp │ │ │ ├── section_t.hpp │ │ │ ├── segment_flags_t.hpp │ │ │ ├── segment_t.hpp │ │ │ ├── segmentation_vp8_t.hpp │ │ │ ├── segmentation_vp9_t.hpp │ │ │ ├── self_test_results_t.hpp │ │ │ ├── sendcmdinparams_t.hpp │ │ │ ├── sendcmdoutparams_t.hpp │ │ │ ├── server_silo_monitor_registration_t.hpp │ │ │ ├── server_silo_monitor_t.hpp │ │ │ ├── serversilo_state_t.hpp │ │ │ ├── ses_additional_element_status_descriptor_t.hpp │ │ │ ├── ses_additional_element_status_diagnostic_page_t.hpp │ │ │ ├── ses_configuration_diagnostic_page_t.hpp │ │ │ ├── ses_control_descriptor_t.hpp │ │ │ ├── ses_control_diagnostic_page_t.hpp │ │ │ ├── ses_diagnostic_page_t.hpp │ │ │ ├── ses_download_microcode_control_diagnostic_page_t.hpp │ │ │ ├── ses_download_microcode_state_t.hpp │ │ │ ├── ses_download_microcode_status_descriptor_t.hpp │ │ │ ├── ses_download_microcode_status_diagnostic_page_t.hpp │ │ │ ├── ses_element_state_t.hpp │ │ │ ├── ses_element_type_t.hpp │ │ │ ├── ses_enclosure_descriptor_t.hpp │ │ │ ├── ses_phy_descriptor_t.hpp │ │ │ ├── ses_protocol_information_t.hpp │ │ │ ├── ses_sas_slot_information_t.hpp │ │ │ ├── ses_status_descriptor_t.hpp │ │ │ ├── ses_status_diagnostic_page_t.hpp │ │ │ ├── ses_type_descriptor_header_t.hpp │ │ │ ├── session_lowbox_map_t.hpp │ │ │ ├── set_active_color_profile_name_t.hpp │ │ │ ├── set_disk_attributes_t.hpp │ │ │ ├── set_partition_attributes_t.hpp │ │ │ ├── set_partition_information_ex_t.hpp │ │ │ ├── set_partition_information_t.hpp │ │ │ ├── share_access_t.hpp │ │ │ ├── shared_cache_map_list_cursor_t.hpp │ │ │ ├── shared_cache_map_t.hpp │ │ │ ├── sid_and_attributes_hash_t.hpp │ │ │ ├── sid_and_attributes_t.hpp │ │ │ ├── sid_identifier_authority_t.hpp │ │ │ ├── sid_name_use_t.hpp │ │ │ ├── sid_t.hpp │ │ │ ├── silo_monitor_registration_t.hpp │ │ │ ├── silo_user_shared_data_t.hpp │ │ │ ├── single_list_entry32_t.hpp │ │ │ ├── single_list_entry_t.hpp │ │ │ ├── skservice_t.hpp │ │ │ ├── sleepstudy_spm_scenario_cs_exit_t.hpp │ │ │ ├── slist_entry_t.hpp │ │ │ ├── slist_header_t.hpp │ │ │ ├── slot_table_information_t.hpp │ │ │ ├── smbios3_table_header_t.hpp │ │ │ ├── sockaddr_storage_t.hpp │ │ │ ├── solid_state_media_t.hpp │ │ │ ├── srb_history_item_t.hpp │ │ │ ├── srb_history_t.hpp │ │ │ ├── srb_io_control_t.hpp │ │ │ ├── srv_instance_type_t.hpp │ │ │ ├── srv_open_ecp_context_t.hpp │ │ │ ├── st_eta_helper/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── stack_table_t.hpp │ │ │ ├── state_location_type_t.hpp │ │ │ ├── status_block_t.hpp │ │ │ ├── stor_device_capabilities_ex_t.hpp │ │ │ ├── stor_device_capabilities_t.hpp │ │ │ ├── storage_access_alignment_descriptor_t.hpp │ │ │ ├── storage_adapter_descriptor_t.hpp │ │ │ ├── storage_adapter_serial_number_t.hpp │ │ │ ├── storage_allocate_bc_stream_input_t.hpp │ │ │ ├── storage_allocate_bc_stream_output_t.hpp │ │ │ ├── storage_association_type_t.hpp │ │ │ ├── storage_attribute_mgmt_action_t.hpp │ │ │ ├── storage_attribute_mgmt_t.hpp │ │ │ ├── storage_break_reservation_request_t.hpp │ │ │ ├── storage_bus_reset_request_t.hpp │ │ │ ├── storage_component_health_status_t.hpp │ │ │ ├── storage_counter_t.hpp │ │ │ ├── storage_counter_type_t.hpp │ │ │ ├── storage_counters_t.hpp │ │ │ ├── storage_crypto_algorithm_id_t.hpp │ │ │ ├── storage_crypto_capability_t.hpp │ │ │ ├── storage_crypto_descriptor_t.hpp │ │ │ ├── storage_crypto_key_size_t.hpp │ │ │ ├── storage_descriptor_header_t.hpp │ │ │ ├── storage_device_attributes_descriptor_t.hpp │ │ │ ├── storage_device_descriptor_t.hpp │ │ │ ├── storage_device_fault_domain_descriptor_t.hpp │ │ │ ├── storage_device_form_factor_t.hpp │ │ │ ├── storage_device_id_descriptor_t.hpp │ │ │ ├── storage_device_io_capability_descriptor_t.hpp │ │ │ ├── storage_device_location_descriptor_t.hpp │ │ │ ├── storage_device_management_status_t.hpp │ │ │ ├── storage_device_numa_property_t.hpp │ │ │ ├── storage_device_number_ex_t.hpp │ │ │ ├── storage_device_number_t.hpp │ │ │ ├── storage_device_numbers_t.hpp │ │ │ ├── storage_device_power_cap_t.hpp │ │ │ ├── storage_device_power_cap_units_t.hpp │ │ │ ├── storage_device_resiliency_descriptor_t.hpp │ │ │ ├── storage_device_tiering_descriptor_t.hpp │ │ │ ├── storage_device_unsafe_shutdown_count_t.hpp │ │ │ ├── storage_diagnostic_data_t.hpp │ │ │ ├── storage_diagnostic_level_t.hpp │ │ │ ├── storage_diagnostic_mp_request_t.hpp │ │ │ ├── storage_diagnostic_request_t.hpp │ │ │ ├── storage_diagnostic_target_type_t.hpp │ │ │ ├── storage_disk_health_status_t.hpp │ │ │ ├── storage_disk_operational_status_t.hpp │ │ │ ├── storage_endurance_data_descriptor_t.hpp │ │ │ ├── storage_endurance_info_t.hpp │ │ │ ├── storage_event_notification_t.hpp │ │ │ ├── storage_failure_prediction_config_t.hpp │ │ │ ├── storage_firmware_activate_t.hpp │ │ │ ├── storage_firmware_download_t.hpp │ │ │ ├── storage_firmware_download_v2_t.hpp │ │ │ ├── storage_firmware_info_t.hpp │ │ │ ├── storage_firmware_info_v2_t.hpp │ │ │ ├── storage_firmware_slot_info_t.hpp │ │ │ ├── storage_firmware_slot_info_v2_t.hpp │ │ │ ├── storage_get_bc_properties_output_t.hpp │ │ │ ├── storage_hotplug_info_t.hpp │ │ │ ├── storage_hw_endurance_data_descriptor_t.hpp │ │ │ ├── storage_hw_endurance_info_t.hpp │ │ │ ├── storage_hw_firmware_activate_t.hpp │ │ │ ├── storage_hw_firmware_download_t.hpp │ │ │ ├── storage_hw_firmware_download_v2_t.hpp │ │ │ ├── storage_hw_firmware_info_query_t.hpp │ │ │ ├── storage_hw_firmware_info_t.hpp │ │ │ ├── storage_hw_firmware_slot_info_t.hpp │ │ │ ├── storage_id_naa_format_t.hpp │ │ │ ├── storage_identifier_code_set_t.hpp │ │ │ ├── storage_identifier_t.hpp │ │ │ ├── storage_identifier_type_t.hpp │ │ │ ├── storage_idle_power_t.hpp │ │ │ ├── storage_idle_powerup_reason_t.hpp │ │ │ ├── storage_lb_provisioning_map_resources_t.hpp │ │ │ ├── storage_media_serial_number_data_t.hpp │ │ │ ├── storage_media_type_t.hpp │ │ │ ├── storage_medium_product_type_descriptor_t.hpp │ │ │ ├── storage_miniport_descriptor_t.hpp │ │ │ ├── storage_offload_read_output_t.hpp │ │ │ ├── storage_offload_token_t.hpp │ │ │ ├── storage_offload_write_output_t.hpp │ │ │ ├── storage_operational_reason_t.hpp │ │ │ ├── storage_operational_status_reason_t.hpp │ │ │ ├── storage_physical_adapter_data_t.hpp │ │ │ ├── storage_physical_device_data_t.hpp │ │ │ ├── storage_physical_node_data_t.hpp │ │ │ ├── storage_physical_topology_descriptor_t.hpp │ │ │ ├── storage_port_code_set_t.hpp │ │ │ ├── storage_predict_failure_t.hpp │ │ │ ├── storage_priority_hint_support_t.hpp │ │ │ ├── storage_property_id_t.hpp │ │ │ ├── storage_property_query_t.hpp │ │ │ ├── storage_property_set_t.hpp │ │ │ ├── storage_protocol_ata_data_type_t.hpp │ │ │ ├── storage_protocol_command_t.hpp │ │ │ ├── storage_protocol_data_descriptor_ext_t.hpp │ │ │ ├── storage_protocol_data_descriptor_t.hpp │ │ │ ├── storage_protocol_nvme_data_type_t.hpp │ │ │ ├── storage_protocol_specific_data_ext_t.hpp │ │ │ ├── storage_protocol_specific_data_t.hpp │ │ │ ├── storage_protocol_type_t.hpp │ │ │ ├── storage_protocol_ufs_data_type_t.hpp │ │ │ ├── storage_query_type_t.hpp │ │ │ ├── storage_read_capacity_t.hpp │ │ │ ├── storage_rpmb_command_type_t.hpp │ │ │ ├── storage_rpmb_data_frame_t.hpp │ │ │ ├── storage_rpmb_descriptor_t.hpp │ │ │ ├── storage_set_type_t.hpp │ │ │ ├── storage_spec_version_t.hpp │ │ │ ├── storage_temperature_data_descriptor_t.hpp │ │ │ ├── storage_temperature_info_t.hpp │ │ │ ├── storage_temperature_threshold_t.hpp │ │ │ ├── storage_tier_class_t.hpp │ │ │ ├── storage_tier_media_type_t.hpp │ │ │ ├── storage_tier_region_t.hpp │ │ │ ├── storage_tier_t.hpp │ │ │ ├── storage_write_cache_property_t.hpp │ │ │ ├── storage_zone_condition_t.hpp │ │ │ ├── storage_zone_descriptor_t.hpp │ │ │ ├── storage_zone_group_t.hpp │ │ │ ├── storage_zone_types_t.hpp │ │ │ ├── storage_zoned_device_descriptor_t.hpp │ │ │ ├── storage_zoned_device_types_t.hpp │ │ │ ├── storage_zones_attributes_t.hpp │ │ │ ├── stream_information_t.hpp │ │ │ ├── streaming_control_request_type_t.hpp │ │ │ ├── sub_q_channel_data_t.hpp │ │ │ ├── sub_q_current_position_t.hpp │ │ │ ├── sub_q_header_t.hpp │ │ │ ├── sub_q_media_catalog_number_t.hpp │ │ │ ├── sub_q_track_isrc_t.hpp │ │ │ ├── subsection_t.hpp │ │ │ ├── suite_type_t.hpp │ │ │ ├── summary_dump32_t.hpp │ │ │ ├── summary_dump64_t.hpp │ │ │ ├── supported_range_t.hpp │ │ │ ├── supported_ranges_t.hpp │ │ │ ├── supported_security_protocols_parameter_data_t.hpp │ │ │ ├── synch_counters_t.hpp │ │ │ ├── sysptes_header_t.hpp │ │ │ ├── system_dll_type_t.hpp │ │ │ ├── system_feature_configuration_section_type_t.hpp │ │ │ ├── system_logical_processor_information_ex_t.hpp │ │ │ ├── system_pool_limit_mem_type_t.hpp │ │ │ ├── system_power_capabilities_t.hpp │ │ │ ├── system_power_condition_t.hpp │ │ │ ├── system_power_level_t.hpp │ │ │ ├── system_power_policy_t.hpp │ │ │ ├── system_power_state_context_t.hpp │ │ │ ├── system_power_state_t.hpp │ │ │ ├── table_search_result_t.hpp │ │ │ ├── tape_get_statistics_t.hpp │ │ │ ├── tape_position_data_t.hpp │ │ │ ├── tape_statistics_t.hpp │ │ │ ├── target_device_custom_notification_t.hpp │ │ │ ├── teb32_t.hpp │ │ │ ├── teb64_t.hpp │ │ │ ├── teb_active_frame_context_t.hpp │ │ │ ├── teb_active_frame_t.hpp │ │ │ ├── teb_t.hpp │ │ │ ├── temperature_t.hpp │ │ │ ├── termination_port_t.hpp │ │ │ ├── thermal_cooling_interface_t.hpp │ │ │ ├── thermal_information_ex_t.hpp │ │ │ ├── thermal_information_t.hpp │ │ │ ├── thermal_policy_t.hpp │ │ │ ├── thermal_zone_counters_t.hpp │ │ │ ├── thread_energy_values_t.hpp │ │ │ ├── thread_performance_data_t.hpp │ │ │ ├── thread_workload_class_t.hpp │ │ │ ├── threadinfoclass_t.hpp │ │ │ ├── threshold_resource_count_t.hpp │ │ │ ├── time_fields_t.hpp │ │ │ ├── timeline_bitmap_t.hpp │ │ │ ├── timer_type_t.hpp │ │ │ ├── timezone_change_event_t.hpp │ │ │ ├── token_access_information_t.hpp │ │ │ ├── token_audit_policy_t.hpp │ │ │ ├── token_control_t.hpp │ │ │ ├── token_groups_t.hpp │ │ │ ├── token_information_class_t.hpp │ │ │ ├── token_mandatory_policy_t.hpp │ │ │ ├── token_privileges_t.hpp │ │ │ ├── token_source_t.hpp │ │ │ ├── token_t.hpp │ │ │ ├── token_type_t.hpp │ │ │ ├── track_data_t.hpp │ │ │ ├── track_information2_t.hpp │ │ │ ├── track_information3_t.hpp │ │ │ ├── track_information_t.hpp │ │ │ ├── track_mode_type_t.hpp │ │ │ ├── transaction_information_class_t.hpp │ │ │ ├── transaction_notification_t.hpp │ │ │ ├── transactionmanager_information_class_t.hpp │ │ │ ├── transfer_count_units_t.hpp │ │ │ ├── transfer_type_t.hpp │ │ │ ├── triage_9f_pnp_t.hpp │ │ │ ├── triage_9f_power_t.hpp │ │ │ ├── triage_data_block_t.hpp │ │ │ ├── triage_device_node_t.hpp │ │ │ ├── triage_dump32_t.hpp │ │ │ ├── triage_dump64_t.hpp │ │ │ ├── triage_ex_work_queue_t.hpp │ │ │ ├── triage_pnp_device_completion_queue_t.hpp │ │ │ ├── triage_pnp_device_completion_request_t.hpp │ │ │ ├── triage_pop_fx_device_t.hpp │ │ │ ├── triage_pop_irp_data_t.hpp │ │ │ ├── trustlet_collaboration_id_t.hpp │ │ │ ├── trustlet_mailbox_key_t.hpp │ │ │ ├── tunnel_t.hpp │ │ │ ├── txn_parameter_block_t.hpp │ │ │ ├── type_of_memory_t.hpp │ │ │ ├── ums_control_block_t.hpp │ │ │ ├── unexpected_interrupt_t.hpp │ │ │ ├── unicode_prefix_table_entry_t.hpp │ │ │ ├── unicode_prefix_table_t.hpp │ │ │ ├── unloaded_drivers32_t.hpp │ │ │ ├── unloaded_drivers64_t.hpp │ │ │ ├── unmap_block_descriptor_t.hpp │ │ │ ├── unmap_list_header_t.hpp │ │ │ ├── uo_w_action_type_t.hpp │ │ │ ├── usbfn_direction_t.hpp │ │ │ ├── user_activity_presence_t.hpp │ │ │ ├── user_information_class_t.hpp │ │ │ ├── user_pwd_change_failure_information_t.hpp │ │ │ ├── usermode_crashdump_header32_t.hpp │ │ │ ├── usermode_crashdump_header64_t.hpp │ │ │ ├── usermode_crashdump_header_t.hpp │ │ │ ├── vacb_array_header_t.hpp │ │ │ ├── vacb_level_allocation_list_t.hpp │ │ │ ├── vacb_level_reference_t.hpp │ │ │ ├── vacb_t.hpp │ │ │ ├── vdmserviceclass_t.hpp │ │ │ ├── verify_information_t.hpp │ │ │ ├── vga_char_t.hpp │ │ │ ├── vhf_config_t.hpp │ │ │ ├── virtual_efi_runtime_services_t.hpp │ │ │ ├── virtual_memory_information_class_t.hpp │ │ │ ├── volume_cache_map_t.hpp │ │ │ ├── volume_control_t.hpp │ │ │ ├── volume_disk_extents_t.hpp │ │ │ ├── volume_get_gpt_attributes_information_t.hpp │ │ │ ├── vp_device_description_t.hpp │ │ │ ├── vp_lock_operation_t.hpp │ │ │ ├── vp_pool_type_t.hpp │ │ │ ├── vp_scatter_gather_element_t.hpp │ │ │ ├── vp_scatter_gather_list_t.hpp │ │ │ ├── vpb_t.hpp │ │ │ ├── vpd_association_t.hpp │ │ │ ├── vpd_ata_information_page_t.hpp │ │ │ ├── vpd_block_device_characteristics_page_t.hpp │ │ │ ├── vpd_block_limits_page_t.hpp │ │ │ ├── vpd_code_set_t.hpp │ │ │ ├── vpd_extended_inquiry_data_page_t.hpp │ │ │ ├── vpd_identifier_type_t.hpp │ │ │ ├── vpd_logical_block_provisioning_page_t.hpp │ │ │ ├── vpd_media_serial_number_page_t.hpp │ │ │ ├── vpd_serial_number_page_t.hpp │ │ │ ├── vpd_supported_pages_page_t.hpp │ │ │ ├── vpd_third_party_copy_page_t.hpp │ │ │ ├── vpd_zoned_block_device_characteristics_page_t.hpp │ │ │ ├── vposversioninfo_t.hpp │ │ │ ├── vrb_sg_t.hpp │ │ │ ├── vrf_rule_class_id_t.hpp │ │ │ ├── vrf_triage_context_t.hpp │ │ │ ├── vsm_performance_data_t.hpp │ │ │ ├── wait_context_block_t.hpp │ │ │ ├── wait_type_t.hpp │ │ │ ├── waiting_irp_t.hpp │ │ │ ├── wdt_handle_t.hpp │ │ │ ├── windows_block_device_token_limits_descriptor_t.hpp │ │ │ ├── work_queue_entry_t.hpp │ │ │ ├── work_queue_item_t.hpp │ │ │ ├── work_queue_type_t.hpp │ │ │ ├── worker_function_t.hpp │ │ │ ├── working_set_type_t.hpp │ │ │ ├── wow64_shared_information_t.hpp │ │ │ ├── write_behind_throughput_t.hpp │ │ │ ├── write_cache_change_t.hpp │ │ │ ├── write_cache_enable_t.hpp │ │ │ ├── write_cache_type_t.hpp │ │ │ ├── write_rotation_t.hpp │ │ │ ├── write_through_t.hpp │ │ │ ├── x86_dbgkd_control_set_t.hpp │ │ │ ├── x86_ktrap_frame_blue_t.hpp │ │ │ ├── x86_ktrap_frame_t.hpp │ │ │ ├── xpf_mc_bank_flags_t.hpp │ │ │ ├── xpf_mce_flags_t.hpp │ │ │ ├── xpf_recovery_info_t.hpp │ │ │ ├── xsave_area_header_t.hpp │ │ │ ├── xsave_area_t.hpp │ │ │ ├── xsdt_t.hpp │ │ │ ├── xstate_configuration_t.hpp │ │ │ ├── xstate_context_t.hpp │ │ │ ├── xstate_feature_t.hpp │ │ │ ├── xstate_save_t.hpp │ │ │ ├── zone_descriptior_t.hpp │ │ │ └── zone_header_t.hpp │ │ ├── ntdll/ │ │ │ ├── api.hpp │ │ │ ├── dph_block_information_t.hpp │ │ │ ├── dph_heap_block_t.hpp │ │ │ ├── dph_heap_root_t.hpp │ │ │ ├── interlock_seq_t.hpp │ │ │ ├── inverted_function_table_user_mode_t.hpp │ │ │ ├── lfh_block_zone_t.hpp │ │ │ ├── lfh_heap_t.hpp │ │ │ ├── lfh_random_data_t.hpp │ │ │ ├── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ ├── api.start.hpp │ │ │ │ ├── dph_block_information_t.end.hpp │ │ │ │ ├── dph_block_information_t.start.hpp │ │ │ │ ├── dph_heap_block_t.end.hpp │ │ │ │ ├── dph_heap_block_t.start.hpp │ │ │ │ ├── dph_heap_root_t.end.hpp │ │ │ │ ├── dph_heap_root_t.start.hpp │ │ │ │ ├── interlock_seq_t.end.hpp │ │ │ │ ├── interlock_seq_t.start.hpp │ │ │ │ ├── inverted_function_table_user_mode_t.end.hpp │ │ │ │ ├── inverted_function_table_user_mode_t.start.hpp │ │ │ │ ├── lfh_block_zone_t.end.hpp │ │ │ │ ├── lfh_block_zone_t.start.hpp │ │ │ │ ├── lfh_heap_t.end.hpp │ │ │ │ ├── lfh_heap_t.start.hpp │ │ │ │ ├── lfh_random_data_t.end.hpp │ │ │ │ ├── lfh_random_data_t.start.hpp │ │ │ │ ├── mca_exception_t.end.hpp │ │ │ │ ├── mca_exception_t.start.hpp │ │ │ │ ├── mci_addr_t.end.hpp │ │ │ │ ├── mci_addr_t.start.hpp │ │ │ │ ├── mci_stats_t.end.hpp │ │ │ │ ├── mci_stats_t.start.hpp │ │ │ │ ├── segment_heap_extra_t.end.hpp │ │ │ │ ├── segment_heap_extra_t.start.hpp │ │ │ │ ├── segment_heap_t.end.hpp │ │ │ │ ├── segment_heap_t.start.hpp │ │ │ │ ├── stack_trace_database_t.end.hpp │ │ │ │ ├── stack_trace_database_t.start.hpp │ │ │ │ ├── user_memory_cache_entry_t.end.hpp │ │ │ │ └── user_memory_cache_entry_t.start.hpp │ │ │ ├── mca_exception_t.hpp │ │ │ ├── mca_exception_type_t.hpp │ │ │ ├── mci_addr_t.hpp │ │ │ ├── mci_stats_t.hpp │ │ │ ├── segment_heap_extra_t.hpp │ │ │ ├── segment_heap_t.hpp │ │ │ ├── stack_trace_database_t.hpp │ │ │ └── user_memory_cache_entry_t.hpp │ │ ├── ob/ │ │ │ ├── api.hpp │ │ │ ├── callback_registration_t.hpp │ │ │ ├── duplicate_object_state_t.hpp │ │ │ ├── extended_parse_parameters_t.hpp │ │ │ ├── extended_user_info_t.hpp │ │ │ ├── handle_revocation_block_t.hpp │ │ │ ├── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ ├── api.start.hpp │ │ │ │ ├── callback_registration_t.end.hpp │ │ │ │ ├── callback_registration_t.start.hpp │ │ │ │ ├── duplicate_object_state_t.end.hpp │ │ │ │ ├── duplicate_object_state_t.start.hpp │ │ │ │ ├── extended_parse_parameters_t.end.hpp │ │ │ │ ├── extended_parse_parameters_t.start.hpp │ │ │ │ ├── extended_user_info_t.end.hpp │ │ │ │ ├── extended_user_info_t.start.hpp │ │ │ │ ├── handle_revocation_block_t.end.hpp │ │ │ │ ├── handle_revocation_block_t.start.hpp │ │ │ │ ├── operation_registration_t.end.hpp │ │ │ │ ├── operation_registration_t.start.hpp │ │ │ │ ├── post_create_handle_information_t.end.hpp │ │ │ │ ├── post_create_handle_information_t.start.hpp │ │ │ │ ├── post_duplicate_handle_information_t.end.hpp │ │ │ │ ├── post_duplicate_handle_information_t.start.hpp │ │ │ │ ├── post_operation_information_t.end.hpp │ │ │ │ ├── post_operation_information_t.start.hpp │ │ │ │ ├── post_operation_parameters_t.end.hpp │ │ │ │ ├── post_operation_parameters_t.start.hpp │ │ │ │ ├── pre_create_handle_information_t.end.hpp │ │ │ │ ├── pre_create_handle_information_t.start.hpp │ │ │ │ ├── pre_duplicate_handle_information_t.end.hpp │ │ │ │ ├── pre_duplicate_handle_information_t.start.hpp │ │ │ │ ├── pre_operation_information_t.end.hpp │ │ │ │ ├── pre_operation_information_t.start.hpp │ │ │ │ ├── pre_operation_parameters_t.end.hpp │ │ │ │ └── pre_operation_parameters_t.start.hpp │ │ │ ├── open_reason_t.hpp │ │ │ ├── operation_registration_t.hpp │ │ │ ├── post_create_handle_information_t.hpp │ │ │ ├── post_duplicate_handle_information_t.hpp │ │ │ ├── post_operation_information_t.hpp │ │ │ ├── post_operation_parameters_t.hpp │ │ │ ├── pre_create_handle_information_t.hpp │ │ │ ├── pre_duplicate_handle_information_t.hpp │ │ │ ├── pre_operation_information_t.hpp │ │ │ ├── pre_operation_parameters_t.hpp │ │ │ └── preop_callback_status_t.hpp │ │ ├── obp/ │ │ │ ├── api.hpp │ │ │ ├── lookup_context_t.hpp │ │ │ ├── lookup_dir_entry_flags_t.hpp │ │ │ ├── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ ├── api.start.hpp │ │ │ │ ├── lookup_context_t.end.hpp │ │ │ │ ├── lookup_context_t.start.hpp │ │ │ │ ├── silodriverstate_t.end.hpp │ │ │ │ ├── silodriverstate_t.start.hpp │ │ │ │ ├── system_dos_device_state_t.end.hpp │ │ │ │ └── system_dos_device_state_t.start.hpp │ │ │ ├── silodriverstate_t.hpp │ │ │ └── system_dos_device_state_t.hpp │ │ ├── os/ │ │ │ ├── api.hpp │ │ │ ├── disk/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── ioring_bufferref_t.hpp │ │ │ ├── ioring_completion_queue_t.hpp │ │ │ ├── ioring_cqe_t.hpp │ │ │ ├── ioring_create_advisory_flags_t.hpp │ │ │ ├── ioring_create_flags_t.hpp │ │ │ ├── ioring_create_required_flags_t.hpp │ │ │ ├── ioring_handleref_t.hpp │ │ │ ├── ioring_info_t.hpp │ │ │ ├── ioring_op_cancel_t.hpp │ │ │ ├── ioring_op_flags_t.hpp │ │ │ ├── ioring_op_flush_t.hpp │ │ │ ├── ioring_op_read_t.hpp │ │ │ ├── ioring_op_register_buffers_t.hpp │ │ │ ├── ioring_op_register_files_t.hpp │ │ │ ├── ioring_op_reserved_t.hpp │ │ │ ├── ioring_op_write_t.hpp │ │ │ ├── ioring_reg_buffers_adv_flags_t.hpp │ │ │ ├── ioring_reg_buffers_flags_t.hpp │ │ │ ├── ioring_reg_buffers_req_flags_t.hpp │ │ │ ├── ioring_reg_files_adv_flags_t.hpp │ │ │ ├── ioring_reg_files_flags_t.hpp │ │ │ ├── ioring_reg_files_req_flags_t.hpp │ │ │ ├── ioring_sq_flags_t.hpp │ │ │ ├── ioring_sqe_flags_t.hpp │ │ │ ├── ioring_sqe_t.hpp │ │ │ ├── ioring_submission_queue_t.hpp │ │ │ ├── km/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ ├── api.start.hpp │ │ │ │ ├── ioring_bufferref_t.end.hpp │ │ │ │ ├── ioring_bufferref_t.start.hpp │ │ │ │ ├── ioring_completion_queue_t.end.hpp │ │ │ │ ├── ioring_completion_queue_t.start.hpp │ │ │ │ ├── ioring_cqe_t.end.hpp │ │ │ │ ├── ioring_cqe_t.start.hpp │ │ │ │ ├── ioring_create_flags_t.end.hpp │ │ │ │ ├── ioring_create_flags_t.start.hpp │ │ │ │ ├── ioring_handleref_t.end.hpp │ │ │ │ ├── ioring_handleref_t.start.hpp │ │ │ │ ├── ioring_info_t.end.hpp │ │ │ │ ├── ioring_info_t.start.hpp │ │ │ │ ├── ioring_op_cancel_t.end.hpp │ │ │ │ ├── ioring_op_cancel_t.start.hpp │ │ │ │ ├── ioring_op_flush_t.end.hpp │ │ │ │ ├── ioring_op_flush_t.start.hpp │ │ │ │ ├── ioring_op_read_t.end.hpp │ │ │ │ ├── ioring_op_read_t.start.hpp │ │ │ │ ├── ioring_op_register_buffers_t.end.hpp │ │ │ │ ├── ioring_op_register_buffers_t.start.hpp │ │ │ │ ├── ioring_op_register_files_t.end.hpp │ │ │ │ ├── ioring_op_register_files_t.start.hpp │ │ │ │ ├── ioring_op_reserved_t.end.hpp │ │ │ │ ├── ioring_op_reserved_t.start.hpp │ │ │ │ ├── ioring_op_write_t.end.hpp │ │ │ │ ├── ioring_op_write_t.start.hpp │ │ │ │ ├── ioring_reg_buffers_flags_t.end.hpp │ │ │ │ ├── ioring_reg_buffers_flags_t.start.hpp │ │ │ │ ├── ioring_reg_files_flags_t.end.hpp │ │ │ │ ├── ioring_reg_files_flags_t.start.hpp │ │ │ │ ├── ioring_sqe_t.end.hpp │ │ │ │ ├── ioring_sqe_t.start.hpp │ │ │ │ ├── ioring_submission_queue_t.end.hpp │ │ │ │ ├── ioring_submission_queue_t.start.hpp │ │ │ │ ├── tib32_t.end.hpp │ │ │ │ ├── tib32_t.start.hpp │ │ │ │ ├── tib64_t.end.hpp │ │ │ │ ├── tib64_t.start.hpp │ │ │ │ ├── tib_t.end.hpp │ │ │ │ └── tib_t.start.hpp │ │ │ ├── product_type_t.hpp │ │ │ ├── tib32_t.hpp │ │ │ ├── tib64_t.hpp │ │ │ ├── tib_t.hpp │ │ │ └── write_flags_t.hpp │ │ ├── pci/ │ │ │ ├── acs_bit_t.hpp │ │ │ ├── acs_hierarchy_support_t.hpp │ │ │ ├── advanced_features_capability_t.hpp │ │ │ ├── agp_aperture_page_size_t.hpp │ │ │ ├── agp_capability_t.hpp │ │ │ ├── agp_command_t.hpp │ │ │ ├── agp_control_t.hpp │ │ │ ├── agp_extended_capability_t.hpp │ │ │ ├── agp_isoch_command_t.hpp │ │ │ ├── agp_isoch_status_t.hpp │ │ │ ├── agp_status_t.hpp │ │ │ ├── api.hpp │ │ │ ├── ats_interface_t.hpp │ │ │ ├── bridge_requirement_hint_t.hpp │ │ │ ├── bridge_requirements_t.hpp │ │ │ ├── bridge_resources_t.hpp │ │ │ ├── bridge_t.hpp │ │ │ ├── bridge_window_requirement_t.hpp │ │ │ ├── bus_async_dispatcher_context_t.hpp │ │ │ ├── bus_fpga_control_t.hpp │ │ │ ├── bus_interface_standard_t.hpp │ │ │ ├── bus_power_reference_reasons_t.hpp │ │ │ ├── bus_power_states_t.hpp │ │ │ ├── bus_t.hpp │ │ │ ├── bus_width_t.hpp │ │ │ ├── busmaster_descriptor_t.hpp │ │ │ ├── busmaster_rid_type_t.hpp │ │ │ ├── capabilities_header_t.hpp │ │ │ ├── cfg_access_log_entry_flag_t.hpp │ │ │ ├── cfg_access_log_entry_t.hpp │ │ │ ├── cfg_access_log_t.hpp │ │ │ ├── cfg_record_entry_header_t.hpp │ │ │ ├── cfg_record_entry_t.hpp │ │ │ ├── cfg_record_t.hpp │ │ │ ├── children_busnum_hint_t.hpp │ │ │ ├── common_config_t.hpp │ │ │ ├── common_header_t.hpp │ │ │ ├── control_device_extension_t.hpp │ │ │ ├── conventional_wake_states_t.hpp │ │ │ ├── custom_setting_flags_t.hpp │ │ │ ├── custom_settings_t.hpp │ │ │ ├── d3cold_aux_power_and_timing_aggregation_info_t.hpp │ │ │ ├── d3cold_aux_power_and_timing_device_info_t.hpp │ │ │ ├── d3cold_interface_request_t.hpp │ │ │ ├── d3cold_last_transition_status_t.hpp │ │ │ ├── d3cold_support_interface_t.hpp │ │ │ ├── d3cold_support_t.hpp │ │ │ ├── debugging_device_in_use_t.hpp │ │ │ ├── delay_type_t.hpp │ │ │ ├── device_d3cold_state_reason_t.hpp │ │ │ ├── device_early_restore_traces_t.hpp │ │ │ ├── device_interrupt_requirement_t.hpp │ │ │ ├── device_interrupt_resource_t.hpp │ │ │ ├── device_presence_parameters_t.hpp │ │ │ ├── device_present_interface_t.hpp │ │ │ ├── device_requirements_t.hpp │ │ │ ├── device_reset_state_t.hpp │ │ │ ├── device_resources_t.hpp │ │ │ ├── device_start_worker_parameters_t.hpp │ │ │ ├── device_t.hpp │ │ │ ├── device_usage_t.hpp │ │ │ ├── dma_properties_t.hpp │ │ │ ├── downstream_switchport_t.hpp │ │ │ ├── dsm_ignore_boot_config_state_t.hpp │ │ │ ├── express_acs_capability_register_t.hpp │ │ │ ├── express_acs_capability_t.hpp │ │ │ ├── express_acs_control_t.hpp │ │ │ ├── express_aer_capabilities_t.hpp │ │ │ ├── express_aer_capability_t.hpp │ │ │ ├── express_ari_capability_register_t.hpp │ │ │ ├── express_ari_capability_t.hpp │ │ │ ├── express_ari_control_register_t.hpp │ │ │ ├── express_aspm_control_t.hpp │ │ │ ├── express_aspm_support_t.hpp │ │ │ ├── express_ats_capability_register_t.hpp │ │ │ ├── express_ats_capability_t.hpp │ │ │ ├── express_ats_control_register_t.hpp │ │ │ ├── express_bridge_aer_capability_t.hpp │ │ │ ├── express_bridge_t.hpp │ │ │ ├── express_capabilities_register_t.hpp │ │ │ ├── express_capability_t.hpp │ │ │ ├── express_card_presence_t.hpp │ │ │ ├── express_compatibility_port_t.hpp │ │ │ ├── express_correctable_error_mask_t.hpp │ │ │ ├── express_correctable_error_status_t.hpp │ │ │ ├── express_cxl_dvsec_capability_register_v11_t.hpp │ │ │ ├── express_cxl_dvsec_capability_t.hpp │ │ │ ├── express_cxl_dvsec_capability_v11_t.hpp │ │ │ ├── express_cxl_dvsec_control_register_t.hpp │ │ │ ├── express_cxl_dvsec_lock_register_t.hpp │ │ │ ├── express_cxl_dvsec_range_base_high_register_t.hpp │ │ │ ├── express_cxl_dvsec_range_base_low_register_t.hpp │ │ │ ├── express_cxl_dvsec_range_size_high_register_t.hpp │ │ │ ├── express_cxl_dvsec_range_size_low_register_v11_t.hpp │ │ │ ├── express_cxl_dvsec_status_register_t.hpp │ │ │ ├── express_designated_vendor_specific_capability_t.hpp │ │ │ ├── express_designated_vendor_specific_header_1_t.hpp │ │ │ ├── express_designated_vendor_specific_header_2_t.hpp │ │ │ ├── express_designated_vendor_specific_nhi_attribute_t.hpp │ │ │ ├── express_designated_vendor_specific_pci_attribute_t.hpp │ │ │ ├── express_designated_vendor_specific_port_specific_attribute_t.hpp │ │ │ ├── express_designated_vendor_specific_usb_attribute_t.hpp │ │ │ ├── express_device_capabilities_2_register_t.hpp │ │ │ ├── express_device_capabilities_register_t.hpp │ │ │ ├── express_device_control_2_register_t.hpp │ │ │ ├── express_device_control_register_t.hpp │ │ │ ├── express_device_status_2_register_t.hpp │ │ │ ├── express_device_status_register_t.hpp │ │ │ ├── express_device_type_t.hpp │ │ │ ├── express_dpc_capability_t.hpp │ │ │ ├── express_dpc_caps_register_t.hpp │ │ │ ├── express_dpc_control_register_t.hpp │ │ │ ├── express_dpc_error_source_id_t.hpp │ │ │ ├── express_dpc_rp_pio_exception_register_t.hpp │ │ │ ├── express_dpc_rp_pio_headerlog_register_t.hpp │ │ │ ├── express_dpc_rp_pio_impspeclog_register_t.hpp │ │ │ ├── express_dpc_rp_pio_mask_register_t.hpp │ │ │ ├── express_dpc_rp_pio_severity_register_t.hpp │ │ │ ├── express_dpc_rp_pio_status_register_t.hpp │ │ │ ├── express_dpc_rp_pio_syserr_register_t.hpp │ │ │ ├── express_dpc_rp_pio_tlpprefixlog_register_t.hpp │ │ │ ├── express_dpc_status_register_t.hpp │ │ │ ├── express_dpc_work_item_t.hpp │ │ │ ├── express_enhanced_capability_header_t.hpp │ │ │ ├── express_error_packet_t.hpp │ │ │ ├── express_error_source_id_t.hpp │ │ │ ├── express_event_collector_endpoint_association_capability_t.hpp │ │ │ ├── express_indicator_state_t.hpp │ │ │ ├── express_l0s_exit_latency_t.hpp │ │ │ ├── express_l1_exit_latency_t.hpp │ │ │ ├── express_l1_pm_ss_capabilities_register_t.hpp │ │ │ ├── express_l1_pm_ss_capability_t.hpp │ │ │ ├── express_l1_pm_ss_control_1_register_t.hpp │ │ │ ├── express_l1_pm_ss_control_2_register_t.hpp │ │ │ ├── express_lane_error_status_t.hpp │ │ │ ├── express_link_capabilities_register_t.hpp │ │ │ ├── express_link_control3_t.hpp │ │ │ ├── express_link_control_register_t.hpp │ │ │ ├── express_link_quiescent_interface_t.hpp │ │ │ ├── express_link_status_register_t.hpp │ │ │ ├── express_link_substate_t.hpp │ │ │ ├── express_link_t.hpp │ │ │ ├── express_ltr_capability_t.hpp │ │ │ ├── express_ltr_max_latency_register_t.hpp │ │ │ ├── express_max_payload_size_t.hpp │ │ │ ├── express_mrl_state_t.hpp │ │ │ ├── express_npem_capability_register_t.hpp │ │ │ ├── express_npem_capability_t.hpp │ │ │ ├── express_npem_control_register_t.hpp │ │ │ ├── express_npem_status_register_t.hpp │ │ │ ├── express_pasid_capability_register_t.hpp │ │ │ ├── express_pasid_capability_t.hpp │ │ │ ├── express_pasid_control_register_t.hpp │ │ │ ├── express_pme_event_type_t.hpp │ │ │ ├── express_pme_requestor_id_t.hpp │ │ │ ├── express_port_obff_control_t.hpp │ │ │ ├── express_port_t.hpp │ │ │ ├── express_power_state_t.hpp │ │ │ ├── express_pri_capability_t.hpp │ │ │ ├── express_pri_control_register_t.hpp │ │ │ ├── express_pri_status_register_t.hpp │ │ │ ├── express_ptm_capability_register_t.hpp │ │ │ ├── express_ptm_capability_t.hpp │ │ │ ├── express_ptm_control_register_t.hpp │ │ │ ├── express_rcb_t.hpp │ │ │ ├── express_resizable_bar_capability_register_t.hpp │ │ │ ├── express_resizable_bar_capability_t.hpp │ │ │ ├── express_resizable_bar_control_register_t.hpp │ │ │ ├── express_resizable_bar_entry_t.hpp │ │ │ ├── express_root_capabilities_register_t.hpp │ │ │ ├── express_root_control_register_t.hpp │ │ │ ├── express_root_error_command_t.hpp │ │ │ ├── express_root_error_status_t.hpp │ │ │ ├── express_root_port_interface_t.hpp │ │ │ ├── express_root_status_register_t.hpp │ │ │ ├── express_rootport_aer_capability_t.hpp │ │ │ ├── express_sec_aer_capabilities_t.hpp │ │ │ ├── express_sec_uncorrectable_error_mask_t.hpp │ │ │ ├── express_sec_uncorrectable_error_severity_t.hpp │ │ │ ├── express_sec_uncorrectable_error_status_t.hpp │ │ │ ├── express_secondary_capability_t.hpp │ │ │ ├── express_serial_number_capability_t.hpp │ │ │ ├── express_slot_capabilities_register_t.hpp │ │ │ ├── express_slot_control_register_t.hpp │ │ │ ├── express_slot_status_register_t.hpp │ │ │ ├── express_sriov_capability_t.hpp │ │ │ ├── express_sriov_caps_t.hpp │ │ │ ├── express_sriov_control_t.hpp │ │ │ ├── express_sriov_migration_state_array_t.hpp │ │ │ ├── express_sriov_status_t.hpp │ │ │ ├── express_tph_requester_capability_register_t.hpp │ │ │ ├── express_tph_requester_capability_t.hpp │ │ │ ├── express_tph_requester_control_register_t.hpp │ │ │ ├── express_tph_st_table_entry_t.hpp │ │ │ ├── express_uncorrectable_error_mask_t.hpp │ │ │ ├── express_uncorrectable_error_severity_t.hpp │ │ │ ├── express_uncorrectable_error_status_t.hpp │ │ │ ├── express_vendor_specific_capability_t.hpp │ │ │ ├── express_virtual_channel_capability_t.hpp │ │ │ ├── express_wake_states_t.hpp │ │ │ ├── firmware_bus_caps_return_buffer_t.hpp │ │ │ ├── firmware_bus_caps_t.hpp │ │ │ ├── fpb_arbiter_t.hpp │ │ │ ├── fpb_capabilities_register_t.hpp │ │ │ ├── fpb_capability_header_t.hpp │ │ │ ├── fpb_capability_support_t.hpp │ │ │ ├── fpb_capability_t.hpp │ │ │ ├── fpb_fdo_dynamic_flags_t.hpp │ │ │ ├── fpb_fdo_resource_allocation_context_t.hpp │ │ │ ├── fpb_fdo_resource_t.hpp │ │ │ ├── fpb_fdo_static_flags_t.hpp │ │ │ ├── fpb_fdo_t.hpp │ │ │ ├── fpb_mem_high_vector_control1_register_t.hpp │ │ │ ├── fpb_mem_high_vector_control2_register_t.hpp │ │ │ ├── fpb_mem_low_vector_control_register_t.hpp │ │ │ ├── fpb_memory_range_list_t.hpp │ │ │ ├── fpb_pdo_dynamic_flags_t.hpp │ │ │ ├── fpb_pdo_resource_t.hpp │ │ │ ├── fpb_pdo_static_flags_t.hpp │ │ │ ├── fpb_pdo_t.hpp │ │ │ ├── fpb_resource_descriptor_t.hpp │ │ │ ├── fpb_resource_type_t.hpp │ │ │ ├── fpb_rid_vector_control1_register_t.hpp │ │ │ ├── fpb_rid_vector_control2_register_t.hpp │ │ │ ├── fpb_vector_access_control_register_t.hpp │ │ │ ├── fpb_vector_access_data_register_t.hpp │ │ │ ├── hardware_interface_t.hpp │ │ │ ├── header_operations_t.hpp │ │ │ ├── header_type_0_t.hpp │ │ │ ├── header_type_1_t.hpp │ │ │ ├── header_type_2_t.hpp │ │ │ ├── hibernate_info_t.hpp │ │ │ ├── hotplug_commandtype_t.hpp │ │ │ ├── hotplug_controller_t.hpp │ │ │ ├── hotplug_event_type_t.hpp │ │ │ ├── hotplug_slot_interrupt_t.hpp │ │ │ ├── hotplug_slot_state_t.hpp │ │ │ ├── hotplug_slot_t.hpp │ │ │ ├── hotplug_worker_parameters_t.hpp │ │ │ ├── hpx_info_t.hpp │ │ │ ├── hpx_type_0_t.hpp │ │ │ ├── hpx_type_2_t.hpp │ │ │ ├── interrupt_type_t.hpp │ │ │ ├── magic/ │ │ │ │ ├── advanced_features_capability_t.end.hpp │ │ │ │ ├── advanced_features_capability_t.start.hpp │ │ │ │ ├── agp_aperture_page_size_t.end.hpp │ │ │ │ ├── agp_aperture_page_size_t.start.hpp │ │ │ │ ├── agp_capability_t.end.hpp │ │ │ │ ├── agp_capability_t.start.hpp │ │ │ │ ├── agp_command_t.end.hpp │ │ │ │ ├── agp_command_t.start.hpp │ │ │ │ ├── agp_control_t.end.hpp │ │ │ │ ├── agp_control_t.start.hpp │ │ │ │ ├── agp_extended_capability_t.end.hpp │ │ │ │ ├── agp_extended_capability_t.start.hpp │ │ │ │ ├── agp_isoch_command_t.end.hpp │ │ │ │ ├── agp_isoch_command_t.start.hpp │ │ │ │ ├── agp_isoch_status_t.end.hpp │ │ │ │ ├── agp_isoch_status_t.start.hpp │ │ │ │ ├── agp_status_t.end.hpp │ │ │ │ ├── agp_status_t.start.hpp │ │ │ │ ├── api.end.hpp │ │ │ │ ├── api.start.hpp │ │ │ │ ├── ats_interface_t.end.hpp │ │ │ │ ├── ats_interface_t.start.hpp │ │ │ │ ├── bridge_requirement_hint_t.end.hpp │ │ │ │ ├── bridge_requirement_hint_t.start.hpp │ │ │ │ ├── bridge_requirements_t.end.hpp │ │ │ │ ├── bridge_requirements_t.start.hpp │ │ │ │ ├── bridge_resources_t.end.hpp │ │ │ │ ├── bridge_resources_t.start.hpp │ │ │ │ ├── bridge_t.end.hpp │ │ │ │ ├── bridge_t.start.hpp │ │ │ │ ├── bridge_window_requirement_t.end.hpp │ │ │ │ ├── bridge_window_requirement_t.start.hpp │ │ │ │ ├── bus_async_dispatcher_context_t.end.hpp │ │ │ │ ├── bus_async_dispatcher_context_t.start.hpp │ │ │ │ ├── bus_fpga_control_t.end.hpp │ │ │ │ ├── bus_fpga_control_t.start.hpp │ │ │ │ ├── bus_interface_standard_t.end.hpp │ │ │ │ ├── bus_interface_standard_t.start.hpp │ │ │ │ ├── bus_t.end.hpp │ │ │ │ ├── bus_t.start.hpp │ │ │ │ ├── busmaster_descriptor_t.end.hpp │ │ │ │ ├── busmaster_descriptor_t.start.hpp │ │ │ │ ├── capabilities_header_t.end.hpp │ │ │ │ ├── capabilities_header_t.start.hpp │ │ │ │ ├── cfg_access_log_entry_flag_t.end.hpp │ │ │ │ ├── cfg_access_log_entry_flag_t.start.hpp │ │ │ │ ├── cfg_access_log_entry_t.end.hpp │ │ │ │ ├── cfg_access_log_entry_t.start.hpp │ │ │ │ ├── cfg_access_log_t.end.hpp │ │ │ │ ├── cfg_access_log_t.start.hpp │ │ │ │ ├── cfg_record_entry_header_t.end.hpp │ │ │ │ ├── cfg_record_entry_header_t.start.hpp │ │ │ │ ├── cfg_record_entry_t.end.hpp │ │ │ │ ├── cfg_record_entry_t.start.hpp │ │ │ │ ├── cfg_record_t.end.hpp │ │ │ │ ├── cfg_record_t.start.hpp │ │ │ │ ├── children_busnum_hint_t.end.hpp │ │ │ │ ├── children_busnum_hint_t.start.hpp │ │ │ │ ├── common_config_t.end.hpp │ │ │ │ ├── common_config_t.start.hpp │ │ │ │ ├── common_header_t.end.hpp │ │ │ │ ├── common_header_t.start.hpp │ │ │ │ ├── control_device_extension_t.end.hpp │ │ │ │ ├── control_device_extension_t.start.hpp │ │ │ │ ├── custom_setting_flags_t.end.hpp │ │ │ │ ├── custom_setting_flags_t.start.hpp │ │ │ │ ├── custom_settings_t.end.hpp │ │ │ │ ├── custom_settings_t.start.hpp │ │ │ │ ├── d3cold_aux_power_and_timing_aggregation_info_t.end.hpp │ │ │ │ ├── d3cold_aux_power_and_timing_aggregation_info_t.start.hpp │ │ │ │ ├── d3cold_aux_power_and_timing_device_info_t.end.hpp │ │ │ │ ├── d3cold_aux_power_and_timing_device_info_t.start.hpp │ │ │ │ ├── d3cold_support_interface_t.end.hpp │ │ │ │ ├── d3cold_support_interface_t.start.hpp │ │ │ │ ├── debugging_device_in_use_t.end.hpp │ │ │ │ ├── debugging_device_in_use_t.start.hpp │ │ │ │ ├── device_early_restore_traces_t.end.hpp │ │ │ │ ├── device_early_restore_traces_t.start.hpp │ │ │ │ ├── device_interrupt_requirement_t.end.hpp │ │ │ │ ├── device_interrupt_requirement_t.start.hpp │ │ │ │ ├── device_interrupt_resource_t.end.hpp │ │ │ │ ├── device_interrupt_resource_t.start.hpp │ │ │ │ ├── device_presence_parameters_t.end.hpp │ │ │ │ ├── device_presence_parameters_t.start.hpp │ │ │ │ ├── device_present_interface_t.end.hpp │ │ │ │ ├── device_present_interface_t.start.hpp │ │ │ │ ├── device_requirements_t.end.hpp │ │ │ │ ├── device_requirements_t.start.hpp │ │ │ │ ├── device_resources_t.end.hpp │ │ │ │ ├── device_resources_t.start.hpp │ │ │ │ ├── device_start_worker_parameters_t.end.hpp │ │ │ │ ├── device_start_worker_parameters_t.start.hpp │ │ │ │ ├── device_t.end.hpp │ │ │ │ ├── device_t.start.hpp │ │ │ │ ├── device_usage_t.end.hpp │ │ │ │ ├── device_usage_t.start.hpp │ │ │ │ ├── dma_properties_t.end.hpp │ │ │ │ ├── dma_properties_t.start.hpp │ │ │ │ ├── downstream_switchport_t.end.hpp │ │ │ │ ├── downstream_switchport_t.start.hpp │ │ │ │ ├── express_acs_capability_register_t.end.hpp │ │ │ │ ├── express_acs_capability_register_t.start.hpp │ │ │ │ ├── express_acs_capability_t.end.hpp │ │ │ │ ├── express_acs_capability_t.start.hpp │ │ │ │ ├── express_acs_control_t.end.hpp │ │ │ │ ├── express_acs_control_t.start.hpp │ │ │ │ ├── express_aer_capabilities_t.end.hpp │ │ │ │ ├── express_aer_capabilities_t.start.hpp │ │ │ │ ├── express_aer_capability_t.end.hpp │ │ │ │ ├── express_aer_capability_t.start.hpp │ │ │ │ ├── express_ari_capability_register_t.end.hpp │ │ │ │ ├── express_ari_capability_register_t.start.hpp │ │ │ │ ├── express_ari_capability_t.end.hpp │ │ │ │ ├── express_ari_capability_t.start.hpp │ │ │ │ ├── express_ari_control_register_t.end.hpp │ │ │ │ ├── express_ari_control_register_t.start.hpp │ │ │ │ ├── express_ats_capability_register_t.end.hpp │ │ │ │ ├── express_ats_capability_register_t.start.hpp │ │ │ │ ├── express_ats_capability_t.end.hpp │ │ │ │ ├── express_ats_capability_t.start.hpp │ │ │ │ ├── express_ats_control_register_t.end.hpp │ │ │ │ ├── express_ats_control_register_t.start.hpp │ │ │ │ ├── express_bridge_aer_capability_t.end.hpp │ │ │ │ ├── express_bridge_aer_capability_t.start.hpp │ │ │ │ ├── express_bridge_t.end.hpp │ │ │ │ ├── express_bridge_t.start.hpp │ │ │ │ ├── express_capabilities_register_t.end.hpp │ │ │ │ ├── express_capabilities_register_t.start.hpp │ │ │ │ ├── express_capability_t.end.hpp │ │ │ │ ├── express_capability_t.start.hpp │ │ │ │ ├── express_compatibility_port_t.end.hpp │ │ │ │ ├── express_compatibility_port_t.start.hpp │ │ │ │ ├── express_correctable_error_mask_t.end.hpp │ │ │ │ ├── express_correctable_error_mask_t.start.hpp │ │ │ │ ├── express_correctable_error_status_t.end.hpp │ │ │ │ ├── express_correctable_error_status_t.start.hpp │ │ │ │ ├── express_cxl_dvsec_capability_register_v11_t.end.hpp │ │ │ │ ├── express_cxl_dvsec_capability_register_v11_t.start.hpp │ │ │ │ ├── express_cxl_dvsec_capability_t.end.hpp │ │ │ │ ├── express_cxl_dvsec_capability_t.start.hpp │ │ │ │ ├── express_cxl_dvsec_capability_v11_t.end.hpp │ │ │ │ ├── express_cxl_dvsec_capability_v11_t.start.hpp │ │ │ │ ├── express_cxl_dvsec_control_register_t.end.hpp │ │ │ │ ├── express_cxl_dvsec_control_register_t.start.hpp │ │ │ │ ├── express_cxl_dvsec_lock_register_t.end.hpp │ │ │ │ ├── express_cxl_dvsec_lock_register_t.start.hpp │ │ │ │ ├── express_cxl_dvsec_range_base_high_register_t.end.hpp │ │ │ │ ├── express_cxl_dvsec_range_base_high_register_t.start.hpp │ │ │ │ ├── express_cxl_dvsec_range_base_low_register_t.end.hpp │ │ │ │ ├── express_cxl_dvsec_range_base_low_register_t.start.hpp │ │ │ │ ├── express_cxl_dvsec_range_size_high_register_t.end.hpp │ │ │ │ ├── express_cxl_dvsec_range_size_high_register_t.start.hpp │ │ │ │ ├── express_cxl_dvsec_range_size_low_register_v11_t.end.hpp │ │ │ │ ├── express_cxl_dvsec_range_size_low_register_v11_t.start.hpp │ │ │ │ ├── express_cxl_dvsec_status_register_t.end.hpp │ │ │ │ ├── express_cxl_dvsec_status_register_t.start.hpp │ │ │ │ ├── express_designated_vendor_specific_capability_t.end.hpp │ │ │ │ ├── express_designated_vendor_specific_capability_t.start.hpp │ │ │ │ ├── express_designated_vendor_specific_header_1_t.end.hpp │ │ │ │ ├── express_designated_vendor_specific_header_1_t.start.hpp │ │ │ │ ├── express_designated_vendor_specific_header_2_t.end.hpp │ │ │ │ ├── express_designated_vendor_specific_header_2_t.start.hpp │ │ │ │ ├── express_designated_vendor_specific_nhi_attribute_t.end.hpp │ │ │ │ ├── express_designated_vendor_specific_nhi_attribute_t.start.hpp │ │ │ │ ├── express_designated_vendor_specific_pci_attribute_t.end.hpp │ │ │ │ ├── express_designated_vendor_specific_pci_attribute_t.start.hpp │ │ │ │ ├── express_designated_vendor_specific_port_specific_attribute_t.end.hpp │ │ │ │ ├── express_designated_vendor_specific_port_specific_attribute_t.start.hpp │ │ │ │ ├── express_designated_vendor_specific_usb_attribute_t.end.hpp │ │ │ │ ├── express_designated_vendor_specific_usb_attribute_t.start.hpp │ │ │ │ ├── express_device_capabilities_2_register_t.end.hpp │ │ │ │ ├── express_device_capabilities_2_register_t.start.hpp │ │ │ │ ├── express_device_capabilities_register_t.end.hpp │ │ │ │ ├── express_device_capabilities_register_t.start.hpp │ │ │ │ ├── express_device_control_2_register_t.end.hpp │ │ │ │ ├── express_device_control_2_register_t.start.hpp │ │ │ │ ├── express_device_control_register_t.end.hpp │ │ │ │ ├── express_device_control_register_t.start.hpp │ │ │ │ ├── express_device_status_2_register_t.end.hpp │ │ │ │ ├── express_device_status_2_register_t.start.hpp │ │ │ │ ├── express_device_status_register_t.end.hpp │ │ │ │ ├── express_device_status_register_t.start.hpp │ │ │ │ ├── express_dpc_capability_t.end.hpp │ │ │ │ ├── express_dpc_capability_t.start.hpp │ │ │ │ ├── express_dpc_caps_register_t.end.hpp │ │ │ │ ├── express_dpc_caps_register_t.start.hpp │ │ │ │ ├── express_dpc_control_register_t.end.hpp │ │ │ │ ├── express_dpc_control_register_t.start.hpp │ │ │ │ ├── express_dpc_error_source_id_t.end.hpp │ │ │ │ ├── express_dpc_error_source_id_t.start.hpp │ │ │ │ ├── express_dpc_rp_pio_exception_register_t.end.hpp │ │ │ │ ├── express_dpc_rp_pio_exception_register_t.start.hpp │ │ │ │ ├── express_dpc_rp_pio_headerlog_register_t.end.hpp │ │ │ │ ├── express_dpc_rp_pio_headerlog_register_t.start.hpp │ │ │ │ ├── express_dpc_rp_pio_impspeclog_register_t.end.hpp │ │ │ │ ├── express_dpc_rp_pio_impspeclog_register_t.start.hpp │ │ │ │ ├── express_dpc_rp_pio_mask_register_t.end.hpp │ │ │ │ ├── express_dpc_rp_pio_mask_register_t.start.hpp │ │ │ │ ├── express_dpc_rp_pio_severity_register_t.end.hpp │ │ │ │ ├── express_dpc_rp_pio_severity_register_t.start.hpp │ │ │ │ ├── express_dpc_rp_pio_status_register_t.end.hpp │ │ │ │ ├── express_dpc_rp_pio_status_register_t.start.hpp │ │ │ │ ├── express_dpc_rp_pio_syserr_register_t.end.hpp │ │ │ │ ├── express_dpc_rp_pio_syserr_register_t.start.hpp │ │ │ │ ├── express_dpc_rp_pio_tlpprefixlog_register_t.end.hpp │ │ │ │ ├── express_dpc_rp_pio_tlpprefixlog_register_t.start.hpp │ │ │ │ ├── express_dpc_status_register_t.end.hpp │ │ │ │ ├── express_dpc_status_register_t.start.hpp │ │ │ │ ├── express_dpc_work_item_t.end.hpp │ │ │ │ ├── express_dpc_work_item_t.start.hpp │ │ │ │ ├── express_enhanced_capability_header_t.end.hpp │ │ │ │ ├── express_enhanced_capability_header_t.start.hpp │ │ │ │ ├── express_error_packet_t.end.hpp │ │ │ │ ├── express_error_packet_t.start.hpp │ │ │ │ ├── express_error_source_id_t.end.hpp │ │ │ │ ├── express_error_source_id_t.start.hpp │ │ │ │ ├── express_event_collector_endpoint_association_capability_t.end.hpp │ │ │ │ ├── express_event_collector_endpoint_association_capability_t.start.hpp │ │ │ │ ├── express_l1_pm_ss_capabilities_register_t.end.hpp │ │ │ │ ├── express_l1_pm_ss_capabilities_register_t.start.hpp │ │ │ │ ├── express_l1_pm_ss_capability_t.end.hpp │ │ │ │ ├── express_l1_pm_ss_capability_t.start.hpp │ │ │ │ ├── express_l1_pm_ss_control_1_register_t.end.hpp │ │ │ │ ├── express_l1_pm_ss_control_1_register_t.start.hpp │ │ │ │ ├── express_l1_pm_ss_control_2_register_t.end.hpp │ │ │ │ ├── express_l1_pm_ss_control_2_register_t.start.hpp │ │ │ │ ├── express_lane_error_status_t.end.hpp │ │ │ │ ├── express_lane_error_status_t.start.hpp │ │ │ │ ├── express_link_capabilities_register_t.end.hpp │ │ │ │ ├── express_link_capabilities_register_t.start.hpp │ │ │ │ ├── express_link_control3_t.end.hpp │ │ │ │ ├── express_link_control3_t.start.hpp │ │ │ │ ├── express_link_control_register_t.end.hpp │ │ │ │ ├── express_link_control_register_t.start.hpp │ │ │ │ ├── express_link_quiescent_interface_t.end.hpp │ │ │ │ ├── express_link_quiescent_interface_t.start.hpp │ │ │ │ ├── express_link_status_register_t.end.hpp │ │ │ │ ├── express_link_status_register_t.start.hpp │ │ │ │ ├── express_link_t.end.hpp │ │ │ │ ├── express_link_t.start.hpp │ │ │ │ ├── express_ltr_capability_t.end.hpp │ │ │ │ ├── express_ltr_capability_t.start.hpp │ │ │ │ ├── express_ltr_max_latency_register_t.end.hpp │ │ │ │ ├── express_ltr_max_latency_register_t.start.hpp │ │ │ │ ├── express_npem_capability_register_t.end.hpp │ │ │ │ ├── express_npem_capability_register_t.start.hpp │ │ │ │ ├── express_npem_capability_t.end.hpp │ │ │ │ ├── express_npem_capability_t.start.hpp │ │ │ │ ├── express_npem_control_register_t.end.hpp │ │ │ │ ├── express_npem_control_register_t.start.hpp │ │ │ │ ├── express_npem_status_register_t.end.hpp │ │ │ │ ├── express_npem_status_register_t.start.hpp │ │ │ │ ├── express_pasid_capability_register_t.end.hpp │ │ │ │ ├── express_pasid_capability_register_t.start.hpp │ │ │ │ ├── express_pasid_capability_t.end.hpp │ │ │ │ ├── express_pasid_capability_t.start.hpp │ │ │ │ ├── express_pasid_control_register_t.end.hpp │ │ │ │ ├── express_pasid_control_register_t.start.hpp │ │ │ │ ├── express_pme_requestor_id_t.end.hpp │ │ │ │ ├── express_pme_requestor_id_t.start.hpp │ │ │ │ ├── express_port_t.end.hpp │ │ │ │ ├── express_port_t.start.hpp │ │ │ │ ├── express_pri_capability_t.end.hpp │ │ │ │ ├── express_pri_capability_t.start.hpp │ │ │ │ ├── express_pri_control_register_t.end.hpp │ │ │ │ ├── express_pri_control_register_t.start.hpp │ │ │ │ ├── express_pri_status_register_t.end.hpp │ │ │ │ ├── express_pri_status_register_t.start.hpp │ │ │ │ ├── express_ptm_capability_register_t.end.hpp │ │ │ │ ├── express_ptm_capability_register_t.start.hpp │ │ │ │ ├── express_ptm_capability_t.end.hpp │ │ │ │ ├── express_ptm_capability_t.start.hpp │ │ │ │ ├── express_ptm_control_register_t.end.hpp │ │ │ │ ├── express_ptm_control_register_t.start.hpp │ │ │ │ ├── express_resizable_bar_capability_register_t.end.hpp │ │ │ │ ├── express_resizable_bar_capability_register_t.start.hpp │ │ │ │ ├── express_resizable_bar_capability_t.end.hpp │ │ │ │ ├── express_resizable_bar_capability_t.start.hpp │ │ │ │ ├── express_resizable_bar_control_register_t.end.hpp │ │ │ │ ├── express_resizable_bar_control_register_t.start.hpp │ │ │ │ ├── express_resizable_bar_entry_t.end.hpp │ │ │ │ ├── express_resizable_bar_entry_t.start.hpp │ │ │ │ ├── express_root_capabilities_register_t.end.hpp │ │ │ │ ├── express_root_capabilities_register_t.start.hpp │ │ │ │ ├── express_root_control_register_t.end.hpp │ │ │ │ ├── express_root_control_register_t.start.hpp │ │ │ │ ├── express_root_error_command_t.end.hpp │ │ │ │ ├── express_root_error_command_t.start.hpp │ │ │ │ ├── express_root_error_status_t.end.hpp │ │ │ │ ├── express_root_error_status_t.start.hpp │ │ │ │ ├── express_root_port_interface_t.end.hpp │ │ │ │ ├── express_root_port_interface_t.start.hpp │ │ │ │ ├── express_root_status_register_t.end.hpp │ │ │ │ ├── express_root_status_register_t.start.hpp │ │ │ │ ├── express_rootport_aer_capability_t.end.hpp │ │ │ │ ├── express_rootport_aer_capability_t.start.hpp │ │ │ │ ├── express_sec_aer_capabilities_t.end.hpp │ │ │ │ ├── express_sec_aer_capabilities_t.start.hpp │ │ │ │ ├── express_sec_uncorrectable_error_mask_t.end.hpp │ │ │ │ ├── express_sec_uncorrectable_error_mask_t.start.hpp │ │ │ │ ├── express_sec_uncorrectable_error_severity_t.end.hpp │ │ │ │ ├── express_sec_uncorrectable_error_severity_t.start.hpp │ │ │ │ ├── express_sec_uncorrectable_error_status_t.end.hpp │ │ │ │ ├── express_sec_uncorrectable_error_status_t.start.hpp │ │ │ │ ├── express_secondary_capability_t.end.hpp │ │ │ │ ├── express_secondary_capability_t.start.hpp │ │ │ │ ├── express_serial_number_capability_t.end.hpp │ │ │ │ ├── express_serial_number_capability_t.start.hpp │ │ │ │ ├── express_slot_capabilities_register_t.end.hpp │ │ │ │ ├── express_slot_capabilities_register_t.start.hpp │ │ │ │ ├── express_slot_control_register_t.end.hpp │ │ │ │ ├── express_slot_control_register_t.start.hpp │ │ │ │ ├── express_slot_status_register_t.end.hpp │ │ │ │ ├── express_slot_status_register_t.start.hpp │ │ │ │ ├── express_sriov_capability_t.end.hpp │ │ │ │ ├── express_sriov_capability_t.start.hpp │ │ │ │ ├── express_sriov_caps_t.end.hpp │ │ │ │ ├── express_sriov_caps_t.start.hpp │ │ │ │ ├── express_sriov_control_t.end.hpp │ │ │ │ ├── express_sriov_control_t.start.hpp │ │ │ │ ├── express_sriov_migration_state_array_t.end.hpp │ │ │ │ ├── express_sriov_migration_state_array_t.start.hpp │ │ │ │ ├── express_sriov_status_t.end.hpp │ │ │ │ ├── express_sriov_status_t.start.hpp │ │ │ │ ├── express_tph_requester_capability_register_t.end.hpp │ │ │ │ ├── express_tph_requester_capability_register_t.start.hpp │ │ │ │ ├── express_tph_requester_capability_t.end.hpp │ │ │ │ ├── express_tph_requester_capability_t.start.hpp │ │ │ │ ├── express_tph_requester_control_register_t.end.hpp │ │ │ │ ├── express_tph_requester_control_register_t.start.hpp │ │ │ │ ├── express_tph_st_table_entry_t.end.hpp │ │ │ │ ├── express_tph_st_table_entry_t.start.hpp │ │ │ │ ├── express_uncorrectable_error_mask_t.end.hpp │ │ │ │ ├── express_uncorrectable_error_mask_t.start.hpp │ │ │ │ ├── express_uncorrectable_error_severity_t.end.hpp │ │ │ │ ├── express_uncorrectable_error_severity_t.start.hpp │ │ │ │ ├── express_uncorrectable_error_status_t.end.hpp │ │ │ │ ├── express_uncorrectable_error_status_t.start.hpp │ │ │ │ ├── express_vendor_specific_capability_t.end.hpp │ │ │ │ ├── express_vendor_specific_capability_t.start.hpp │ │ │ │ ├── express_virtual_channel_capability_t.end.hpp │ │ │ │ ├── express_virtual_channel_capability_t.start.hpp │ │ │ │ ├── firmware_bus_caps_return_buffer_t.end.hpp │ │ │ │ ├── firmware_bus_caps_return_buffer_t.start.hpp │ │ │ │ ├── firmware_bus_caps_t.end.hpp │ │ │ │ ├── firmware_bus_caps_t.start.hpp │ │ │ │ ├── fpb_arbiter_t.end.hpp │ │ │ │ ├── fpb_arbiter_t.start.hpp │ │ │ │ ├── fpb_capabilities_register_t.end.hpp │ │ │ │ ├── fpb_capabilities_register_t.start.hpp │ │ │ │ ├── fpb_capability_header_t.end.hpp │ │ │ │ ├── fpb_capability_header_t.start.hpp │ │ │ │ ├── fpb_capability_support_t.end.hpp │ │ │ │ ├── fpb_capability_support_t.start.hpp │ │ │ │ ├── fpb_capability_t.end.hpp │ │ │ │ ├── fpb_capability_t.start.hpp │ │ │ │ ├── fpb_fdo_dynamic_flags_t.end.hpp │ │ │ │ ├── fpb_fdo_dynamic_flags_t.start.hpp │ │ │ │ ├── fpb_fdo_resource_allocation_context_t.end.hpp │ │ │ │ ├── fpb_fdo_resource_allocation_context_t.start.hpp │ │ │ │ ├── fpb_fdo_resource_t.end.hpp │ │ │ │ ├── fpb_fdo_resource_t.start.hpp │ │ │ │ ├── fpb_fdo_static_flags_t.end.hpp │ │ │ │ ├── fpb_fdo_static_flags_t.start.hpp │ │ │ │ ├── fpb_fdo_t.end.hpp │ │ │ │ ├── fpb_fdo_t.start.hpp │ │ │ │ ├── fpb_mem_high_vector_control1_register_t.end.hpp │ │ │ │ ├── fpb_mem_high_vector_control1_register_t.start.hpp │ │ │ │ ├── fpb_mem_high_vector_control2_register_t.end.hpp │ │ │ │ ├── fpb_mem_high_vector_control2_register_t.start.hpp │ │ │ │ ├── fpb_mem_low_vector_control_register_t.end.hpp │ │ │ │ ├── fpb_mem_low_vector_control_register_t.start.hpp │ │ │ │ ├── fpb_memory_range_list_t.end.hpp │ │ │ │ ├── fpb_memory_range_list_t.start.hpp │ │ │ │ ├── fpb_pdo_dynamic_flags_t.end.hpp │ │ │ │ ├── fpb_pdo_dynamic_flags_t.start.hpp │ │ │ │ ├── fpb_pdo_resource_t.end.hpp │ │ │ │ ├── fpb_pdo_resource_t.start.hpp │ │ │ │ ├── fpb_pdo_static_flags_t.end.hpp │ │ │ │ ├── fpb_pdo_static_flags_t.start.hpp │ │ │ │ ├── fpb_pdo_t.end.hpp │ │ │ │ ├── fpb_pdo_t.start.hpp │ │ │ │ ├── fpb_resource_descriptor_t.end.hpp │ │ │ │ ├── fpb_resource_descriptor_t.start.hpp │ │ │ │ ├── fpb_rid_vector_control1_register_t.end.hpp │ │ │ │ ├── fpb_rid_vector_control1_register_t.start.hpp │ │ │ │ ├── fpb_rid_vector_control2_register_t.end.hpp │ │ │ │ ├── fpb_rid_vector_control2_register_t.start.hpp │ │ │ │ ├── fpb_vector_access_control_register_t.end.hpp │ │ │ │ ├── fpb_vector_access_control_register_t.start.hpp │ │ │ │ ├── fpb_vector_access_data_register_t.end.hpp │ │ │ │ ├── fpb_vector_access_data_register_t.start.hpp │ │ │ │ ├── header_operations_t.end.hpp │ │ │ │ ├── header_operations_t.start.hpp │ │ │ │ ├── header_type_0_t.end.hpp │ │ │ │ ├── header_type_0_t.start.hpp │ │ │ │ ├── header_type_1_t.end.hpp │ │ │ │ ├── header_type_1_t.start.hpp │ │ │ │ ├── header_type_2_t.end.hpp │ │ │ │ ├── header_type_2_t.start.hpp │ │ │ │ ├── hibernate_info_t.end.hpp │ │ │ │ ├── hibernate_info_t.start.hpp │ │ │ │ ├── hotplug_controller_t.end.hpp │ │ │ │ ├── hotplug_controller_t.start.hpp │ │ │ │ ├── hotplug_slot_t.end.hpp │ │ │ │ ├── hotplug_slot_t.start.hpp │ │ │ │ ├── hotplug_worker_parameters_t.end.hpp │ │ │ │ ├── hotplug_worker_parameters_t.start.hpp │ │ │ │ ├── hpx_info_t.end.hpp │ │ │ │ ├── hpx_info_t.start.hpp │ │ │ │ ├── hpx_type_0_t.end.hpp │ │ │ │ ├── hpx_type_0_t.start.hpp │ │ │ │ ├── hpx_type_2_t.end.hpp │ │ │ │ ├── hpx_type_2_t.start.hpp │ │ │ │ ├── msi_capability_t.end.hpp │ │ │ │ ├── msi_capability_t.start.hpp │ │ │ │ ├── msi_message_control_t.end.hpp │ │ │ │ ├── msi_message_control_t.start.hpp │ │ │ │ ├── msix_capability_t.end.hpp │ │ │ │ ├── msix_capability_t.start.hpp │ │ │ │ ├── msix_table_config_interface_t.end.hpp │ │ │ │ ├── msix_table_config_interface_t.start.hpp │ │ │ │ ├── msix_table_entry_t.end.hpp │ │ │ │ ├── msix_table_entry_t.start.hpp │ │ │ │ ├── npem_capability_standard_t.end.hpp │ │ │ │ ├── npem_capability_standard_t.start.hpp │ │ │ │ ├── npem_control_interface_t.end.hpp │ │ │ │ ├── npem_control_interface_t.start.hpp │ │ │ │ ├── npem_control_t.end.hpp │ │ │ │ ├── npem_control_t.start.hpp │ │ │ │ ├── npem_interface_context_t.end.hpp │ │ │ │ ├── npem_interface_context_t.start.hpp │ │ │ │ ├── pm_capability_t.end.hpp │ │ │ │ ├── pm_capability_t.start.hpp │ │ │ │ ├── pmc_t.end.hpp │ │ │ │ ├── pmc_t.start.hpp │ │ │ │ ├── pmcsr_bse_t.end.hpp │ │ │ │ ├── pmcsr_bse_t.start.hpp │ │ │ │ ├── pmcsr_t.end.hpp │ │ │ │ ├── pmcsr_t.start.hpp │ │ │ │ ├── pme_requestor_id_buffer_t.end.hpp │ │ │ │ ├── pme_requestor_id_buffer_t.start.hpp │ │ │ │ ├── recorder_configure_params_t.end.hpp │ │ │ │ ├── recorder_configure_params_t.start.hpp │ │ │ │ ├── recorder_log_create_params_t.end.hpp │ │ │ │ ├── recorder_log_create_params_t.start.hpp │ │ │ │ ├── resizable_bar_info_t.end.hpp │ │ │ │ ├── resizable_bar_info_t.start.hpp │ │ │ │ ├── root_bus_hardware_capability_t.end.hpp │ │ │ │ ├── root_bus_hardware_capability_t.start.hpp │ │ │ │ ├── root_bus_osc_control_field_t.end.hpp │ │ │ │ ├── root_bus_osc_control_field_t.start.hpp │ │ │ │ ├── root_bus_osc_support_field_t.end.hpp │ │ │ │ ├── root_bus_osc_support_field_t.start.hpp │ │ │ │ ├── root_complex_t.end.hpp │ │ │ │ ├── root_complex_t.start.hpp │ │ │ │ ├── root_t.end.hpp │ │ │ │ ├── root_t.start.hpp │ │ │ │ ├── save_restore_data_t.end.hpp │ │ │ │ ├── save_restore_data_t.start.hpp │ │ │ │ ├── security_interface2_t.end.hpp │ │ │ │ ├── security_interface2_t.start.hpp │ │ │ │ ├── security_interface_t.end.hpp │ │ │ │ ├── security_interface_t.start.hpp │ │ │ │ ├── segment_bus_number_t.end.hpp │ │ │ │ ├── segment_bus_number_t.start.hpp │ │ │ │ ├── segment_t.end.hpp │ │ │ │ ├── segment_t.start.hpp │ │ │ │ ├── slot_number_t.end.hpp │ │ │ │ ├── slot_number_t.start.hpp │ │ │ │ ├── subsystem_ids_capability_t.end.hpp │ │ │ │ ├── subsystem_ids_capability_t.start.hpp │ │ │ │ ├── switch_complex_t.end.hpp │ │ │ │ ├── switch_complex_t.start.hpp │ │ │ │ ├── upstream_switchport_t.end.hpp │ │ │ │ ├── upstream_switchport_t.start.hpp │ │ │ │ ├── vendor_specific_capability_t.end.hpp │ │ │ │ ├── vendor_specific_capability_t.start.hpp │ │ │ │ ├── virtualization_interface_t.end.hpp │ │ │ │ ├── virtualization_interface_t.start.hpp │ │ │ │ ├── whea_context_t.end.hpp │ │ │ │ ├── whea_context_t.start.hpp │ │ │ │ ├── wpp_trace_control_block_t.end.hpp │ │ │ │ ├── wpp_trace_control_block_t.start.hpp │ │ │ │ ├── x_capability_t.end.hpp │ │ │ │ └── x_capability_t.start.hpp │ │ │ ├── msi_capability_t.hpp │ │ │ ├── msi_message_control_t.hpp │ │ │ ├── msix_capability_t.hpp │ │ │ ├── msix_table_config_interface_t.hpp │ │ │ ├── msix_table_entry_t.hpp │ │ │ ├── npem_capability_standard_t.hpp │ │ │ ├── npem_control_interface_t.hpp │ │ │ ├── npem_control_standard_control_bit_t.hpp │ │ │ ├── npem_control_t.hpp │ │ │ ├── npem_interface_context_t.hpp │ │ │ ├── object_state_t.hpp │ │ │ ├── pm_capability_t.hpp │ │ │ ├── pmc_t.hpp │ │ │ ├── pmcsr_bse_t.hpp │ │ │ ├── pmcsr_t.hpp │ │ │ ├── pme_requestor_id_buffer_t.hpp │ │ │ ├── recorder_configure_params_t.hpp │ │ │ ├── recorder_log_create_params_t.hpp │ │ │ ├── recorder_log_t.hpp │ │ │ ├── resizable_bar_info_t.hpp │ │ │ ├── root_bus_hardware_capability_t.hpp │ │ │ ├── root_bus_osc_control_field_t.hpp │ │ │ ├── root_bus_osc_support_field_t.hpp │ │ │ ├── root_complex_t.hpp │ │ │ ├── root_pme_events_t.hpp │ │ │ ├── root_t.hpp │ │ │ ├── save_restore_data_t.hpp │ │ │ ├── security_interface2_t.hpp │ │ │ ├── security_interface_t.hpp │ │ │ ├── segment_bus_number_t.hpp │ │ │ ├── segment_t.hpp │ │ │ ├── sleepstudy_blocker_t.hpp │ │ │ ├── slot_number_t.hpp │ │ │ ├── subsystem_ids_capability_t.hpp │ │ │ ├── switch_complex_t.hpp │ │ │ ├── upstream_switchport_t.hpp │ │ │ ├── vendor_specific_capability_t.hpp │ │ │ ├── virtualization_interface_t.hpp │ │ │ ├── wake_irp_state_t.hpp │ │ │ ├── whea_context_t.hpp │ │ │ ├── wpp_trace_control_block_t.hpp │ │ │ └── x_capability_t.hpp │ │ ├── pcip/ │ │ │ ├── api.hpp │ │ │ └── magic/ │ │ │ ├── api.end.hpp │ │ │ └── api.start.hpp │ │ ├── pcix/ │ │ │ ├── bridge_capability_t.hpp │ │ │ └── magic/ │ │ │ ├── bridge_capability_t.end.hpp │ │ │ └── bridge_capability_t.start.hpp │ │ ├── pep/ │ │ │ ├── acpi_extended_address_t.hpp │ │ │ ├── acpi_gpio_resource_t.hpp │ │ │ ├── acpi_interrupt_resource_t.hpp │ │ │ ├── acpi_io_memory_resource_t.hpp │ │ │ ├── acpi_resource_flags_t.hpp │ │ │ ├── acpi_resource_t.hpp │ │ │ ├── acpi_resource_type_t.hpp │ │ │ ├── acpi_spb_i2c_resource_t.hpp │ │ │ ├── acpi_spb_resource_t.hpp │ │ │ ├── acpi_spb_spi_resource_t.hpp │ │ │ ├── acpi_spb_uart_resource_t.hpp │ │ │ ├── crashdump_information_t.hpp │ │ │ ├── magic/ │ │ │ │ ├── acpi_extended_address_t.end.hpp │ │ │ │ ├── acpi_extended_address_t.start.hpp │ │ │ │ ├── acpi_gpio_resource_t.end.hpp │ │ │ │ ├── acpi_gpio_resource_t.start.hpp │ │ │ │ ├── acpi_interrupt_resource_t.end.hpp │ │ │ │ ├── acpi_interrupt_resource_t.start.hpp │ │ │ │ ├── acpi_io_memory_resource_t.end.hpp │ │ │ │ ├── acpi_io_memory_resource_t.start.hpp │ │ │ │ ├── acpi_resource_flags_t.end.hpp │ │ │ │ ├── acpi_resource_flags_t.start.hpp │ │ │ │ ├── acpi_resource_t.end.hpp │ │ │ │ ├── acpi_resource_t.start.hpp │ │ │ │ ├── acpi_spb_i2c_resource_t.end.hpp │ │ │ │ ├── acpi_spb_i2c_resource_t.start.hpp │ │ │ │ ├── acpi_spb_resource_t.end.hpp │ │ │ │ ├── acpi_spb_resource_t.start.hpp │ │ │ │ ├── acpi_spb_spi_resource_t.end.hpp │ │ │ │ ├── acpi_spb_spi_resource_t.start.hpp │ │ │ │ ├── acpi_spb_uart_resource_t.end.hpp │ │ │ │ ├── acpi_spb_uart_resource_t.start.hpp │ │ │ │ ├── crashdump_information_t.end.hpp │ │ │ │ ├── crashdump_information_t.start.hpp │ │ │ │ ├── work_acpi_evaluate_control_method_complete_t.end.hpp │ │ │ │ ├── work_acpi_evaluate_control_method_complete_t.start.hpp │ │ │ │ ├── work_acpi_notify_t.end.hpp │ │ │ │ ├── work_acpi_notify_t.start.hpp │ │ │ │ ├── work_active_complete_t.end.hpp │ │ │ │ ├── work_active_complete_t.start.hpp │ │ │ │ ├── work_complete_idle_state_t.end.hpp │ │ │ │ ├── work_complete_idle_state_t.start.hpp │ │ │ │ ├── work_complete_perf_state_t.end.hpp │ │ │ │ ├── work_complete_perf_state_t.start.hpp │ │ │ │ ├── work_device_idle_t.end.hpp │ │ │ │ ├── work_device_idle_t.start.hpp │ │ │ │ ├── work_device_power_t.end.hpp │ │ │ │ ├── work_device_power_t.start.hpp │ │ │ │ ├── work_idle_state_t.end.hpp │ │ │ │ ├── work_idle_state_t.start.hpp │ │ │ │ ├── work_information_t.end.hpp │ │ │ │ ├── work_information_t.start.hpp │ │ │ │ ├── work_power_control_t.end.hpp │ │ │ │ └── work_power_control_t.start.hpp │ │ │ ├── work_acpi_evaluate_control_method_complete_t.hpp │ │ │ ├── work_acpi_notify_t.hpp │ │ │ ├── work_active_complete_t.hpp │ │ │ ├── work_complete_idle_state_t.hpp │ │ │ ├── work_complete_perf_state_t.hpp │ │ │ ├── work_device_idle_t.hpp │ │ │ ├── work_device_power_t.hpp │ │ │ ├── work_idle_state_t.hpp │ │ │ ├── work_information_t.hpp │ │ │ ├── work_power_control_t.hpp │ │ │ └── work_type_t.hpp │ │ ├── perf/ │ │ │ ├── api.hpp │ │ │ ├── bin_t.hpp │ │ │ ├── configuration_data_t.hpp │ │ │ ├── control_state_selection_t.hpp │ │ │ └── magic/ │ │ │ ├── api.end.hpp │ │ │ ├── api.start.hpp │ │ │ ├── bin_t.end.hpp │ │ │ ├── bin_t.start.hpp │ │ │ ├── configuration_data_t.end.hpp │ │ │ ├── configuration_data_t.start.hpp │ │ │ ├── control_state_selection_t.end.hpp │ │ │ └── control_state_selection_t.start.hpp │ │ ├── pf/ │ │ │ ├── api.hpp │ │ │ ├── file_access_type_t.hpp │ │ │ ├── kernel_globals_t.hpp │ │ │ └── magic/ │ │ │ ├── api.end.hpp │ │ │ ├── api.start.hpp │ │ │ ├── kernel_globals_t.end.hpp │ │ │ └── kernel_globals_t.start.hpp │ │ ├── pfp/ │ │ │ ├── api.hpp │ │ │ └── magic/ │ │ │ ├── api.end.hpp │ │ │ └── api.start.hpp │ │ ├── pfx/ │ │ │ ├── api.hpp │ │ │ └── magic/ │ │ │ ├── api.end.hpp │ │ │ └── api.start.hpp │ │ ├── pi/ │ │ │ ├── api.hpp │ │ │ ├── bus_extension_t.hpp │ │ │ ├── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ ├── api.start.hpp │ │ │ │ ├── bus_extension_t.end.hpp │ │ │ │ ├── bus_extension_t.start.hpp │ │ │ │ ├── resource_arbiter_entry_t.end.hpp │ │ │ │ └── resource_arbiter_entry_t.start.hpp │ │ │ └── resource_arbiter_entry_t.hpp │ │ ├── pii/ │ │ │ ├── api.hpp │ │ │ ├── filter_t.hpp │ │ │ └── magic/ │ │ │ ├── api.end.hpp │ │ │ ├── api.start.hpp │ │ │ ├── filter_t.end.hpp │ │ │ └── filter_t.start.hpp │ │ ├── pip/ │ │ │ ├── api.hpp │ │ │ └── magic/ │ │ │ ├── api.end.hpp │ │ │ └── api.start.hpp │ │ ├── pix/ │ │ │ ├── api.hpp │ │ │ └── magic/ │ │ │ ├── api.end.hpp │ │ │ └── api.start.hpp │ │ ├── pm/ │ │ │ ├── api.hpp │ │ │ ├── dispatch_table_t.hpp │ │ │ ├── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ ├── api.start.hpp │ │ │ │ ├── dispatch_table_t.end.hpp │ │ │ │ ├── dispatch_table_t.start.hpp │ │ │ │ ├── support_t.end.hpp │ │ │ │ └── support_t.start.hpp │ │ │ └── support_t.hpp │ │ ├── pnp/ │ │ │ ├── api.hpp │ │ │ ├── assign_resources_context_t.hpp │ │ │ ├── bus_information_t.hpp │ │ │ ├── dependency_path_type_t.hpp │ │ │ ├── device_action_entry_t.hpp │ │ │ ├── device_action_request_argument_t.hpp │ │ │ ├── device_action_request_t.hpp │ │ │ ├── device_completion_queue_t.hpp │ │ │ ├── device_completion_request_t.hpp │ │ │ ├── device_delete_type_t.hpp │ │ │ ├── device_event_entry_t.hpp │ │ │ ├── device_event_list_t.hpp │ │ │ ├── device_iommu_domain_policy_t.hpp │ │ │ ├── devnode_query_rebalance_veto_reason_t.hpp │ │ │ ├── devnode_state_t.hpp │ │ │ ├── event_target_state_t.hpp │ │ │ ├── extended_address_interface_t.hpp │ │ │ ├── location_interface_t.hpp │ │ │ ├── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ ├── api.start.hpp │ │ │ │ ├── assign_resources_context_t.end.hpp │ │ │ │ ├── assign_resources_context_t.start.hpp │ │ │ │ ├── bus_information_t.end.hpp │ │ │ │ ├── bus_information_t.start.hpp │ │ │ │ ├── device_action_entry_t.end.hpp │ │ │ │ ├── device_action_entry_t.start.hpp │ │ │ │ ├── device_action_request_argument_t.end.hpp │ │ │ │ ├── device_action_request_argument_t.start.hpp │ │ │ │ ├── device_completion_queue_t.end.hpp │ │ │ │ ├── device_completion_queue_t.start.hpp │ │ │ │ ├── device_completion_request_t.end.hpp │ │ │ │ ├── device_completion_request_t.start.hpp │ │ │ │ ├── device_event_entry_t.end.hpp │ │ │ │ ├── device_event_entry_t.start.hpp │ │ │ │ ├── device_event_list_t.end.hpp │ │ │ │ ├── device_event_list_t.start.hpp │ │ │ │ ├── event_target_state_t.end.hpp │ │ │ │ ├── event_target_state_t.start.hpp │ │ │ │ ├── extended_address_interface_t.end.hpp │ │ │ │ ├── extended_address_interface_t.start.hpp │ │ │ │ ├── location_interface_t.end.hpp │ │ │ │ ├── location_interface_t.start.hpp │ │ │ │ ├── power_init_t.end.hpp │ │ │ │ ├── power_init_t.start.hpp │ │ │ │ ├── problem_code_log_entry_t.end.hpp │ │ │ │ ├── problem_code_log_entry_t.start.hpp │ │ │ │ ├── rebalance_flags_t.end.hpp │ │ │ │ ├── rebalance_flags_t.start.hpp │ │ │ │ ├── rebalance_trace_context_t.end.hpp │ │ │ │ ├── rebalance_trace_context_t.start.hpp │ │ │ │ ├── replace_driver_interface_t.end.hpp │ │ │ │ ├── replace_driver_interface_t.start.hpp │ │ │ │ ├── replace_memory_list_t.end.hpp │ │ │ │ ├── replace_memory_list_t.start.hpp │ │ │ │ ├── replace_parameters_t.end.hpp │ │ │ │ ├── replace_parameters_t.start.hpp │ │ │ │ ├── replace_processor_list_t.end.hpp │ │ │ │ ├── replace_processor_list_t.start.hpp │ │ │ │ ├── replace_processor_list_v1_t.end.hpp │ │ │ │ ├── replace_processor_list_v1_t.start.hpp │ │ │ │ ├── resource_conflict_trace_context_t.end.hpp │ │ │ │ ├── resource_conflict_trace_context_t.start.hpp │ │ │ │ ├── resource_request_t.end.hpp │ │ │ │ ├── resource_request_t.start.hpp │ │ │ │ ├── state_table_t.end.hpp │ │ │ │ ├── state_table_t.start.hpp │ │ │ │ ├── watchdog_t.end.hpp │ │ │ │ └── watchdog_t.start.hpp │ │ │ ├── power_init_t.hpp │ │ │ ├── problem_code_log_entry_t.hpp │ │ │ ├── problem_code_log_operation_t.hpp │ │ │ ├── query_relation_t.hpp │ │ │ ├── rebalance_failure_t.hpp │ │ │ ├── rebalance_flags_t.hpp │ │ │ ├── rebalance_reason_t.hpp │ │ │ ├── rebalance_trace_context_t.hpp │ │ │ ├── replace_driver_interface_t.hpp │ │ │ ├── replace_memory_list_t.hpp │ │ │ ├── replace_parameters_t.hpp │ │ │ ├── replace_processor_list_t.hpp │ │ │ ├── replace_processor_list_v1_t.hpp │ │ │ ├── resource_conflict_trace_context_t.hpp │ │ │ ├── resource_request_t.hpp │ │ │ ├── state_table_t.hpp │ │ │ ├── veto_type_t.hpp │ │ │ ├── watchdog_t.hpp │ │ │ └── watchdog_type_t.hpp │ │ ├── pnpr/ │ │ │ ├── api.hpp │ │ │ └── magic/ │ │ │ ├── api.end.hpp │ │ │ └── api.start.hpp │ │ ├── po/ │ │ │ ├── api.hpp │ │ │ ├── cs_device_notification_type_t.hpp │ │ │ ├── device_notify_order_t.hpp │ │ │ ├── device_notify_t.hpp │ │ │ ├── diag_stack_record_t.hpp │ │ │ ├── directed_drips_state_t.hpp │ │ │ ├── fixed_wake_source_type_t.hpp │ │ │ ├── fx_component_idle_state_t.hpp │ │ │ ├── fx_component_perf_info_t.hpp │ │ │ ├── fx_component_perf_set_t.hpp │ │ │ ├── fx_component_v1_t.hpp │ │ │ ├── fx_component_v2_t.hpp │ │ │ ├── fx_device_v1_t.hpp │ │ │ ├── fx_device_v2_t.hpp │ │ │ ├── fx_device_v3_t.hpp │ │ │ ├── fx_perf_state_change_t.hpp │ │ │ ├── fx_perf_state_t.hpp │ │ │ ├── fx_perf_state_type_t.hpp │ │ │ ├── fx_perf_state_unit_t.hpp │ │ │ ├── fx_primary_device_t.hpp │ │ │ ├── hiber_force_disable_reason_t.hpp │ │ │ ├── hiber_perf_t.hpp │ │ │ ├── input_suppression_state_t.hpp │ │ │ ├── internal_wake_source_type_t.hpp │ │ │ ├── irp_manager_t.hpp │ │ │ ├── irp_queue_t.hpp │ │ │ ├── latency_hint_type_t.hpp │ │ │ ├── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ ├── api.start.hpp │ │ │ │ ├── device_notify_order_t.end.hpp │ │ │ │ ├── device_notify_order_t.start.hpp │ │ │ │ ├── device_notify_t.end.hpp │ │ │ │ ├── device_notify_t.start.hpp │ │ │ │ ├── diag_stack_record_t.end.hpp │ │ │ │ ├── diag_stack_record_t.start.hpp │ │ │ │ ├── directed_drips_state_t.end.hpp │ │ │ │ ├── directed_drips_state_t.start.hpp │ │ │ │ ├── fx_component_idle_state_t.end.hpp │ │ │ │ ├── fx_component_idle_state_t.start.hpp │ │ │ │ ├── fx_component_perf_info_t.end.hpp │ │ │ │ ├── fx_component_perf_info_t.start.hpp │ │ │ │ ├── fx_component_perf_set_t.end.hpp │ │ │ │ ├── fx_component_perf_set_t.start.hpp │ │ │ │ ├── fx_component_v1_t.end.hpp │ │ │ │ ├── fx_component_v1_t.start.hpp │ │ │ │ ├── fx_component_v2_t.end.hpp │ │ │ │ ├── fx_component_v2_t.start.hpp │ │ │ │ ├── fx_device_v1_t.end.hpp │ │ │ │ ├── fx_device_v1_t.start.hpp │ │ │ │ ├── fx_device_v2_t.end.hpp │ │ │ │ ├── fx_device_v2_t.start.hpp │ │ │ │ ├── fx_device_v3_t.end.hpp │ │ │ │ ├── fx_device_v3_t.start.hpp │ │ │ │ ├── fx_perf_state_change_t.end.hpp │ │ │ │ ├── fx_perf_state_change_t.start.hpp │ │ │ │ ├── fx_perf_state_t.end.hpp │ │ │ │ ├── fx_perf_state_t.start.hpp │ │ │ │ ├── hiber_perf_t.end.hpp │ │ │ │ ├── hiber_perf_t.start.hpp │ │ │ │ ├── irp_manager_t.end.hpp │ │ │ │ ├── irp_manager_t.start.hpp │ │ │ │ ├── irp_queue_t.end.hpp │ │ │ │ ├── irp_queue_t.start.hpp │ │ │ │ ├── memory_image_t.end.hpp │ │ │ │ ├── memory_image_t.start.hpp │ │ │ │ ├── notify_order_level_t.end.hpp │ │ │ │ ├── notify_order_level_t.start.hpp │ │ │ │ ├── power_plane_profile_t.end.hpp │ │ │ │ ├── power_plane_profile_t.start.hpp │ │ │ │ ├── spr_active_session_data_t.end.hpp │ │ │ │ ├── spr_active_session_data_t.start.hpp │ │ │ │ ├── wake_source_device_t.end.hpp │ │ │ │ ├── wake_source_device_t.start.hpp │ │ │ │ ├── wake_source_fixed_t.end.hpp │ │ │ │ ├── wake_source_fixed_t.start.hpp │ │ │ │ ├── wake_source_header_t.end.hpp │ │ │ │ ├── wake_source_header_t.start.hpp │ │ │ │ ├── wake_source_history_t.end.hpp │ │ │ │ ├── wake_source_history_t.start.hpp │ │ │ │ ├── wake_source_info_t.end.hpp │ │ │ │ ├── wake_source_info_t.start.hpp │ │ │ │ ├── wake_source_internal_t.end.hpp │ │ │ │ ├── wake_source_internal_t.start.hpp │ │ │ │ ├── wake_source_timer_t.end.hpp │ │ │ │ └── wake_source_timer_t.start.hpp │ │ │ ├── memory_image_t.hpp │ │ │ ├── modern_sleep_action_t.hpp │ │ │ ├── notify_order_level_t.hpp │ │ │ ├── power_plane_profile_t.hpp │ │ │ ├── process_energy_context_t.hpp │ │ │ ├── s0_disconnected_reason_t.hpp │ │ │ ├── sleep_disable_reason_t.hpp │ │ │ ├── spr_active_session_data_t.hpp │ │ │ ├── thermal_request_type_t.hpp │ │ │ ├── wake_source_device_t.hpp │ │ │ ├── wake_source_fixed_t.hpp │ │ │ ├── wake_source_header_t.hpp │ │ │ ├── wake_source_history_t.hpp │ │ │ ├── wake_source_info_t.hpp │ │ │ ├── wake_source_internal_t.hpp │ │ │ ├── wake_source_timer_t.hpp │ │ │ └── wake_source_type_t.hpp │ │ ├── pop/ │ │ │ ├── action_trigger_t.hpp │ │ │ ├── api.hpp │ │ │ ├── component_power_profile_t.hpp │ │ │ ├── cooling_extension_t.hpp │ │ │ ├── current_broadcast_t.hpp │ │ │ ├── deep_sleep_disengage_reason_t.hpp │ │ │ ├── device_idle_type_t.hpp │ │ │ ├── device_power_profile_t.hpp │ │ │ ├── device_sys_state_t.hpp │ │ │ ├── directed_drips_problem_device_reason_t.hpp │ │ │ ├── fx_accounting_mode_t.hpp │ │ │ ├── fx_accounting_t.hpp │ │ │ ├── fx_active_time_accounting_t.hpp │ │ │ ├── fx_component_flags_t.hpp │ │ │ ├── fx_component_t.hpp │ │ │ ├── fx_dependent_t.hpp │ │ │ ├── fx_device_directed_transition_state_t.hpp │ │ │ ├── fx_device_status_t.hpp │ │ │ ├── fx_device_t.hpp │ │ │ ├── fx_drips_watchdog_context_t.hpp │ │ │ ├── fx_driver_callbacks_t.hpp │ │ │ ├── fx_idle_state_t.hpp │ │ │ ├── fx_log_entry_t.hpp │ │ │ ├── fx_perf_flags_t.hpp │ │ │ ├── fx_perf_info_t.hpp │ │ │ ├── fx_perf_set_t.hpp │ │ │ ├── fx_plugin_t.hpp │ │ │ ├── fx_provider_t.hpp │ │ │ ├── fx_work_order_t.hpp │ │ │ ├── fx_work_order_watchdog_info_t.hpp │ │ │ ├── fx_work_pool_item_t.hpp │ │ │ ├── fx_work_pool_queue_t.hpp │ │ │ ├── fx_work_pool_t.hpp │ │ │ ├── hiber_context_t.hpp │ │ │ ├── io_info_t.hpp │ │ │ ├── io_status_t.hpp │ │ │ ├── irp_data_t.hpp │ │ │ ├── irp_watchdog_state_t.hpp │ │ │ ├── irp_worker_entry_t.hpp │ │ │ ├── magic/ │ │ │ │ ├── action_trigger_t.end.hpp │ │ │ │ ├── action_trigger_t.start.hpp │ │ │ │ ├── api.end.hpp │ │ │ │ ├── api.start.hpp │ │ │ │ ├── component_power_profile_t.end.hpp │ │ │ │ ├── component_power_profile_t.start.hpp │ │ │ │ ├── cooling_extension_t.end.hpp │ │ │ │ ├── cooling_extension_t.start.hpp │ │ │ │ ├── current_broadcast_t.end.hpp │ │ │ │ ├── current_broadcast_t.start.hpp │ │ │ │ ├── device_power_profile_t.end.hpp │ │ │ │ ├── device_power_profile_t.start.hpp │ │ │ │ ├── device_sys_state_t.end.hpp │ │ │ │ ├── device_sys_state_t.start.hpp │ │ │ │ ├── fx_accounting_t.end.hpp │ │ │ │ ├── fx_accounting_t.start.hpp │ │ │ │ ├── fx_active_time_accounting_t.end.hpp │ │ │ │ ├── fx_active_time_accounting_t.start.hpp │ │ │ │ ├── fx_component_flags_t.end.hpp │ │ │ │ ├── fx_component_flags_t.start.hpp │ │ │ │ ├── fx_component_t.end.hpp │ │ │ │ ├── fx_component_t.start.hpp │ │ │ │ ├── fx_dependent_t.end.hpp │ │ │ │ ├── fx_dependent_t.start.hpp │ │ │ │ ├── fx_device_directed_transition_state_t.end.hpp │ │ │ │ ├── fx_device_directed_transition_state_t.start.hpp │ │ │ │ ├── fx_device_status_t.end.hpp │ │ │ │ ├── fx_device_status_t.start.hpp │ │ │ │ ├── fx_device_t.end.hpp │ │ │ │ ├── fx_device_t.start.hpp │ │ │ │ ├── fx_drips_watchdog_context_t.end.hpp │ │ │ │ ├── fx_drips_watchdog_context_t.start.hpp │ │ │ │ ├── fx_driver_callbacks_t.end.hpp │ │ │ │ ├── fx_driver_callbacks_t.start.hpp │ │ │ │ ├── fx_idle_state_t.end.hpp │ │ │ │ ├── fx_idle_state_t.start.hpp │ │ │ │ ├── fx_log_entry_t.end.hpp │ │ │ │ ├── fx_log_entry_t.start.hpp │ │ │ │ ├── fx_perf_flags_t.end.hpp │ │ │ │ ├── fx_perf_flags_t.start.hpp │ │ │ │ ├── fx_perf_info_t.end.hpp │ │ │ │ ├── fx_perf_info_t.start.hpp │ │ │ │ ├── fx_perf_set_t.end.hpp │ │ │ │ ├── fx_perf_set_t.start.hpp │ │ │ │ ├── fx_plugin_t.end.hpp │ │ │ │ ├── fx_plugin_t.start.hpp │ │ │ │ ├── fx_provider_t.end.hpp │ │ │ │ ├── fx_provider_t.start.hpp │ │ │ │ ├── fx_work_order_t.end.hpp │ │ │ │ ├── fx_work_order_t.start.hpp │ │ │ │ ├── fx_work_order_watchdog_info_t.end.hpp │ │ │ │ ├── fx_work_order_watchdog_info_t.start.hpp │ │ │ │ ├── fx_work_pool_item_t.end.hpp │ │ │ │ ├── fx_work_pool_item_t.start.hpp │ │ │ │ ├── fx_work_pool_t.end.hpp │ │ │ │ ├── fx_work_pool_t.start.hpp │ │ │ │ ├── hiber_context_t.end.hpp │ │ │ │ ├── hiber_context_t.start.hpp │ │ │ │ ├── io_info_t.end.hpp │ │ │ │ ├── io_info_t.start.hpp │ │ │ │ ├── irp_data_t.end.hpp │ │ │ │ ├── irp_data_t.start.hpp │ │ │ │ ├── irp_worker_entry_t.end.hpp │ │ │ │ ├── irp_worker_entry_t.start.hpp │ │ │ │ ├── per_processor_context_t.end.hpp │ │ │ │ ├── per_processor_context_t.start.hpp │ │ │ │ ├── policy_device_t.end.hpp │ │ │ │ ├── policy_device_t.start.hpp │ │ │ │ ├── power_action_t.end.hpp │ │ │ │ ├── power_action_t.start.hpp │ │ │ │ ├── power_plane_t.end.hpp │ │ │ │ ├── power_plane_t.start.hpp │ │ │ │ ├── power_setting_values_t.end.hpp │ │ │ │ ├── power_setting_values_t.start.hpp │ │ │ │ ├── ppm_profile_t.end.hpp │ │ │ │ ├── ppm_profile_t.start.hpp │ │ │ │ ├── rw_lock_t.end.hpp │ │ │ │ ├── rw_lock_t.start.hpp │ │ │ │ ├── shutdown_bug_check_t.end.hpp │ │ │ │ ├── shutdown_bug_check_t.start.hpp │ │ │ │ ├── thermal_telemetry_tracker_t.end.hpp │ │ │ │ ├── thermal_telemetry_tracker_t.start.hpp │ │ │ │ ├── thermal_zone_t.end.hpp │ │ │ │ ├── thermal_zone_t.start.hpp │ │ │ │ ├── trigger_wait_t.end.hpp │ │ │ │ └── trigger_wait_t.start.hpp │ │ │ ├── pep_notify_device_dstate_reason_t.hpp │ │ │ ├── per_processor_context_t.hpp │ │ │ ├── policy_device_t.hpp │ │ │ ├── power_action_t.hpp │ │ │ ├── power_action_watchdog_state_t.hpp │ │ │ ├── power_plane_t.hpp │ │ │ ├── power_setting_values_t.hpp │ │ │ ├── ppm_profile_t.hpp │ │ │ ├── rw_lock_t.hpp │ │ │ ├── shutdown_bug_check_t.hpp │ │ │ ├── sleep_checkpoint_status_t.hpp │ │ │ ├── sleep_checkpoint_t.hpp │ │ │ ├── system_idle_event_type_t.hpp │ │ │ ├── thermal_telemetry_tracker_t.hpp │ │ │ ├── thermal_zone_t.hpp │ │ │ └── trigger_wait_t.hpp │ │ ├── power/ │ │ │ ├── action_policy_t.hpp │ │ │ ├── action_t.hpp │ │ │ ├── api.hpp │ │ │ ├── condition_page_t.hpp │ │ │ ├── event_target_state_t.hpp │ │ │ ├── idle_resiliency_t.hpp │ │ │ ├── information_internal_header_t.hpp │ │ │ ├── information_level_internal_t.hpp │ │ │ ├── information_level_internal_ttmtcapi_t.hpp │ │ │ ├── information_level_t.hpp │ │ │ ├── magic/ │ │ │ │ ├── action_policy_t.end.hpp │ │ │ │ ├── action_policy_t.start.hpp │ │ │ │ ├── api.end.hpp │ │ │ │ ├── api.start.hpp │ │ │ │ ├── condition_page_t.end.hpp │ │ │ │ ├── condition_page_t.start.hpp │ │ │ │ ├── event_target_state_t.end.hpp │ │ │ │ ├── event_target_state_t.start.hpp │ │ │ │ ├── idle_resiliency_t.end.hpp │ │ │ │ ├── idle_resiliency_t.start.hpp │ │ │ │ ├── information_internal_header_t.end.hpp │ │ │ │ ├── information_internal_header_t.start.hpp │ │ │ │ ├── monitor_invocation_t.end.hpp │ │ │ │ ├── monitor_invocation_t.start.hpp │ │ │ │ ├── platform_information_t.end.hpp │ │ │ │ ├── platform_information_t.start.hpp │ │ │ │ ├── policy_event_target_state_t.end.hpp │ │ │ │ ├── policy_event_target_state_t.start.hpp │ │ │ │ ├── policy_state_table_t.end.hpp │ │ │ │ ├── policy_state_table_t.start.hpp │ │ │ │ ├── sequence_t.end.hpp │ │ │ │ ├── sequence_t.start.hpp │ │ │ │ ├── session_allow_external_dma_devices_t.end.hpp │ │ │ │ ├── session_allow_external_dma_devices_t.start.hpp │ │ │ │ ├── session_connect_t.end.hpp │ │ │ │ ├── session_connect_t.start.hpp │ │ │ │ ├── session_rit_state_t.end.hpp │ │ │ │ ├── session_rit_state_t.start.hpp │ │ │ │ ├── session_timeouts_t.end.hpp │ │ │ │ ├── session_timeouts_t.start.hpp │ │ │ │ ├── session_winlogon_t.end.hpp │ │ │ │ ├── session_winlogon_t.start.hpp │ │ │ │ ├── state_handler_t.end.hpp │ │ │ │ ├── state_handler_t.start.hpp │ │ │ │ ├── state_notify_handler_t.end.hpp │ │ │ │ ├── state_notify_handler_t.start.hpp │ │ │ │ ├── state_t.end.hpp │ │ │ │ ├── state_t.start.hpp │ │ │ │ ├── state_table_t.end.hpp │ │ │ │ ├── state_table_t.start.hpp │ │ │ │ ├── thread_interface_t.end.hpp │ │ │ │ ├── thread_interface_t.start.hpp │ │ │ │ ├── throttling_process_state_t.end.hpp │ │ │ │ ├── throttling_process_state_t.start.hpp │ │ │ │ ├── throttling_thread_state_t.end.hpp │ │ │ │ ├── throttling_thread_state_t.start.hpp │ │ │ │ ├── user_presence_t.end.hpp │ │ │ │ ├── user_presence_t.start.hpp │ │ │ │ ├── work_item_t.end.hpp │ │ │ │ └── work_item_t.start.hpp │ │ │ ├── monitor_invocation_t.hpp │ │ │ ├── monitor_request_reason_t.hpp │ │ │ ├── monitor_request_type_t.hpp │ │ │ ├── platform_information_t.hpp │ │ │ ├── platform_role_t.hpp │ │ │ ├── policy_device_type_t.hpp │ │ │ ├── policy_event_target_state_t.hpp │ │ │ ├── policy_state_table_t.hpp │ │ │ ├── request_type_internal_t.hpp │ │ │ ├── request_type_t.hpp │ │ │ ├── sequence_t.hpp │ │ │ ├── session_allow_external_dma_devices_t.hpp │ │ │ ├── session_connect_t.hpp │ │ │ ├── session_rit_state_t.hpp │ │ │ ├── session_timeouts_t.hpp │ │ │ ├── session_winlogon_t.hpp │ │ │ ├── setting_altitude_t.hpp │ │ │ ├── state_disabled_type_t.hpp │ │ │ ├── state_handler_t.hpp │ │ │ ├── state_handler_type_t.hpp │ │ │ ├── state_notify_handler_t.hpp │ │ │ ├── state_t.hpp │ │ │ ├── state_table_t.hpp │ │ │ ├── state_type_t.hpp │ │ │ ├── thread_interface_t.hpp │ │ │ ├── throttling_process_state_t.hpp │ │ │ ├── throttling_thread_state_t.hpp │ │ │ ├── user_presence_t.hpp │ │ │ ├── user_presence_type_t.hpp │ │ │ └── work_item_t.hpp │ │ ├── pox/ │ │ │ ├── magic/ │ │ │ │ ├── settings_t.end.hpp │ │ │ │ └── settings_t.start.hpp │ │ │ └── settings_t.hpp │ │ ├── pp/ │ │ │ ├── api.hpp │ │ │ ├── lookaside_list_t.hpp │ │ │ ├── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ ├── api.start.hpp │ │ │ │ ├── lookaside_list_t.end.hpp │ │ │ │ └── lookaside_list_t.start.hpp │ │ │ └── npaged_lookaside_number_t.hpp │ │ ├── ppm/ │ │ │ ├── api.hpp │ │ │ ├── concurrency_accounting_t.hpp │ │ │ ├── coordinated_selection_t.hpp │ │ │ ├── coordinated_synchronization_t.hpp │ │ │ ├── engine_settings_t.hpp │ │ │ ├── ffh_throttle_state_info_t.hpp │ │ │ ├── idle_accounting_ex_t.hpp │ │ │ ├── idle_accounting_t.hpp │ │ │ ├── idle_bucket_time_type_t.hpp │ │ │ ├── idle_state_accounting_ex_t.hpp │ │ │ ├── idle_state_accounting_t.hpp │ │ │ ├── idle_state_bucket_ex_t.hpp │ │ │ ├── idle_state_t.hpp │ │ │ ├── idle_states_t.hpp │ │ │ ├── idle_synchronization_state_t.hpp │ │ │ ├── idlestate_event_t.hpp │ │ │ ├── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ ├── api.start.hpp │ │ │ │ ├── concurrency_accounting_t.end.hpp │ │ │ │ ├── concurrency_accounting_t.start.hpp │ │ │ │ ├── coordinated_selection_t.end.hpp │ │ │ │ ├── coordinated_selection_t.start.hpp │ │ │ │ ├── coordinated_synchronization_t.end.hpp │ │ │ │ ├── coordinated_synchronization_t.start.hpp │ │ │ │ ├── engine_settings_t.end.hpp │ │ │ │ ├── engine_settings_t.start.hpp │ │ │ │ ├── ffh_throttle_state_info_t.end.hpp │ │ │ │ ├── ffh_throttle_state_info_t.start.hpp │ │ │ │ ├── idle_accounting_ex_t.end.hpp │ │ │ │ ├── idle_accounting_ex_t.start.hpp │ │ │ │ ├── idle_accounting_t.end.hpp │ │ │ │ ├── idle_accounting_t.start.hpp │ │ │ │ ├── idle_state_accounting_ex_t.end.hpp │ │ │ │ ├── idle_state_accounting_ex_t.start.hpp │ │ │ │ ├── idle_state_accounting_t.end.hpp │ │ │ │ ├── idle_state_accounting_t.start.hpp │ │ │ │ ├── idle_state_bucket_ex_t.end.hpp │ │ │ │ ├── idle_state_bucket_ex_t.start.hpp │ │ │ │ ├── idle_state_t.end.hpp │ │ │ │ ├── idle_state_t.start.hpp │ │ │ │ ├── idle_states_t.end.hpp │ │ │ │ ├── idle_states_t.start.hpp │ │ │ │ ├── idle_synchronization_state_t.end.hpp │ │ │ │ ├── idle_synchronization_state_t.start.hpp │ │ │ │ ├── idlestate_event_t.end.hpp │ │ │ │ ├── idlestate_event_t.start.hpp │ │ │ │ ├── perfstate_domain_event_t.end.hpp │ │ │ │ ├── perfstate_domain_event_t.start.hpp │ │ │ │ ├── perfstate_event_t.end.hpp │ │ │ │ ├── perfstate_event_t.start.hpp │ │ │ │ ├── platform_state_t.end.hpp │ │ │ │ ├── platform_state_t.start.hpp │ │ │ │ ├── platform_states_t.end.hpp │ │ │ │ ├── platform_states_t.start.hpp │ │ │ │ ├── policy_settings_mask_t.end.hpp │ │ │ │ ├── policy_settings_mask_t.start.hpp │ │ │ │ ├── selection_dependency_t.end.hpp │ │ │ │ ├── selection_dependency_t.start.hpp │ │ │ │ ├── selection_menu_entry_t.end.hpp │ │ │ │ ├── selection_menu_entry_t.start.hpp │ │ │ │ ├── selection_menu_t.end.hpp │ │ │ │ ├── selection_menu_t.start.hpp │ │ │ │ ├── selection_statistics_t.end.hpp │ │ │ │ ├── selection_statistics_t.start.hpp │ │ │ │ ├── thermal_policy_event_t.end.hpp │ │ │ │ ├── thermal_policy_event_t.start.hpp │ │ │ │ ├── thermalchange_event_t.end.hpp │ │ │ │ ├── thermalchange_event_t.start.hpp │ │ │ │ ├── veto_accounting_t.end.hpp │ │ │ │ ├── veto_accounting_t.start.hpp │ │ │ │ ├── veto_entry_t.end.hpp │ │ │ │ ├── veto_entry_t.start.hpp │ │ │ │ ├── wmi_idle_state_t.end.hpp │ │ │ │ ├── wmi_idle_state_t.start.hpp │ │ │ │ ├── wmi_idle_states_ex_t.end.hpp │ │ │ │ ├── wmi_idle_states_ex_t.start.hpp │ │ │ │ ├── wmi_idle_states_t.end.hpp │ │ │ │ ├── wmi_idle_states_t.start.hpp │ │ │ │ ├── wmi_legacy_perfstate_t.end.hpp │ │ │ │ ├── wmi_legacy_perfstate_t.start.hpp │ │ │ │ ├── wmi_perf_state_t.end.hpp │ │ │ │ ├── wmi_perf_state_t.start.hpp │ │ │ │ ├── wmi_perf_states_ex_t.end.hpp │ │ │ │ ├── wmi_perf_states_ex_t.start.hpp │ │ │ │ ├── wmi_perf_states_t.end.hpp │ │ │ │ └── wmi_perf_states_t.start.hpp │ │ │ ├── perf_qos_disable_reason_t.hpp │ │ │ ├── perfstate_domain_event_t.hpp │ │ │ ├── perfstate_event_t.hpp │ │ │ ├── platform_state_t.hpp │ │ │ ├── platform_states_t.hpp │ │ │ ├── policy_settings_mask_t.hpp │ │ │ ├── selection_dependency_t.hpp │ │ │ ├── selection_menu_entry_t.hpp │ │ │ ├── selection_menu_t.hpp │ │ │ ├── selection_statistics_t.hpp │ │ │ ├── thermal_policy_event_t.hpp │ │ │ ├── thermalchange_event_t.hpp │ │ │ ├── veto_accounting_t.hpp │ │ │ ├── veto_entry_t.hpp │ │ │ ├── wmi_idle_state_t.hpp │ │ │ ├── wmi_idle_states_ex_t.hpp │ │ │ ├── wmi_idle_states_t.hpp │ │ │ ├── wmi_legacy_perfstate_t.hpp │ │ │ ├── wmi_perf_state_t.hpp │ │ │ ├── wmi_perf_states_ex_t.hpp │ │ │ └── wmi_perf_states_t.hpp │ │ ├── ppp/ │ │ │ ├── api.hpp │ │ │ └── magic/ │ │ │ ├── api.end.hpp │ │ │ └── api.start.hpp │ │ ├── ppv/ │ │ │ ├── api.hpp │ │ │ └── magic/ │ │ │ ├── api.end.hpp │ │ │ └── api.start.hpp │ │ ├── ps/ │ │ │ ├── api.hpp │ │ │ ├── attribute_list_t.hpp │ │ │ ├── attribute_num_t.hpp │ │ │ ├── attribute_t.hpp │ │ │ ├── bno_isolation_parameters_t.hpp │ │ │ ├── client_security_context_t.hpp │ │ │ ├── cpu_quota_query_entry_t.hpp │ │ │ ├── cpu_quota_query_information_t.hpp │ │ │ ├── cpu_quota_set_information_t.hpp │ │ │ ├── create_info_t.hpp │ │ │ ├── create_notify_info_t.hpp │ │ │ ├── create_state_t.hpp │ │ │ ├── dynamic_enforced_address_ranges_t.hpp │ │ │ ├── exception_flags_t.hpp │ │ │ ├── interlocked_timer_delay_values_t.hpp │ │ │ ├── io_control_entry_t.hpp │ │ │ ├── job_wake_information_t.hpp │ │ │ ├── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ ├── api.start.hpp │ │ │ │ ├── attribute_list_t.end.hpp │ │ │ │ ├── attribute_list_t.start.hpp │ │ │ │ ├── attribute_t.end.hpp │ │ │ │ ├── attribute_t.start.hpp │ │ │ │ ├── bno_isolation_parameters_t.end.hpp │ │ │ │ ├── bno_isolation_parameters_t.start.hpp │ │ │ │ ├── client_security_context_t.end.hpp │ │ │ │ ├── client_security_context_t.start.hpp │ │ │ │ ├── cpu_quota_query_entry_t.end.hpp │ │ │ │ ├── cpu_quota_query_entry_t.start.hpp │ │ │ │ ├── cpu_quota_query_information_t.end.hpp │ │ │ │ ├── cpu_quota_query_information_t.start.hpp │ │ │ │ ├── cpu_quota_set_information_t.end.hpp │ │ │ │ ├── cpu_quota_set_information_t.start.hpp │ │ │ │ ├── create_info_t.end.hpp │ │ │ │ ├── create_info_t.start.hpp │ │ │ │ ├── create_notify_info_t.end.hpp │ │ │ │ ├── create_notify_info_t.start.hpp │ │ │ │ ├── dynamic_enforced_address_ranges_t.end.hpp │ │ │ │ ├── dynamic_enforced_address_ranges_t.start.hpp │ │ │ │ ├── exception_flags_t.end.hpp │ │ │ │ ├── exception_flags_t.start.hpp │ │ │ │ ├── interlocked_timer_delay_values_t.end.hpp │ │ │ │ ├── interlocked_timer_delay_values_t.start.hpp │ │ │ │ ├── io_control_entry_t.end.hpp │ │ │ │ ├── io_control_entry_t.start.hpp │ │ │ │ ├── job_wake_information_t.end.hpp │ │ │ │ ├── job_wake_information_t.start.hpp │ │ │ │ ├── memory_reserve_t.end.hpp │ │ │ │ ├── memory_reserve_t.start.hpp │ │ │ │ ├── mitigation_audit_options_map_t.end.hpp │ │ │ │ ├── mitigation_audit_options_map_t.start.hpp │ │ │ │ ├── mitigation_options_map_t.end.hpp │ │ │ │ ├── mitigation_options_map_t.start.hpp │ │ │ │ ├── ntdll_exports_t.end.hpp │ │ │ │ ├── ntdll_exports_t.start.hpp │ │ │ │ ├── pkg_claim_t.end.hpp │ │ │ │ ├── pkg_claim_t.start.hpp │ │ │ │ ├── process_wake_information_t.end.hpp │ │ │ │ ├── process_wake_information_t.start.hpp │ │ │ │ ├── property_set_t.end.hpp │ │ │ │ ├── property_set_t.start.hpp │ │ │ │ ├── protection_t.end.hpp │ │ │ │ ├── protection_t.start.hpp │ │ │ │ ├── std_handle_info_t.end.hpp │ │ │ │ ├── std_handle_info_t.start.hpp │ │ │ │ ├── system_dll_init_block_t.end.hpp │ │ │ │ ├── system_dll_init_block_t.start.hpp │ │ │ │ ├── trustlet_attribute_accessrights_t.end.hpp │ │ │ │ ├── trustlet_attribute_accessrights_t.start.hpp │ │ │ │ ├── trustlet_attribute_data_t.end.hpp │ │ │ │ ├── trustlet_attribute_data_t.start.hpp │ │ │ │ ├── trustlet_attribute_header_t.end.hpp │ │ │ │ ├── trustlet_attribute_header_t.start.hpp │ │ │ │ ├── trustlet_attribute_type_t.end.hpp │ │ │ │ ├── trustlet_attribute_type_t.start.hpp │ │ │ │ ├── trustlet_create_attributes_t.end.hpp │ │ │ │ ├── trustlet_create_attributes_t.start.hpp │ │ │ │ ├── trustlet_tksession_id_t.end.hpp │ │ │ │ ├── trustlet_tksession_id_t.start.hpp │ │ │ │ ├── wake_information_t.end.hpp │ │ │ │ └── wake_information_t.start.hpp │ │ │ ├── memory_reserve_t.hpp │ │ │ ├── mitigation_audit_options_map_t.hpp │ │ │ ├── mitigation_option_t.hpp │ │ │ ├── mitigation_options_map_t.hpp │ │ │ ├── ntdll_exports_t.hpp │ │ │ ├── pico_provider_routines_t.hpp │ │ │ ├── pico_routines_t.hpp │ │ │ ├── pkg_claim_t.hpp │ │ │ ├── process_wake_information_t.hpp │ │ │ ├── property_set_t.hpp │ │ │ ├── protected_signer_t.hpp │ │ │ ├── protected_type_t.hpp │ │ │ ├── protection_t.hpp │ │ │ ├── resource_type_t.hpp │ │ │ ├── std_handle_info_t.hpp │ │ │ ├── std_handle_state_t.hpp │ │ │ ├── syscall_provider_t.hpp │ │ │ ├── system_dll_init_block_t.hpp │ │ │ ├── trustlet_attribute_accessrights_t.hpp │ │ │ ├── trustlet_attribute_data_t.hpp │ │ │ ├── trustlet_attribute_header_t.hpp │ │ │ ├── trustlet_attribute_type_t.hpp │ │ │ ├── trustlet_create_attributes_t.hpp │ │ │ ├── trustlet_tksession_id_t.hpp │ │ │ ├── wake_information_t.hpp │ │ │ └── wake_reason_t.hpp │ │ ├── pshed/ │ │ │ └── pi_err_reading_pcie_overrides_t.hpp │ │ ├── psp/ │ │ │ ├── api.hpp │ │ │ ├── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ ├── api.start.hpp │ │ │ │ ├── syscall_provider_dispatch_context_t.end.hpp │ │ │ │ └── syscall_provider_dispatch_context_t.start.hpp │ │ │ ├── storage_t.hpp │ │ │ └── syscall_provider_dispatch_context_t.hpp │ │ ├── psz/ │ │ │ ├── api.hpp │ │ │ └── magic/ │ │ │ ├── api.end.hpp │ │ │ └── api.start.hpp │ │ ├── rpc/ │ │ │ ├── address_change_type_t.hpp │ │ │ ├── api.hpp │ │ │ ├── async_event_t.hpp │ │ │ ├── async_notification_info_t.hpp │ │ │ ├── async_state_t.hpp │ │ │ ├── binding_handle_options_v1_t.hpp │ │ │ ├── binding_handle_security_v1_a_t.hpp │ │ │ ├── binding_handle_security_v1_w_t.hpp │ │ │ ├── binding_handle_template_v1_a_t.hpp │ │ │ ├── binding_handle_template_v1_w_t.hpp │ │ │ ├── binding_vector_t.hpp │ │ │ ├── c_opt_cookie_auth_descriptor_t.hpp │ │ │ ├── call_local_address_v1_t.hpp │ │ │ ├── client_information1_t.hpp │ │ │ ├── client_interface_t.hpp │ │ │ ├── dispatch_table_t.hpp │ │ │ ├── endpoint_templatea_t.hpp │ │ │ ├── endpoint_templatew_t.hpp │ │ │ ├── http_redirector_stage_t.hpp │ │ │ ├── http_transport_credentials_a_t.hpp │ │ │ ├── http_transport_credentials_v2_a_t.hpp │ │ │ ├── http_transport_credentials_v2_w_t.hpp │ │ │ ├── http_transport_credentials_v3_a_t.hpp │ │ │ ├── http_transport_credentials_v3_w_t.hpp │ │ │ ├── http_transport_credentials_w_t.hpp │ │ │ ├── if_id_t.hpp │ │ │ ├── if_id_vector_t.hpp │ │ │ ├── import_context_p_t.hpp │ │ │ ├── interface_templatea_t.hpp │ │ │ ├── interface_templatew_t.hpp │ │ │ ├── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ ├── api.start.hpp │ │ │ │ ├── async_notification_info_t.end.hpp │ │ │ │ ├── async_notification_info_t.start.hpp │ │ │ │ ├── async_state_t.end.hpp │ │ │ │ ├── async_state_t.start.hpp │ │ │ │ ├── binding_handle_options_v1_t.end.hpp │ │ │ │ ├── binding_handle_options_v1_t.start.hpp │ │ │ │ ├── binding_handle_security_v1_a_t.end.hpp │ │ │ │ ├── binding_handle_security_v1_a_t.start.hpp │ │ │ │ ├── binding_handle_security_v1_w_t.end.hpp │ │ │ │ ├── binding_handle_security_v1_w_t.start.hpp │ │ │ │ ├── binding_handle_template_v1_a_t.end.hpp │ │ │ │ ├── binding_handle_template_v1_a_t.start.hpp │ │ │ │ ├── binding_handle_template_v1_w_t.end.hpp │ │ │ │ ├── binding_handle_template_v1_w_t.start.hpp │ │ │ │ ├── binding_vector_t.end.hpp │ │ │ │ ├── binding_vector_t.start.hpp │ │ │ │ ├── c_opt_cookie_auth_descriptor_t.end.hpp │ │ │ │ ├── c_opt_cookie_auth_descriptor_t.start.hpp │ │ │ │ ├── call_local_address_v1_t.end.hpp │ │ │ │ ├── call_local_address_v1_t.start.hpp │ │ │ │ ├── client_information1_t.end.hpp │ │ │ │ ├── client_information1_t.start.hpp │ │ │ │ ├── client_interface_t.end.hpp │ │ │ │ ├── client_interface_t.start.hpp │ │ │ │ ├── dispatch_table_t.end.hpp │ │ │ │ ├── dispatch_table_t.start.hpp │ │ │ │ ├── endpoint_templatea_t.end.hpp │ │ │ │ ├── endpoint_templatea_t.start.hpp │ │ │ │ ├── endpoint_templatew_t.end.hpp │ │ │ │ ├── endpoint_templatew_t.start.hpp │ │ │ │ ├── http_transport_credentials_a_t.end.hpp │ │ │ │ ├── http_transport_credentials_a_t.start.hpp │ │ │ │ ├── http_transport_credentials_v2_a_t.end.hpp │ │ │ │ ├── http_transport_credentials_v2_a_t.start.hpp │ │ │ │ ├── http_transport_credentials_v2_w_t.end.hpp │ │ │ │ ├── http_transport_credentials_v2_w_t.start.hpp │ │ │ │ ├── http_transport_credentials_v3_a_t.end.hpp │ │ │ │ ├── http_transport_credentials_v3_a_t.start.hpp │ │ │ │ ├── http_transport_credentials_v3_w_t.end.hpp │ │ │ │ ├── http_transport_credentials_v3_w_t.start.hpp │ │ │ │ ├── http_transport_credentials_w_t.end.hpp │ │ │ │ ├── http_transport_credentials_w_t.start.hpp │ │ │ │ ├── if_id_t.end.hpp │ │ │ │ ├── if_id_t.start.hpp │ │ │ │ ├── if_id_vector_t.end.hpp │ │ │ │ ├── if_id_vector_t.start.hpp │ │ │ │ ├── import_context_p_t.end.hpp │ │ │ │ ├── import_context_p_t.start.hpp │ │ │ │ ├── interface_templatea_t.end.hpp │ │ │ │ ├── interface_templatea_t.start.hpp │ │ │ │ ├── interface_templatew_t.end.hpp │ │ │ │ ├── interface_templatew_t.start.hpp │ │ │ │ ├── message_t.end.hpp │ │ │ │ ├── message_t.start.hpp │ │ │ │ ├── policy_t.end.hpp │ │ │ │ ├── policy_t.start.hpp │ │ │ │ ├── protseq_endpoint_t.end.hpp │ │ │ │ ├── protseq_endpoint_t.start.hpp │ │ │ │ ├── protseq_vectora_t.end.hpp │ │ │ │ ├── protseq_vectora_t.start.hpp │ │ │ │ ├── protseq_vectorw_t.end.hpp │ │ │ │ ├── protseq_vectorw_t.start.hpp │ │ │ │ ├── sec_context_key_info_t.end.hpp │ │ │ │ ├── sec_context_key_info_t.start.hpp │ │ │ │ ├── security_qos_t.end.hpp │ │ │ │ ├── security_qos_t.start.hpp │ │ │ │ ├── security_qos_v2_a_t.end.hpp │ │ │ │ ├── security_qos_v2_a_t.start.hpp │ │ │ │ ├── security_qos_v2_w_t.end.hpp │ │ │ │ ├── security_qos_v2_w_t.start.hpp │ │ │ │ ├── security_qos_v3_a_t.end.hpp │ │ │ │ ├── security_qos_v3_a_t.start.hpp │ │ │ │ ├── security_qos_v3_w_t.end.hpp │ │ │ │ ├── security_qos_v3_w_t.start.hpp │ │ │ │ ├── security_qos_v4_a_t.end.hpp │ │ │ │ ├── security_qos_v4_a_t.start.hpp │ │ │ │ ├── security_qos_v4_w_t.end.hpp │ │ │ │ ├── security_qos_v4_w_t.start.hpp │ │ │ │ ├── security_qos_v5_a_t.end.hpp │ │ │ │ ├── security_qos_v5_a_t.start.hpp │ │ │ │ ├── security_qos_v5_w_t.end.hpp │ │ │ │ ├── security_qos_v5_w_t.start.hpp │ │ │ │ ├── server_interface_t.end.hpp │ │ │ │ ├── server_interface_t.start.hpp │ │ │ │ ├── stats_vector_t.end.hpp │ │ │ │ ├── stats_vector_t.start.hpp │ │ │ │ ├── syntax_identifier_t.end.hpp │ │ │ │ ├── syntax_identifier_t.start.hpp │ │ │ │ ├── transfer_syntax_t.end.hpp │ │ │ │ ├── transfer_syntax_t.start.hpp │ │ │ │ ├── version_t.end.hpp │ │ │ │ └── version_t.start.hpp │ │ │ ├── message_t.hpp │ │ │ ├── notification_types_t.hpp │ │ │ ├── notifications_t.hpp │ │ │ ├── policy_t.hpp │ │ │ ├── protseq_endpoint_t.hpp │ │ │ ├── protseq_vectora_t.hpp │ │ │ ├── protseq_vectorw_t.hpp │ │ │ ├── proxy_perf_counters_t.hpp │ │ │ ├── sec_context_key_info_t.hpp │ │ │ ├── security_qos_t.hpp │ │ │ ├── security_qos_v2_a_t.hpp │ │ │ ├── security_qos_v2_w_t.hpp │ │ │ ├── security_qos_v3_a_t.hpp │ │ │ ├── security_qos_v3_w_t.hpp │ │ │ ├── security_qos_v4_a_t.hpp │ │ │ ├── security_qos_v4_w_t.hpp │ │ │ ├── security_qos_v5_a_t.hpp │ │ │ ├── security_qos_v5_w_t.hpp │ │ │ ├── server_interface_t.hpp │ │ │ ├── stats_vector_t.hpp │ │ │ ├── syntax_identifier_t.hpp │ │ │ ├── transfer_syntax_t.hpp │ │ │ └── version_t.hpp │ │ ├── rtl/ │ │ │ ├── ace_data_t.hpp │ │ │ ├── activation_context_stack_frame_t.hpp │ │ │ ├── api.hpp │ │ │ ├── atom_table_entry_t.hpp │ │ │ ├── atom_table_reference_t.hpp │ │ │ ├── atom_table_t.hpp │ │ │ ├── avl_table_t.hpp │ │ │ ├── avl_tree_t.hpp │ │ │ ├── backoff_t.hpp │ │ │ ├── balanced_links_t.hpp │ │ │ ├── balanced_node_t.hpp │ │ │ ├── barrier_t.hpp │ │ │ ├── bitmap_ex_t.hpp │ │ │ ├── bitmap_run_t.hpp │ │ │ ├── bitmap_t.hpp │ │ │ ├── bsd_item_t.hpp │ │ │ ├── bsd_item_type_t.hpp │ │ │ ├── buffer_t.hpp │ │ │ ├── caller_allocated_activation_context_stack_frame_basic_t.hpp │ │ │ ├── caller_allocated_activation_context_stack_frame_extended_t.hpp │ │ │ ├── chash_entry_t.hpp │ │ │ ├── chash_table_t.hpp │ │ │ ├── circular_list_head_t.hpp │ │ │ ├── condition_variable_t.hpp │ │ │ ├── critical_section32_t.hpp │ │ │ ├── critical_section64_t.hpp │ │ │ ├── critical_section_debug32_t.hpp │ │ │ ├── critical_section_debug64_t.hpp │ │ │ ├── critical_section_debug_t.hpp │ │ │ ├── critical_section_t.hpp │ │ │ ├── csparse_bitmap_t.hpp │ │ │ ├── debug_information32_t.hpp │ │ │ ├── debug_information_t.hpp │ │ │ ├── disk_space_info_t.hpp │ │ │ ├── disk_space_policy_t.hpp │ │ │ ├── disk_speed_info_t.hpp │ │ │ ├── disk_speed_policy_t.hpp │ │ │ ├── disk_write_constraint_info_t.hpp │ │ │ ├── disk_write_constraint_policy_t.hpp │ │ │ ├── drive_letter_curdir_t.hpp │ │ │ ├── dynamic_hash_table_context_t.hpp │ │ │ ├── dynamic_hash_table_entry_t.hpp │ │ │ ├── dynamic_hash_table_enumerator_t.hpp │ │ │ ├── dynamic_hash_table_t.hpp │ │ │ ├── dynamic_lookaside_t.hpp │ │ │ ├── dynamic_time_zone_information_t.hpp │ │ │ ├── elevation_flags_t.hpp │ │ │ ├── enclave_launch_token_t.hpp │ │ │ ├── feature_configuration_operation_t.hpp │ │ │ ├── feature_configuration_priority_t.hpp │ │ │ ├── feature_configuration_t.hpp │ │ │ ├── feature_configuration_table_t.hpp │ │ │ ├── feature_configuration_type_t.hpp │ │ │ ├── feature_configuration_update_t.hpp │ │ │ ├── feature_enabled_state_options_t.hpp │ │ │ ├── feature_enabled_state_t.hpp │ │ │ ├── feature_usage_data_t.hpp │ │ │ ├── feature_usage_report_t.hpp │ │ │ ├── feature_usage_subscription_details_t.hpp │ │ │ ├── feature_usage_subscription_table_t.hpp │ │ │ ├── feature_usage_subscription_target_t.hpp │ │ │ ├── feature_variant_payload_kind_t.hpp │ │ │ ├── function_override_capabilities_t.hpp │ │ │ ├── generic_compare_results_t.hpp │ │ │ ├── generic_table_t.hpp │ │ │ ├── handle_table_entry_t.hpp │ │ │ ├── handle_table_t.hpp │ │ │ ├── hash_entry_t.hpp │ │ │ ├── hash_table_iterator_t.hpp │ │ │ ├── hash_table_t.hpp │ │ │ ├── heap_entry_t.hpp │ │ │ ├── heap_information_t.hpp │ │ │ ├── heap_memory_limit_data_t.hpp │ │ │ ├── heap_memory_limit_info_t.hpp │ │ │ ├── heap_parameters_t.hpp │ │ │ ├── heap_stack_control_t.hpp │ │ │ ├── heap_stack_query_t.hpp │ │ │ ├── heap_tag_info_t.hpp │ │ │ ├── heap_tag_t.hpp │ │ │ ├── heap_usage_entry_t.hpp │ │ │ ├── heap_usage_t.hpp │ │ │ ├── heap_walk_entry_t.hpp │ │ │ ├── hp_env_handle_t.hpp │ │ │ ├── hp_heap_va_callbacks_encoded_t.hpp │ │ │ ├── hp_lfh_config_t.hpp │ │ │ ├── hp_seg_alloc_policy_t.hpp │ │ │ ├── hp_sub_allocator_configs_t.hpp │ │ │ ├── hp_vs_config_t.hpp │ │ │ ├── image_mitigation_aslr_policy_t.hpp │ │ │ ├── image_mitigation_binary_signature_policy_t.hpp │ │ │ ├── image_mitigation_child_process_policy_t.hpp │ │ │ ├── image_mitigation_control_flow_guard_policy_t.hpp │ │ │ ├── image_mitigation_dep_policy_t.hpp │ │ │ ├── image_mitigation_dynamic_code_policy_t.hpp │ │ │ ├── image_mitigation_extension_point_disable_policy_t.hpp │ │ │ ├── image_mitigation_font_disable_policy_t.hpp │ │ │ ├── image_mitigation_heap_policy_t.hpp │ │ │ ├── image_mitigation_image_load_policy_t.hpp │ │ │ ├── image_mitigation_option_state_t.hpp │ │ │ ├── image_mitigation_payload_restriction_policy_t.hpp │ │ │ ├── image_mitigation_policy_t.hpp │ │ │ ├── image_mitigation_redirection_trust_policy_t.hpp │ │ │ ├── image_mitigation_sehop_policy_t.hpp │ │ │ ├── image_mitigation_strict_handle_check_policy_t.hpp │ │ │ ├── image_mitigation_system_call_disable_policy_t.hpp │ │ │ ├── image_mitigation_user_shadow_stack_policy_t.hpp │ │ │ ├── image_policy_metadata_t.hpp │ │ │ ├── lfg_rng_state_t.hpp │ │ │ ├── lookaside_t.hpp │ │ │ ├── magic/ │ │ │ │ ├── ace_data_t.end.hpp │ │ │ │ ├── ace_data_t.start.hpp │ │ │ │ ├── activation_context_stack_frame_t.end.hpp │ │ │ │ ├── activation_context_stack_frame_t.start.hpp │ │ │ │ ├── api.end.hpp │ │ │ │ ├── api.start.hpp │ │ │ │ ├── atom_table_entry_t.end.hpp │ │ │ │ ├── atom_table_entry_t.start.hpp │ │ │ │ ├── atom_table_reference_t.end.hpp │ │ │ │ ├── atom_table_reference_t.start.hpp │ │ │ │ ├── atom_table_t.end.hpp │ │ │ │ ├── atom_table_t.start.hpp │ │ │ │ ├── avl_table_t.end.hpp │ │ │ │ ├── avl_table_t.start.hpp │ │ │ │ ├── avl_tree_t.end.hpp │ │ │ │ ├── avl_tree_t.start.hpp │ │ │ │ ├── backoff_t.end.hpp │ │ │ │ ├── backoff_t.start.hpp │ │ │ │ ├── balanced_links_t.end.hpp │ │ │ │ ├── balanced_links_t.start.hpp │ │ │ │ ├── balanced_node_t.end.hpp │ │ │ │ ├── balanced_node_t.start.hpp │ │ │ │ ├── barrier_t.end.hpp │ │ │ │ ├── barrier_t.start.hpp │ │ │ │ ├── bitmap_ex_t.end.hpp │ │ │ │ ├── bitmap_ex_t.start.hpp │ │ │ │ ├── bitmap_run_t.end.hpp │ │ │ │ ├── bitmap_run_t.start.hpp │ │ │ │ ├── bitmap_t.end.hpp │ │ │ │ ├── bitmap_t.start.hpp │ │ │ │ ├── bsd_item_t.end.hpp │ │ │ │ ├── bsd_item_t.start.hpp │ │ │ │ ├── buffer_t.end.hpp │ │ │ │ ├── buffer_t.start.hpp │ │ │ │ ├── caller_allocated_activation_context_stack_frame_basic_t.end.hpp │ │ │ │ ├── caller_allocated_activation_context_stack_frame_basic_t.start.hpp │ │ │ │ ├── caller_allocated_activation_context_stack_frame_extended_t.end.hpp │ │ │ │ ├── caller_allocated_activation_context_stack_frame_extended_t.start.hpp │ │ │ │ ├── chash_entry_t.end.hpp │ │ │ │ ├── chash_entry_t.start.hpp │ │ │ │ ├── chash_table_t.end.hpp │ │ │ │ ├── chash_table_t.start.hpp │ │ │ │ ├── circular_list_head_t.end.hpp │ │ │ │ ├── circular_list_head_t.start.hpp │ │ │ │ ├── condition_variable_t.end.hpp │ │ │ │ ├── condition_variable_t.start.hpp │ │ │ │ ├── critical_section32_t.end.hpp │ │ │ │ ├── critical_section32_t.start.hpp │ │ │ │ ├── critical_section64_t.end.hpp │ │ │ │ ├── critical_section64_t.start.hpp │ │ │ │ ├── critical_section_debug32_t.end.hpp │ │ │ │ ├── critical_section_debug32_t.start.hpp │ │ │ │ ├── critical_section_debug64_t.end.hpp │ │ │ │ ├── critical_section_debug64_t.start.hpp │ │ │ │ ├── critical_section_debug_t.end.hpp │ │ │ │ ├── critical_section_debug_t.start.hpp │ │ │ │ ├── critical_section_t.end.hpp │ │ │ │ ├── critical_section_t.start.hpp │ │ │ │ ├── csparse_bitmap_t.end.hpp │ │ │ │ ├── csparse_bitmap_t.start.hpp │ │ │ │ ├── debug_information32_t.end.hpp │ │ │ │ ├── debug_information32_t.start.hpp │ │ │ │ ├── debug_information_t.end.hpp │ │ │ │ ├── debug_information_t.start.hpp │ │ │ │ ├── disk_space_info_t.end.hpp │ │ │ │ ├── disk_space_info_t.start.hpp │ │ │ │ ├── disk_speed_info_t.end.hpp │ │ │ │ ├── disk_speed_info_t.start.hpp │ │ │ │ ├── disk_write_constraint_info_t.end.hpp │ │ │ │ ├── disk_write_constraint_info_t.start.hpp │ │ │ │ ├── drive_letter_curdir_t.end.hpp │ │ │ │ ├── drive_letter_curdir_t.start.hpp │ │ │ │ ├── dynamic_hash_table_context_t.end.hpp │ │ │ │ ├── dynamic_hash_table_context_t.start.hpp │ │ │ │ ├── dynamic_hash_table_entry_t.end.hpp │ │ │ │ ├── dynamic_hash_table_entry_t.start.hpp │ │ │ │ ├── dynamic_hash_table_enumerator_t.end.hpp │ │ │ │ ├── dynamic_hash_table_enumerator_t.start.hpp │ │ │ │ ├── dynamic_hash_table_t.end.hpp │ │ │ │ ├── dynamic_hash_table_t.start.hpp │ │ │ │ ├── dynamic_lookaside_t.end.hpp │ │ │ │ ├── dynamic_lookaside_t.start.hpp │ │ │ │ ├── dynamic_time_zone_information_t.end.hpp │ │ │ │ ├── dynamic_time_zone_information_t.start.hpp │ │ │ │ ├── elevation_flags_t.end.hpp │ │ │ │ ├── elevation_flags_t.start.hpp │ │ │ │ ├── enclave_launch_token_t.end.hpp │ │ │ │ ├── enclave_launch_token_t.start.hpp │ │ │ │ ├── feature_configuration_t.end.hpp │ │ │ │ ├── feature_configuration_t.start.hpp │ │ │ │ ├── feature_configuration_table_t.end.hpp │ │ │ │ ├── feature_configuration_table_t.start.hpp │ │ │ │ ├── feature_configuration_update_t.end.hpp │ │ │ │ ├── feature_configuration_update_t.start.hpp │ │ │ │ ├── feature_usage_data_t.end.hpp │ │ │ │ ├── feature_usage_data_t.start.hpp │ │ │ │ ├── feature_usage_report_t.end.hpp │ │ │ │ ├── feature_usage_report_t.start.hpp │ │ │ │ ├── feature_usage_subscription_details_t.end.hpp │ │ │ │ ├── feature_usage_subscription_details_t.start.hpp │ │ │ │ ├── feature_usage_subscription_table_t.end.hpp │ │ │ │ ├── feature_usage_subscription_table_t.start.hpp │ │ │ │ ├── feature_usage_subscription_target_t.end.hpp │ │ │ │ ├── feature_usage_subscription_target_t.start.hpp │ │ │ │ ├── function_override_capabilities_t.end.hpp │ │ │ │ ├── function_override_capabilities_t.start.hpp │ │ │ │ ├── generic_table_t.end.hpp │ │ │ │ ├── generic_table_t.start.hpp │ │ │ │ ├── handle_table_entry_t.end.hpp │ │ │ │ ├── handle_table_entry_t.start.hpp │ │ │ │ ├── handle_table_t.end.hpp │ │ │ │ ├── handle_table_t.start.hpp │ │ │ │ ├── hash_entry_t.end.hpp │ │ │ │ ├── hash_entry_t.start.hpp │ │ │ │ ├── hash_table_iterator_t.end.hpp │ │ │ │ ├── hash_table_iterator_t.start.hpp │ │ │ │ ├── hash_table_t.end.hpp │ │ │ │ ├── hash_table_t.start.hpp │ │ │ │ ├── heap_entry_t.end.hpp │ │ │ │ ├── heap_entry_t.start.hpp │ │ │ │ ├── heap_information_t.end.hpp │ │ │ │ ├── heap_information_t.start.hpp │ │ │ │ ├── heap_memory_limit_data_t.end.hpp │ │ │ │ ├── heap_memory_limit_data_t.start.hpp │ │ │ │ ├── heap_memory_limit_info_t.end.hpp │ │ │ │ ├── heap_memory_limit_info_t.start.hpp │ │ │ │ ├── heap_parameters_t.end.hpp │ │ │ │ ├── heap_parameters_t.start.hpp │ │ │ │ ├── heap_stack_control_t.end.hpp │ │ │ │ ├── heap_stack_control_t.start.hpp │ │ │ │ ├── heap_stack_query_t.end.hpp │ │ │ │ ├── heap_stack_query_t.start.hpp │ │ │ │ ├── heap_tag_info_t.end.hpp │ │ │ │ ├── heap_tag_info_t.start.hpp │ │ │ │ ├── heap_tag_t.end.hpp │ │ │ │ ├── heap_tag_t.start.hpp │ │ │ │ ├── heap_usage_entry_t.end.hpp │ │ │ │ ├── heap_usage_entry_t.start.hpp │ │ │ │ ├── heap_usage_t.end.hpp │ │ │ │ ├── heap_usage_t.start.hpp │ │ │ │ ├── heap_walk_entry_t.end.hpp │ │ │ │ ├── heap_walk_entry_t.start.hpp │ │ │ │ ├── hp_env_handle_t.end.hpp │ │ │ │ ├── hp_env_handle_t.start.hpp │ │ │ │ ├── hp_heap_va_callbacks_encoded_t.end.hpp │ │ │ │ ├── hp_heap_va_callbacks_encoded_t.start.hpp │ │ │ │ ├── hp_lfh_config_t.end.hpp │ │ │ │ ├── hp_lfh_config_t.start.hpp │ │ │ │ ├── hp_seg_alloc_policy_t.end.hpp │ │ │ │ ├── hp_seg_alloc_policy_t.start.hpp │ │ │ │ ├── hp_sub_allocator_configs_t.end.hpp │ │ │ │ ├── hp_sub_allocator_configs_t.start.hpp │ │ │ │ ├── hp_vs_config_t.end.hpp │ │ │ │ ├── hp_vs_config_t.start.hpp │ │ │ │ ├── image_mitigation_aslr_policy_t.end.hpp │ │ │ │ ├── image_mitigation_aslr_policy_t.start.hpp │ │ │ │ ├── image_mitigation_binary_signature_policy_t.end.hpp │ │ │ │ ├── image_mitigation_binary_signature_policy_t.start.hpp │ │ │ │ ├── image_mitigation_child_process_policy_t.end.hpp │ │ │ │ ├── image_mitigation_child_process_policy_t.start.hpp │ │ │ │ ├── image_mitigation_control_flow_guard_policy_t.end.hpp │ │ │ │ ├── image_mitigation_control_flow_guard_policy_t.start.hpp │ │ │ │ ├── image_mitigation_dep_policy_t.end.hpp │ │ │ │ ├── image_mitigation_dep_policy_t.start.hpp │ │ │ │ ├── image_mitigation_dynamic_code_policy_t.end.hpp │ │ │ │ ├── image_mitigation_dynamic_code_policy_t.start.hpp │ │ │ │ ├── image_mitigation_extension_point_disable_policy_t.end.hpp │ │ │ │ ├── image_mitigation_extension_point_disable_policy_t.start.hpp │ │ │ │ ├── image_mitigation_font_disable_policy_t.end.hpp │ │ │ │ ├── image_mitigation_font_disable_policy_t.start.hpp │ │ │ │ ├── image_mitigation_heap_policy_t.end.hpp │ │ │ │ ├── image_mitigation_heap_policy_t.start.hpp │ │ │ │ ├── image_mitigation_image_load_policy_t.end.hpp │ │ │ │ ├── image_mitigation_image_load_policy_t.start.hpp │ │ │ │ ├── image_mitigation_payload_restriction_policy_t.end.hpp │ │ │ │ ├── image_mitigation_payload_restriction_policy_t.start.hpp │ │ │ │ ├── image_mitigation_policy_t.end.hpp │ │ │ │ ├── image_mitigation_policy_t.start.hpp │ │ │ │ ├── image_mitigation_redirection_trust_policy_t.end.hpp │ │ │ │ ├── image_mitigation_redirection_trust_policy_t.start.hpp │ │ │ │ ├── image_mitigation_sehop_policy_t.end.hpp │ │ │ │ ├── image_mitigation_sehop_policy_t.start.hpp │ │ │ │ ├── image_mitigation_strict_handle_check_policy_t.end.hpp │ │ │ │ ├── image_mitigation_strict_handle_check_policy_t.start.hpp │ │ │ │ ├── image_mitigation_system_call_disable_policy_t.end.hpp │ │ │ │ ├── image_mitigation_system_call_disable_policy_t.start.hpp │ │ │ │ ├── image_mitigation_user_shadow_stack_policy_t.end.hpp │ │ │ │ ├── image_mitigation_user_shadow_stack_policy_t.start.hpp │ │ │ │ ├── image_policy_metadata_t.end.hpp │ │ │ │ ├── image_policy_metadata_t.start.hpp │ │ │ │ ├── lfg_rng_state_t.end.hpp │ │ │ │ ├── lfg_rng_state_t.start.hpp │ │ │ │ ├── lookaside_t.end.hpp │ │ │ │ ├── lookaside_t.start.hpp │ │ │ │ ├── memory_stream_param_t.end.hpp │ │ │ │ ├── memory_stream_param_t.start.hpp │ │ │ │ ├── memory_stream_t.end.hpp │ │ │ │ ├── memory_stream_t.start.hpp │ │ │ │ ├── module_basic_info_t.end.hpp │ │ │ │ ├── module_basic_info_t.start.hpp │ │ │ │ ├── module_extended_info_t.end.hpp │ │ │ │ ├── module_extended_info_t.start.hpp │ │ │ │ ├── nls_state_t.end.hpp │ │ │ │ ├── nls_state_t.start.hpp │ │ │ │ ├── perthread_curdir_t.end.hpp │ │ │ │ ├── perthread_curdir_t.start.hpp │ │ │ │ ├── physical_memory_info_t.end.hpp │ │ │ │ ├── physical_memory_info_t.start.hpp │ │ │ │ ├── process_backtrace_information_t.end.hpp │ │ │ │ ├── process_backtrace_information_t.start.hpp │ │ │ │ ├── process_backtraces_control_t.end.hpp │ │ │ │ ├── process_backtraces_control_t.start.hpp │ │ │ │ ├── process_backtraces_t.end.hpp │ │ │ │ ├── process_backtraces_t.start.hpp │ │ │ │ ├── process_heaps_t.end.hpp │ │ │ │ ├── process_heaps_t.start.hpp │ │ │ │ ├── process_lock_information_t.end.hpp │ │ │ │ ├── process_lock_information_t.start.hpp │ │ │ │ ├── process_locks_t.end.hpp │ │ │ │ ├── process_locks_t.start.hpp │ │ │ │ ├── process_module_information_ex_t.end.hpp │ │ │ │ ├── process_module_information_ex_t.start.hpp │ │ │ │ ├── process_module_information_t.end.hpp │ │ │ │ ├── process_module_information_t.start.hpp │ │ │ │ ├── process_modules_t.end.hpp │ │ │ │ ├── process_modules_t.start.hpp │ │ │ │ ├── process_verifier_options_t.end.hpp │ │ │ │ ├── process_verifier_options_t.start.hpp │ │ │ │ ├── protected_access_t.end.hpp │ │ │ │ ├── protected_access_t.start.hpp │ │ │ │ ├── query_debug_information_info_t.end.hpp │ │ │ │ ├── query_debug_information_info_t.start.hpp │ │ │ │ ├── query_debug_virtual_process_t.end.hpp │ │ │ │ ├── query_debug_virtual_process_t.start.hpp │ │ │ │ ├── query_registry_table_t.end.hpp │ │ │ │ ├── query_registry_table_t.start.hpp │ │ │ │ ├── range_list_t.end.hpp │ │ │ │ ├── range_list_t.start.hpp │ │ │ │ ├── range_t.end.hpp │ │ │ │ ├── range_t.start.hpp │ │ │ │ ├── rb_tree_t.end.hpp │ │ │ │ ├── rb_tree_t.start.hpp │ │ │ │ ├── relative_name_u_t.end.hpp │ │ │ │ ├── relative_name_u_t.start.hpp │ │ │ │ ├── resource_t.end.hpp │ │ │ │ ├── resource_t.start.hpp │ │ │ │ ├── retpoline_binary_info_t.end.hpp │ │ │ │ ├── retpoline_binary_info_t.start.hpp │ │ │ │ ├── retpoline_relocation_index_t.end.hpp │ │ │ │ ├── retpoline_relocation_index_t.start.hpp │ │ │ │ ├── retpoline_routines_t.end.hpp │ │ │ │ ├── retpoline_routines_t.start.hpp │ │ │ │ ├── run_once_t.end.hpp │ │ │ │ ├── run_once_t.start.hpp │ │ │ │ ├── rva_list_iterator_t.end.hpp │ │ │ │ ├── rva_list_iterator_t.start.hpp │ │ │ │ ├── rva_list_t.end.hpp │ │ │ │ ├── rva_list_t.start.hpp │ │ │ │ ├── rxact_context_t.end.hpp │ │ │ │ ├── rxact_context_t.start.hpp │ │ │ │ ├── rxact_log_t.end.hpp │ │ │ │ ├── rxact_log_t.start.hpp │ │ │ │ ├── segment_heap_memory_source_t.end.hpp │ │ │ │ ├── segment_heap_memory_source_t.start.hpp │ │ │ │ ├── segment_heap_parameters_t.end.hpp │ │ │ │ ├── segment_heap_parameters_t.start.hpp │ │ │ │ ├── sparse_array_t.end.hpp │ │ │ │ ├── sparse_array_t.start.hpp │ │ │ │ ├── sparse_bitmap_ctx_t.end.hpp │ │ │ │ ├── sparse_bitmap_ctx_t.start.hpp │ │ │ │ ├── sparse_bitmap_parameter_t.end.hpp │ │ │ │ ├── sparse_bitmap_parameter_t.start.hpp │ │ │ │ ├── sparse_bitmap_range_t.end.hpp │ │ │ │ ├── sparse_bitmap_range_t.start.hpp │ │ │ │ ├── sparse_bitmap_run_t.end.hpp │ │ │ │ ├── sparse_bitmap_run_t.start.hpp │ │ │ │ ├── splay_links_t.end.hpp │ │ │ │ ├── splay_links_t.start.hpp │ │ │ │ ├── srwlock_t.end.hpp │ │ │ │ ├── srwlock_t.start.hpp │ │ │ │ ├── stack_context_entry_t.end.hpp │ │ │ │ ├── stack_context_entry_t.start.hpp │ │ │ │ ├── stack_context_t.end.hpp │ │ │ │ ├── stack_context_t.start.hpp │ │ │ │ ├── stack_database_lock_t.end.hpp │ │ │ │ ├── stack_database_lock_t.start.hpp │ │ │ │ ├── stack_trace_database_create_t.end.hpp │ │ │ │ ├── stack_trace_database_create_t.start.hpp │ │ │ │ ├── stack_trace_entry_t.end.hpp │ │ │ │ ├── stack_trace_entry_t.start.hpp │ │ │ │ ├── stackdb_context_t.end.hpp │ │ │ │ ├── stackdb_context_t.start.hpp │ │ │ │ ├── std_list_entry_t.end.hpp │ │ │ │ ├── std_list_entry_t.start.hpp │ │ │ │ ├── std_list_head_t.end.hpp │ │ │ │ ├── std_list_head_t.start.hpp │ │ │ │ ├── tick_lock_t.end.hpp │ │ │ │ ├── tick_lock_t.start.hpp │ │ │ │ ├── time_zone_information_t.end.hpp │ │ │ │ ├── time_zone_information_t.start.hpp │ │ │ │ ├── trace_block_t.end.hpp │ │ │ │ ├── trace_block_t.start.hpp │ │ │ │ ├── trace_database_t.end.hpp │ │ │ │ ├── trace_database_t.start.hpp │ │ │ │ ├── trace_enumerate_t.end.hpp │ │ │ │ ├── trace_enumerate_t.start.hpp │ │ │ │ ├── trace_segment_t.end.hpp │ │ │ │ ├── trace_segment_t.start.hpp │ │ │ │ ├── ums_completion_list_t.end.hpp │ │ │ │ ├── ums_completion_list_t.start.hpp │ │ │ │ ├── ums_context_t.end.hpp │ │ │ │ ├── ums_context_t.start.hpp │ │ │ │ ├── ums_scheduler_startup_info_t.end.hpp │ │ │ │ ├── ums_scheduler_startup_info_t.start.hpp │ │ │ │ ├── unicode_string_buffer_t.end.hpp │ │ │ │ ├── unicode_string_buffer_t.start.hpp │ │ │ │ ├── unload_event_trace32_t.end.hpp │ │ │ │ ├── unload_event_trace32_t.start.hpp │ │ │ │ ├── unload_event_trace64_t.end.hpp │ │ │ │ ├── unload_event_trace64_t.start.hpp │ │ │ │ ├── unload_event_trace_t.end.hpp │ │ │ │ ├── unload_event_trace_t.start.hpp │ │ │ │ ├── user_process_extended_parameters_t.end.hpp │ │ │ │ ├── user_process_extended_parameters_t.start.hpp │ │ │ │ ├── user_process_information64_t.end.hpp │ │ │ │ ├── user_process_information64_t.start.hpp │ │ │ │ ├── user_process_information_t.end.hpp │ │ │ │ ├── user_process_information_t.start.hpp │ │ │ │ ├── user_process_parameters_t.end.hpp │ │ │ │ ├── user_process_parameters_t.start.hpp │ │ │ │ ├── verifier_all_information_t.end.hpp │ │ │ │ ├── verifier_all_information_t.start.hpp │ │ │ │ ├── verifier_dll_descriptor_t.end.hpp │ │ │ │ ├── verifier_dll_descriptor_t.start.hpp │ │ │ │ ├── verifier_fault_injections_information_t.end.hpp │ │ │ │ ├── verifier_fault_injections_information_t.start.hpp │ │ │ │ ├── verifier_heap_table_t.end.hpp │ │ │ │ ├── verifier_heap_table_t.start.hpp │ │ │ │ ├── verifier_helper_table_t.end.hpp │ │ │ │ ├── verifier_helper_table_t.start.hpp │ │ │ │ ├── verifier_pageheap_information_t.end.hpp │ │ │ │ ├── verifier_pageheap_information_t.start.hpp │ │ │ │ ├── verifier_pageheaps_information_t.end.hpp │ │ │ │ ├── verifier_pageheaps_information_t.start.hpp │ │ │ │ ├── verifier_provider_descriptor_t.end.hpp │ │ │ │ ├── verifier_provider_descriptor_t.start.hpp │ │ │ │ ├── verifier_provider_helper_table_t.end.hpp │ │ │ │ ├── verifier_provider_helper_table_t.start.hpp │ │ │ │ ├── verifier_runtime_flags_information_t.end.hpp │ │ │ │ ├── verifier_runtime_flags_information_t.start.hpp │ │ │ │ ├── verifier_thunk_descriptor_t.end.hpp │ │ │ │ ├── verifier_thunk_descriptor_t.start.hpp │ │ │ │ ├── work_on_behalf_ticket_ex_t.end.hpp │ │ │ │ └── work_on_behalf_ticket_ex_t.start.hpp │ │ │ ├── memory_stream_param_t.hpp │ │ │ ├── memory_stream_t.hpp │ │ │ ├── memory_type_t.hpp │ │ │ ├── module_basic_info_t.hpp │ │ │ ├── module_extended_info_t.hpp │ │ │ ├── name_value_array/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── nls_state_t.hpp │ │ │ ├── path_type_t.hpp │ │ │ ├── perthread_curdir_t.hpp │ │ │ ├── physical_memory_info_t.hpp │ │ │ ├── physical_memory_policy_t.hpp │ │ │ ├── process_backtrace_information_t.hpp │ │ │ ├── process_backtraces_control_t.hpp │ │ │ ├── process_backtraces_t.hpp │ │ │ ├── process_heaps_t.hpp │ │ │ ├── process_lock_information_t.hpp │ │ │ ├── process_locks_t.hpp │ │ │ ├── process_module_information_ex_t.hpp │ │ │ ├── process_module_information_t.hpp │ │ │ ├── process_modules_t.hpp │ │ │ ├── process_verifier_options_t.hpp │ │ │ ├── protected_access_t.hpp │ │ │ ├── query_debug_information_info_t.hpp │ │ │ ├── query_debug_virtual_process_t.hpp │ │ │ ├── query_registry_table_t.hpp │ │ │ ├── range_list_t.hpp │ │ │ ├── range_t.hpp │ │ │ ├── rb_tree_t.hpp │ │ │ ├── relative_name_u_t.hpp │ │ │ ├── resource_category_t.hpp │ │ │ ├── resource_policy_flags_t.hpp │ │ │ ├── resource_t.hpp │ │ │ ├── retpoline_binary_info_t.hpp │ │ │ ├── retpoline_relocation_index_t.hpp │ │ │ ├── retpoline_routines_t.hpp │ │ │ ├── run_once_t.hpp │ │ │ ├── rva_list_iterator_t.hpp │ │ │ ├── rva_list_t.hpp │ │ │ ├── rxact_context_t.hpp │ │ │ ├── rxact_log_t.hpp │ │ │ ├── rxact_operation_t.hpp │ │ │ ├── segment_heap_memory_source_t.hpp │ │ │ ├── segment_heap_parameters_t.hpp │ │ │ ├── sparse_array_t.hpp │ │ │ ├── sparse_bitmap_ctx_operation_t.hpp │ │ │ ├── sparse_bitmap_ctx_t.hpp │ │ │ ├── sparse_bitmap_parameter_t.hpp │ │ │ ├── sparse_bitmap_range_t.hpp │ │ │ ├── sparse_bitmap_run_t.hpp │ │ │ ├── splay_links_t.hpp │ │ │ ├── srwlock_t.hpp │ │ │ ├── stack_context_entry_t.hpp │ │ │ ├── stack_context_t.hpp │ │ │ ├── stack_database_lock_t.hpp │ │ │ ├── stack_trace_database_control_t.hpp │ │ │ ├── stack_trace_database_create_t.hpp │ │ │ ├── stack_trace_entry_t.hpp │ │ │ ├── stackdb_context_t.hpp │ │ │ ├── std_list_entry_t.hpp │ │ │ ├── std_list_head_t.hpp │ │ │ ├── system_global_data_id_t.hpp │ │ │ ├── tick_lock_t.hpp │ │ │ ├── time_zone_information_t.hpp │ │ │ ├── trace_block_t.hpp │ │ │ ├── trace_database_t.hpp │ │ │ ├── trace_enumerate_t.hpp │ │ │ ├── trace_segment_t.hpp │ │ │ ├── ums_completion_list_t.hpp │ │ │ ├── ums_context_t.hpp │ │ │ ├── ums_scheduler_reason_t.hpp │ │ │ ├── ums_scheduler_startup_info_t.hpp │ │ │ ├── ums_thread_info_class_t.hpp │ │ │ ├── unicode_string_buffer_t.hpp │ │ │ ├── unload_event_trace32_t.hpp │ │ │ ├── unload_event_trace64_t.hpp │ │ │ ├── unload_event_trace_t.hpp │ │ │ ├── user_process_extended_parameters_t.hpp │ │ │ ├── user_process_information64_t.hpp │ │ │ ├── user_process_information_t.hpp │ │ │ ├── user_process_parameters_t.hpp │ │ │ ├── verifier_all_information_t.hpp │ │ │ ├── verifier_dll_descriptor_t.hpp │ │ │ ├── verifier_fault_injections_information_t.hpp │ │ │ ├── verifier_heap_table_t.hpp │ │ │ ├── verifier_helper_table_t.hpp │ │ │ ├── verifier_information_class_t.hpp │ │ │ ├── verifier_pageheap_information_t.hpp │ │ │ ├── verifier_pageheaps_information_t.hpp │ │ │ ├── verifier_provider_descriptor_t.hpp │ │ │ ├── verifier_provider_helper_table_t.hpp │ │ │ ├── verifier_redirect_type_t.hpp │ │ │ ├── verifier_runtime_flags_information_t.hpp │ │ │ ├── verifier_thunk_descriptor_t.hpp │ │ │ └── work_on_behalf_ticket_ex_t.hpp │ │ ├── rtlp/ │ │ │ ├── api.hpp │ │ │ ├── csparse_bitmap_state_t.hpp │ │ │ ├── curdir_ref_t.hpp │ │ │ ├── heap_features_t.hpp │ │ │ ├── heap_serialized_mapping_t.hpp │ │ │ ├── heap_stack_trace_serialization_header_t.hpp │ │ │ ├── heap_tagging_info_t.hpp │ │ │ ├── hp_address_space_type_t.hpp │ │ │ ├── hp_alloc_tracker_t.hpp │ │ │ ├── hp_allocator_t.hpp │ │ │ ├── hp_heap_globals_t.hpp │ │ │ ├── hp_heap_manager_t.hpp │ │ │ ├── hp_lfh_perf_flags_t.hpp │ │ │ ├── hp_lock_type_t.hpp │ │ │ ├── hp_memory_type_t.hpp │ │ │ ├── hp_metadata_heap_ctx_t.hpp │ │ │ ├── hp_padding_header_t.hpp │ │ │ ├── hp_queue_lock_handle_t.hpp │ │ │ ├── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ ├── api.start.hpp │ │ │ │ ├── curdir_ref_t.end.hpp │ │ │ │ ├── curdir_ref_t.start.hpp │ │ │ │ ├── heap_features_t.end.hpp │ │ │ │ ├── heap_features_t.start.hpp │ │ │ │ ├── heap_serialized_mapping_t.end.hpp │ │ │ │ ├── heap_serialized_mapping_t.start.hpp │ │ │ │ ├── heap_stack_trace_serialization_header_t.end.hpp │ │ │ │ ├── heap_stack_trace_serialization_header_t.start.hpp │ │ │ │ ├── heap_tagging_info_t.end.hpp │ │ │ │ ├── heap_tagging_info_t.start.hpp │ │ │ │ ├── hp_alloc_tracker_t.end.hpp │ │ │ │ ├── hp_alloc_tracker_t.start.hpp │ │ │ │ ├── hp_heap_globals_t.end.hpp │ │ │ │ ├── hp_heap_globals_t.start.hpp │ │ │ │ ├── hp_heap_manager_t.end.hpp │ │ │ │ ├── hp_heap_manager_t.start.hpp │ │ │ │ ├── hp_lfh_perf_flags_t.end.hpp │ │ │ │ ├── hp_lfh_perf_flags_t.start.hpp │ │ │ │ ├── hp_metadata_heap_ctx_t.end.hpp │ │ │ │ ├── hp_metadata_heap_ctx_t.start.hpp │ │ │ │ ├── hp_padding_header_t.end.hpp │ │ │ │ ├── hp_padding_header_t.start.hpp │ │ │ │ ├── hp_queue_lock_handle_t.end.hpp │ │ │ │ ├── hp_queue_lock_handle_t.start.hpp │ │ │ │ ├── process_reflection_context_t.end.hpp │ │ │ │ ├── process_reflection_context_t.start.hpp │ │ │ │ ├── process_reflection_reflection_information_t.end.hpp │ │ │ │ ├── process_reflection_reflection_information_t.start.hpp │ │ │ │ ├── range_list_entry_t.end.hpp │ │ │ │ ├── range_list_entry_t.start.hpp │ │ │ │ ├── tag_info_t.end.hpp │ │ │ │ └── tag_info_t.start.hpp │ │ │ ├── process_reflection_context_t.hpp │ │ │ ├── process_reflection_reflection_information_t.hpp │ │ │ ├── range_list_entry_t.hpp │ │ │ └── tag_info_t.hpp │ │ ├── rtlpx/ │ │ │ ├── api.hpp │ │ │ └── magic/ │ │ │ ├── api.end.hpp │ │ │ └── api.start.hpp │ │ ├── rtlx/ │ │ │ ├── api.hpp │ │ │ └── magic/ │ │ │ ├── api.end.hpp │ │ │ └── api.start.hpp │ │ ├── sdb/ │ │ │ ├── api.hpp │ │ │ ├── cstruct_cobalt_modflag_t.hpp │ │ │ ├── cstruct_cobalt_procflag_t.hpp │ │ │ ├── customdb_entry_state_t.hpp │ │ │ ├── file_info_t.hpp │ │ │ ├── guest_platform_t.hpp │ │ │ ├── helper/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ ├── api.start.hpp │ │ │ │ ├── cstruct_cobalt_modflag_t.end.hpp │ │ │ │ ├── cstruct_cobalt_modflag_t.start.hpp │ │ │ │ ├── cstruct_cobalt_procflag_t.end.hpp │ │ │ │ ├── cstruct_cobalt_procflag_t.start.hpp │ │ │ │ ├── file_info_t.end.hpp │ │ │ │ └── file_info_t.start.hpp │ │ │ ├── missing_matcher_behavior_t.hpp │ │ │ ├── run_platform_t.hpp │ │ │ ├── system_database_t.hpp │ │ │ └── ux_blocktype_override_t.hpp │ │ ├── sdbp/ │ │ │ ├── api.hpp │ │ │ └── magic/ │ │ │ ├── api.end.hpp │ │ │ └── api.start.hpp │ │ ├── se/ │ │ │ ├── access_reply_t.hpp │ │ │ ├── access_request_t.hpp │ │ │ ├── adt_access_reason_t.hpp │ │ │ ├── adt_claims_t.hpp │ │ │ ├── adt_object_type_t.hpp │ │ │ ├── adt_parameter_array_entry_t.hpp │ │ │ ├── adt_parameter_array_ex_t.hpp │ │ │ ├── adt_parameter_array_t.hpp │ │ │ ├── adt_parameter_type_t.hpp │ │ │ ├── api.hpp │ │ │ ├── appid_tagging_claim_node_t.hpp │ │ │ ├── audit_info_t.hpp │ │ │ ├── audit_operation_t.hpp │ │ │ ├── audit_process_creation_info_t.hpp │ │ │ ├── codeintegrity_origin_claim_t.hpp │ │ │ ├── exports_t.hpp │ │ │ ├── image_signature_type_t.hpp │ │ │ ├── image_type_t.hpp │ │ │ ├── image_verification_callback_type_t.hpp │ │ │ ├── impersonation_state_t.hpp │ │ │ ├── learning_mode_data_type_t.hpp │ │ │ ├── learning_mode_user_object_data_t.hpp │ │ │ ├── magic/ │ │ │ │ ├── access_reply_t.end.hpp │ │ │ │ ├── access_reply_t.start.hpp │ │ │ │ ├── access_request_t.end.hpp │ │ │ │ ├── access_request_t.start.hpp │ │ │ │ ├── adt_access_reason_t.end.hpp │ │ │ │ ├── adt_access_reason_t.start.hpp │ │ │ │ ├── adt_claims_t.end.hpp │ │ │ │ ├── adt_claims_t.start.hpp │ │ │ │ ├── adt_object_type_t.end.hpp │ │ │ │ ├── adt_object_type_t.start.hpp │ │ │ │ ├── adt_parameter_array_entry_t.end.hpp │ │ │ │ ├── adt_parameter_array_entry_t.start.hpp │ │ │ │ ├── adt_parameter_array_ex_t.end.hpp │ │ │ │ ├── adt_parameter_array_ex_t.start.hpp │ │ │ │ ├── adt_parameter_array_t.end.hpp │ │ │ │ ├── adt_parameter_array_t.start.hpp │ │ │ │ ├── api.end.hpp │ │ │ │ ├── api.start.hpp │ │ │ │ ├── appid_tagging_claim_node_t.end.hpp │ │ │ │ ├── appid_tagging_claim_node_t.start.hpp │ │ │ │ ├── audit_info_t.end.hpp │ │ │ │ ├── audit_info_t.start.hpp │ │ │ │ ├── audit_process_creation_info_t.end.hpp │ │ │ │ ├── audit_process_creation_info_t.start.hpp │ │ │ │ ├── codeintegrity_origin_claim_t.end.hpp │ │ │ │ ├── codeintegrity_origin_claim_t.start.hpp │ │ │ │ ├── exports_t.end.hpp │ │ │ │ ├── exports_t.start.hpp │ │ │ │ ├── impersonation_state_t.end.hpp │ │ │ │ ├── impersonation_state_t.start.hpp │ │ │ │ ├── learning_mode_user_object_data_t.end.hpp │ │ │ │ ├── learning_mode_user_object_data_t.start.hpp │ │ │ │ ├── package_capability_info_t.end.hpp │ │ │ │ ├── package_capability_info_t.start.hpp │ │ │ │ ├── safe_open_prompt_results_t.end.hpp │ │ │ │ ├── safe_open_prompt_results_t.start.hpp │ │ │ │ ├── security_descriptor_t.end.hpp │ │ │ │ ├── security_descriptor_t.start.hpp │ │ │ │ ├── set_file_cache_information_t.end.hpp │ │ │ │ ├── set_file_cache_information_t.start.hpp │ │ │ │ ├── set_file_cache_origin_claim_information_t.end.hpp │ │ │ │ ├── set_file_cache_origin_claim_information_t.start.hpp │ │ │ │ ├── sid_t.end.hpp │ │ │ │ ├── sid_t.start.hpp │ │ │ │ ├── token_user_t.end.hpp │ │ │ │ └── token_user_t.start.hpp │ │ │ ├── object_type_t.hpp │ │ │ ├── package_capability_info_t.hpp │ │ │ ├── safe_open_prompt_experience_results_t.hpp │ │ │ ├── safe_open_prompt_results_t.hpp │ │ │ ├── security_descriptor_t.hpp │ │ │ ├── set_file_cache_information_t.hpp │ │ │ ├── set_file_cache_origin_claim_information_t.hpp │ │ │ ├── sid_t.hpp │ │ │ ├── token_user_t.hpp │ │ │ ├── validate_mapping_type_t.hpp │ │ │ └── ws_appx_signature_origin_t.hpp │ │ ├── sec/ │ │ │ ├── api.hpp │ │ │ ├── application_protocol_list_t.hpp │ │ │ ├── application_protocol_negotiation_ext_t.hpp │ │ │ ├── application_protocol_negotiation_status_t.hpp │ │ │ ├── application_protocols_t.hpp │ │ │ ├── attributes_t.hpp │ │ │ ├── buffer_desc_t.hpp │ │ │ ├── buffer_t.hpp │ │ │ ├── capabilities_t.hpp │ │ │ ├── channel_bindings_t.hpp │ │ │ ├── client_context_t.hpp │ │ │ ├── db_object_type_t.hpp │ │ │ ├── delegation_type_t.hpp │ │ │ ├── descriptor_relative_t.hpp │ │ │ ├── descriptor_t.hpp │ │ │ ├── dtls_mtu_t.hpp │ │ │ ├── flags_t.hpp │ │ │ ├── function_table_a_t.hpp │ │ │ ├── function_table_w_t.hpp │ │ │ ├── handle_t.hpp │ │ │ ├── impersonation_level_t.hpp │ │ │ ├── info_t.hpp │ │ │ ├── init_t.hpp │ │ │ ├── logon_type_t.hpp │ │ │ ├── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ ├── api.start.hpp │ │ │ │ ├── application_protocol_list_t.end.hpp │ │ │ │ ├── application_protocol_list_t.start.hpp │ │ │ │ ├── application_protocols_t.end.hpp │ │ │ │ ├── application_protocols_t.start.hpp │ │ │ │ ├── attributes_t.end.hpp │ │ │ │ ├── attributes_t.start.hpp │ │ │ │ ├── buffer_desc_t.end.hpp │ │ │ │ ├── buffer_desc_t.start.hpp │ │ │ │ ├── buffer_t.end.hpp │ │ │ │ ├── buffer_t.start.hpp │ │ │ │ ├── capabilities_t.end.hpp │ │ │ │ ├── capabilities_t.start.hpp │ │ │ │ ├── channel_bindings_t.end.hpp │ │ │ │ ├── channel_bindings_t.start.hpp │ │ │ │ ├── client_context_t.end.hpp │ │ │ │ ├── client_context_t.start.hpp │ │ │ │ ├── descriptor_relative_t.end.hpp │ │ │ │ ├── descriptor_relative_t.start.hpp │ │ │ │ ├── descriptor_t.end.hpp │ │ │ │ ├── descriptor_t.start.hpp │ │ │ │ ├── dtls_mtu_t.end.hpp │ │ │ │ ├── dtls_mtu_t.start.hpp │ │ │ │ ├── flags_t.end.hpp │ │ │ │ ├── flags_t.start.hpp │ │ │ │ ├── function_table_a_t.end.hpp │ │ │ │ ├── function_table_a_t.start.hpp │ │ │ │ ├── function_table_w_t.end.hpp │ │ │ │ ├── function_table_w_t.start.hpp │ │ │ │ ├── handle_t.end.hpp │ │ │ │ ├── handle_t.start.hpp │ │ │ │ ├── info_t.end.hpp │ │ │ │ ├── info_t.start.hpp │ │ │ │ ├── init_t.end.hpp │ │ │ │ ├── init_t.start.hpp │ │ │ │ ├── negotiation_info_t.end.hpp │ │ │ │ ├── negotiation_info_t.start.hpp │ │ │ │ ├── object_ai_params_t.end.hpp │ │ │ │ ├── object_ai_params_t.start.hpp │ │ │ │ ├── package_options_t.end.hpp │ │ │ │ ├── package_options_t.start.hpp │ │ │ │ ├── pkg_context_access_token_t.end.hpp │ │ │ │ ├── pkg_context_access_token_t.start.hpp │ │ │ │ ├── pkg_context_application_protocol_t.end.hpp │ │ │ │ ├── pkg_context_application_protocol_t.start.hpp │ │ │ │ ├── pkg_context_authority_a_t.end.hpp │ │ │ │ ├── pkg_context_authority_a_t.start.hpp │ │ │ │ ├── pkg_context_authority_w_t.end.hpp │ │ │ │ ├── pkg_context_authority_w_t.start.hpp │ │ │ │ ├── pkg_context_authz_id_t.end.hpp │ │ │ │ ├── pkg_context_authz_id_t.start.hpp │ │ │ │ ├── pkg_context_bindings_t.end.hpp │ │ │ │ ├── pkg_context_bindings_t.start.hpp │ │ │ │ ├── pkg_context_client_specified_target_t.end.hpp │ │ │ │ ├── pkg_context_client_specified_target_t.start.hpp │ │ │ │ ├── pkg_context_cred_info_t.end.hpp │ │ │ │ ├── pkg_context_cred_info_t.start.hpp │ │ │ │ ├── pkg_context_credential_name_a_t.end.hpp │ │ │ │ ├── pkg_context_credential_name_a_t.start.hpp │ │ │ │ ├── pkg_context_credential_name_w_t.end.hpp │ │ │ │ ├── pkg_context_credential_name_w_t.start.hpp │ │ │ │ ├── pkg_context_dce_info_t.end.hpp │ │ │ │ ├── pkg_context_dce_info_t.start.hpp │ │ │ │ ├── pkg_context_flags_t.end.hpp │ │ │ │ ├── pkg_context_flags_t.start.hpp │ │ │ │ ├── pkg_context_key_info_a_t.end.hpp │ │ │ │ ├── pkg_context_key_info_a_t.start.hpp │ │ │ │ ├── pkg_context_key_info_w_t.end.hpp │ │ │ │ ├── pkg_context_key_info_w_t.start.hpp │ │ │ │ ├── pkg_context_last_client_token_status_t.end.hpp │ │ │ │ ├── pkg_context_last_client_token_status_t.start.hpp │ │ │ │ ├── pkg_context_lifespan_t.end.hpp │ │ │ │ ├── pkg_context_lifespan_t.start.hpp │ │ │ │ ├── pkg_context_logoff_time_t.end.hpp │ │ │ │ ├── pkg_context_logoff_time_t.start.hpp │ │ │ │ ├── pkg_context_names_a_t.end.hpp │ │ │ │ ├── pkg_context_names_a_t.start.hpp │ │ │ │ ├── pkg_context_names_w_t.end.hpp │ │ │ │ ├── pkg_context_names_w_t.start.hpp │ │ │ │ ├── pkg_context_native_names_a_t.end.hpp │ │ │ │ ├── pkg_context_native_names_a_t.start.hpp │ │ │ │ ├── pkg_context_native_names_w_t.end.hpp │ │ │ │ ├── pkg_context_native_names_w_t.start.hpp │ │ │ │ ├── pkg_context_nego_keys_t.end.hpp │ │ │ │ ├── pkg_context_nego_keys_t.start.hpp │ │ │ │ ├── pkg_context_nego_package_info_t.end.hpp │ │ │ │ ├── pkg_context_nego_package_info_t.start.hpp │ │ │ │ ├── pkg_context_nego_status_t.end.hpp │ │ │ │ ├── pkg_context_nego_status_t.start.hpp │ │ │ │ ├── pkg_context_negotiated_tls_extensions_t.end.hpp │ │ │ │ ├── pkg_context_negotiated_tls_extensions_t.start.hpp │ │ │ │ ├── pkg_context_negotiation_info_a_t.end.hpp │ │ │ │ ├── pkg_context_negotiation_info_a_t.start.hpp │ │ │ │ ├── pkg_context_negotiation_info_w_t.end.hpp │ │ │ │ ├── pkg_context_negotiation_info_w_t.start.hpp │ │ │ │ ├── pkg_context_package_info_a_t.end.hpp │ │ │ │ ├── pkg_context_package_info_a_t.start.hpp │ │ │ │ ├── pkg_context_package_info_w_t.end.hpp │ │ │ │ ├── pkg_context_package_info_w_t.start.hpp │ │ │ │ ├── pkg_context_password_expiry_t.end.hpp │ │ │ │ ├── pkg_context_password_expiry_t.start.hpp │ │ │ │ ├── pkg_context_proto_info_a_t.end.hpp │ │ │ │ ├── pkg_context_proto_info_a_t.start.hpp │ │ │ │ ├── pkg_context_proto_info_w_t.end.hpp │ │ │ │ ├── pkg_context_proto_info_w_t.start.hpp │ │ │ │ ├── pkg_context_session_key_t.end.hpp │ │ │ │ ├── pkg_context_session_key_t.start.hpp │ │ │ │ ├── pkg_context_sizes_t.end.hpp │ │ │ │ ├── pkg_context_sizes_t.start.hpp │ │ │ │ ├── pkg_context_stream_sizes_t.end.hpp │ │ │ │ ├── pkg_context_stream_sizes_t.start.hpp │ │ │ │ ├── pkg_context_subject_attributes_t.end.hpp │ │ │ │ ├── pkg_context_subject_attributes_t.start.hpp │ │ │ │ ├── pkg_context_target_information_t.end.hpp │ │ │ │ ├── pkg_context_target_information_t.start.hpp │ │ │ │ ├── pkg_context_target_t.end.hpp │ │ │ │ ├── pkg_context_target_t.start.hpp │ │ │ │ ├── pkg_context_user_flags_t.end.hpp │ │ │ │ ├── pkg_context_user_flags_t.start.hpp │ │ │ │ ├── pkg_credentials_cert_t.end.hpp │ │ │ │ ├── pkg_credentials_cert_t.start.hpp │ │ │ │ ├── pkg_credentials_kdc_proxy_settings_w_t.end.hpp │ │ │ │ ├── pkg_credentials_kdc_proxy_settings_w_t.start.hpp │ │ │ │ ├── pkg_credentials_names_a_t.end.hpp │ │ │ │ ├── pkg_credentials_names_a_t.start.hpp │ │ │ │ ├── pkg_credentials_names_w_t.end.hpp │ │ │ │ ├── pkg_credentials_names_w_t.start.hpp │ │ │ │ ├── pkg_credentials_ssi_provider_a_t.end.hpp │ │ │ │ ├── pkg_credentials_ssi_provider_a_t.start.hpp │ │ │ │ ├── pkg_credentials_ssi_provider_w_t.end.hpp │ │ │ │ ├── pkg_credentials_ssi_provider_w_t.start.hpp │ │ │ │ ├── pkg_info_a_t.end.hpp │ │ │ │ ├── pkg_info_a_t.start.hpp │ │ │ │ ├── pkg_info_w_t.end.hpp │ │ │ │ ├── pkg_info_w_t.start.hpp │ │ │ │ ├── presharedkey_identity_t.end.hpp │ │ │ │ ├── presharedkey_identity_t.start.hpp │ │ │ │ ├── presharedkey_t.end.hpp │ │ │ │ ├── presharedkey_t.start.hpp │ │ │ │ ├── protocol_in_t.end.hpp │ │ │ │ ├── protocol_in_t.start.hpp │ │ │ │ ├── protocol_out_t.end.hpp │ │ │ │ ├── protocol_out_t.start.hpp │ │ │ │ ├── quality_of_service_t.end.hpp │ │ │ │ ├── quality_of_service_t.start.hpp │ │ │ │ ├── seed_and_length_t.end.hpp │ │ │ │ ├── seed_and_length_t.start.hpp │ │ │ │ ├── srtp_master_key_identifier_t.end.hpp │ │ │ │ ├── srtp_master_key_identifier_t.start.hpp │ │ │ │ ├── srtp_protection_profiles_t.end.hpp │ │ │ │ ├── srtp_protection_profiles_t.start.hpp │ │ │ │ ├── subject_context_t.end.hpp │ │ │ │ ├── subject_context_t.start.hpp │ │ │ │ ├── token_binding_t.end.hpp │ │ │ │ ├── token_binding_t.start.hpp │ │ │ │ ├── traffic_secrets_t.end.hpp │ │ │ │ ├── traffic_secrets_t.start.hpp │ │ │ │ ├── user_data_t.end.hpp │ │ │ │ ├── user_data_t.start.hpp │ │ │ │ ├── winnt_auth_identity_a_t.end.hpp │ │ │ │ ├── winnt_auth_identity_a_t.start.hpp │ │ │ │ ├── winnt_auth_identity_ex2_t.end.hpp │ │ │ │ ├── winnt_auth_identity_ex2_t.start.hpp │ │ │ │ ├── winnt_auth_identity_exa_t.end.hpp │ │ │ │ ├── winnt_auth_identity_exa_t.start.hpp │ │ │ │ ├── winnt_auth_identity_exw_t.end.hpp │ │ │ │ ├── winnt_auth_identity_exw_t.start.hpp │ │ │ │ ├── winnt_auth_identity_info_t.end.hpp │ │ │ │ ├── winnt_auth_identity_info_t.start.hpp │ │ │ │ ├── winnt_auth_identity_w_t.end.hpp │ │ │ │ └── winnt_auth_identity_w_t.start.hpp │ │ │ ├── negotiation_info_t.hpp │ │ │ ├── object_ai_params_t.hpp │ │ │ ├── operation_code_t.hpp │ │ │ ├── options_bitness_t.hpp │ │ │ ├── options_disposition_t.hpp │ │ │ ├── package_options_t.hpp │ │ │ ├── pkg_context_access_token_t.hpp │ │ │ ├── pkg_context_application_protocol_t.hpp │ │ │ ├── pkg_context_authority_a_t.hpp │ │ │ ├── pkg_context_authority_w_t.hpp │ │ │ ├── pkg_context_authz_id_t.hpp │ │ │ ├── pkg_context_bindings_t.hpp │ │ │ ├── pkg_context_client_specified_target_t.hpp │ │ │ ├── pkg_context_cred_info_t.hpp │ │ │ ├── pkg_context_credential_name_a_t.hpp │ │ │ ├── pkg_context_credential_name_w_t.hpp │ │ │ ├── pkg_context_dce_info_t.hpp │ │ │ ├── pkg_context_flags_t.hpp │ │ │ ├── pkg_context_key_info_a_t.hpp │ │ │ ├── pkg_context_key_info_w_t.hpp │ │ │ ├── pkg_context_last_client_token_status_t.hpp │ │ │ ├── pkg_context_lifespan_t.hpp │ │ │ ├── pkg_context_logoff_time_t.hpp │ │ │ ├── pkg_context_names_a_t.hpp │ │ │ ├── pkg_context_names_w_t.hpp │ │ │ ├── pkg_context_native_names_a_t.hpp │ │ │ ├── pkg_context_native_names_w_t.hpp │ │ │ ├── pkg_context_nego_keys_t.hpp │ │ │ ├── pkg_context_nego_package_info_t.hpp │ │ │ ├── pkg_context_nego_status_t.hpp │ │ │ ├── pkg_context_negotiated_tls_extensions_t.hpp │ │ │ ├── pkg_context_negotiation_info_a_t.hpp │ │ │ ├── pkg_context_negotiation_info_w_t.hpp │ │ │ ├── pkg_context_package_info_a_t.hpp │ │ │ ├── pkg_context_package_info_w_t.hpp │ │ │ ├── pkg_context_password_expiry_t.hpp │ │ │ ├── pkg_context_proto_info_a_t.hpp │ │ │ ├── pkg_context_proto_info_w_t.hpp │ │ │ ├── pkg_context_session_key_t.hpp │ │ │ ├── pkg_context_sizes_t.hpp │ │ │ ├── pkg_context_stream_sizes_t.hpp │ │ │ ├── pkg_context_subject_attributes_t.hpp │ │ │ ├── pkg_context_target_information_t.hpp │ │ │ ├── pkg_context_target_t.hpp │ │ │ ├── pkg_context_user_flags_t.hpp │ │ │ ├── pkg_credentials_cert_t.hpp │ │ │ ├── pkg_credentials_kdc_proxy_settings_w_t.hpp │ │ │ ├── pkg_credentials_names_a_t.hpp │ │ │ ├── pkg_credentials_names_w_t.hpp │ │ │ ├── pkg_credentials_ssi_provider_a_t.hpp │ │ │ ├── pkg_credentials_ssi_provider_w_t.hpp │ │ │ ├── pkg_info_a_t.hpp │ │ │ ├── pkg_info_w_t.hpp │ │ │ ├── presharedkey_identity_t.hpp │ │ │ ├── presharedkey_t.hpp │ │ │ ├── protocol_in_t.hpp │ │ │ ├── protocol_out_t.hpp │ │ │ ├── quality_of_service_t.hpp │ │ │ ├── seed_and_length_t.hpp │ │ │ ├── srtp_master_key_identifier_t.hpp │ │ │ ├── srtp_protection_profiles_t.hpp │ │ │ ├── subject_context_t.hpp │ │ │ ├── token_binding_t.hpp │ │ │ ├── traffic_secret_type_t.hpp │ │ │ ├── traffic_secrets_t.hpp │ │ │ ├── user_data_t.hpp │ │ │ ├── winnt_auth_identity_a_t.hpp │ │ │ ├── winnt_auth_identity_ex2_t.hpp │ │ │ ├── winnt_auth_identity_exa_t.hpp │ │ │ ├── winnt_auth_identity_exw_t.hpp │ │ │ ├── winnt_auth_identity_info_t.hpp │ │ │ └── winnt_auth_identity_w_t.hpp │ │ ├── sep/ │ │ │ ├── api.hpp │ │ │ ├── audit_policy_t.hpp │ │ │ ├── cached_handles_entry_descriptor_t.hpp │ │ │ ├── cached_handles_entry_t.hpp │ │ │ ├── cached_handles_entry_type_t.hpp │ │ │ ├── cached_handles_table_t.hpp │ │ │ ├── logon_session_references_t.hpp │ │ │ ├── lowbox_handles_entry_t.hpp │ │ │ ├── lowbox_handles_table_t.hpp │ │ │ ├── lowbox_number_entry_t.hpp │ │ │ ├── lowbox_number_mapping_t.hpp │ │ │ ├── luid_to_index_map_entry_t.hpp │ │ │ ├── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ ├── api.start.hpp │ │ │ │ ├── audit_policy_t.end.hpp │ │ │ │ ├── audit_policy_t.start.hpp │ │ │ │ ├── cached_handles_entry_descriptor_t.end.hpp │ │ │ │ ├── cached_handles_entry_descriptor_t.start.hpp │ │ │ │ ├── cached_handles_entry_t.end.hpp │ │ │ │ ├── cached_handles_entry_t.start.hpp │ │ │ │ ├── cached_handles_table_t.end.hpp │ │ │ │ ├── cached_handles_table_t.start.hpp │ │ │ │ ├── logon_session_references_t.end.hpp │ │ │ │ ├── logon_session_references_t.start.hpp │ │ │ │ ├── lowbox_handles_entry_t.end.hpp │ │ │ │ ├── lowbox_handles_entry_t.start.hpp │ │ │ │ ├── lowbox_handles_table_t.end.hpp │ │ │ │ ├── lowbox_handles_table_t.start.hpp │ │ │ │ ├── lowbox_number_entry_t.end.hpp │ │ │ │ ├── lowbox_number_entry_t.start.hpp │ │ │ │ ├── lowbox_number_mapping_t.end.hpp │ │ │ │ ├── lowbox_number_mapping_t.start.hpp │ │ │ │ ├── luid_to_index_map_entry_t.end.hpp │ │ │ │ ├── luid_to_index_map_entry_t.start.hpp │ │ │ │ ├── rm_lsa_connection_state_t.end.hpp │ │ │ │ ├── rm_lsa_connection_state_t.start.hpp │ │ │ │ ├── sid_values_block_t.end.hpp │ │ │ │ ├── sid_values_block_t.start.hpp │ │ │ │ ├── silostate_t.end.hpp │ │ │ │ ├── silostate_t.start.hpp │ │ │ │ ├── token_diag_track_entry_t.end.hpp │ │ │ │ ├── token_diag_track_entry_t.start.hpp │ │ │ │ ├── token_privileges_t.end.hpp │ │ │ │ └── token_privileges_t.start.hpp │ │ │ ├── rm_lsa_connection_state_t.hpp │ │ │ ├── sid_values_block_t.hpp │ │ │ ├── silostate_t.hpp │ │ │ ├── token_diag_track_entry_t.hpp │ │ │ └── token_privileges_t.hpp │ │ ├── si/ │ │ │ ├── api.hpp │ │ │ ├── copyfile_t.hpp │ │ │ └── magic/ │ │ │ ├── api.end.hpp │ │ │ ├── api.start.hpp │ │ │ ├── copyfile_t.end.hpp │ │ │ └── copyfile_t.start.hpp │ │ ├── sk/ │ │ │ ├── api.hpp │ │ │ ├── crash_minidump_t.hpp │ │ │ ├── crash_module_t.hpp │ │ │ ├── crash_stack_frame_t.hpp │ │ │ └── magic/ │ │ │ ├── api.end.hpp │ │ │ ├── api.start.hpp │ │ │ ├── crash_minidump_t.end.hpp │ │ │ ├── crash_minidump_t.start.hpp │ │ │ ├── crash_module_t.end.hpp │ │ │ ├── crash_module_t.start.hpp │ │ │ ├── crash_stack_frame_t.end.hpp │ │ │ └── crash_stack_frame_t.start.hpp │ │ ├── sm/ │ │ │ ├── api.hpp │ │ │ ├── context_t.hpp │ │ │ └── magic/ │ │ │ ├── api.end.hpp │ │ │ ├── api.start.hpp │ │ │ ├── context_t.end.hpp │ │ │ └── context_t.start.hpp │ │ ├── smc/ │ │ │ ├── api.hpp │ │ │ └── magic/ │ │ │ ├── api.end.hpp │ │ │ └── api.start.hpp │ │ ├── smp/ │ │ │ ├── api.hpp │ │ │ └── magic/ │ │ │ ├── api.end.hpp │ │ │ └── api.start.hpp │ │ ├── smss/ │ │ │ ├── api.hpp │ │ │ └── magic/ │ │ │ ├── api.end.hpp │ │ │ └── api.start.hpp │ │ ├── sp/ │ │ │ ├── api.hpp │ │ │ └── magic/ │ │ │ ├── api.end.hpp │ │ │ └── api.start.hpp │ │ ├── spi/ │ │ │ ├── api.hpp │ │ │ └── magic/ │ │ │ ├── api.end.hpp │ │ │ └── api.start.hpp │ │ ├── ssh/ │ │ │ ├── api.hpp │ │ │ └── magic/ │ │ │ ├── api.end.hpp │ │ │ └── api.start.hpp │ │ ├── sshp/ │ │ │ ├── api.hpp │ │ │ └── magic/ │ │ │ ├── api.end.hpp │ │ │ └── api.start.hpp │ │ ├── stor/ │ │ │ ├── ahci/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── nvme/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ └── port/ │ │ │ ├── access_range_t.hpp │ │ │ ├── adapter_control_list_t.hpp │ │ │ ├── api.hpp │ │ │ ├── ata_passthrough12_t.hpp │ │ │ ├── ata_passthrough16_t.hpp │ │ │ ├── blank_media_t.hpp │ │ │ ├── bus_interface_standard_t.hpp │ │ │ ├── cdb10_t.hpp │ │ │ ├── cdb12_t.hpp │ │ │ ├── cdb16_t.hpp │ │ │ ├── cdb6format_t.hpp │ │ │ ├── cdb6generic_t.hpp │ │ │ ├── cdb6inquiry3_t.hpp │ │ │ ├── cdb6inquiry_t.hpp │ │ │ ├── cdb6readwrite_t.hpp │ │ │ ├── cdb6readwritetape_t.hpp │ │ │ ├── cdb6verify_t.hpp │ │ │ ├── cdb_t.hpp │ │ │ ├── close_track_t.hpp │ │ │ ├── close_zone_t.hpp │ │ │ ├── crashdump_functions_interface_t.hpp │ │ │ ├── crypto_key_state_t.hpp │ │ │ ├── data_type_t.hpp │ │ │ ├── descriptor_sense_data_t.hpp │ │ │ ├── device_smart_data_t.hpp │ │ │ ├── device_state_t.hpp │ │ │ ├── dpc_buffer_t.hpp │ │ │ ├── dsm_pci_ssd_led_state_t.hpp │ │ │ ├── dump_adapter_info_t.hpp │ │ │ ├── dump_control_code_t.hpp │ │ │ ├── dump_disk_info_t.hpp │ │ │ ├── dump_driver_info_t.hpp │ │ │ ├── dump_entry_t.hpp │ │ │ ├── dump_io_mode_t.hpp │ │ │ ├── eight_byte_t.hpp │ │ │ ├── erase_t.hpp │ │ │ ├── exchange_medium_t.hpp │ │ │ ├── extended_device_queue_t.hpp │ │ │ ├── extended_request_block_t.hpp │ │ │ ├── finish_zone_t.hpp │ │ │ ├── four_byte_t.hpp │ │ │ ├── get_configuration_t.hpp │ │ │ ├── get_event_status_notification_t.hpp │ │ │ ├── get_lba_status_t.hpp │ │ │ ├── get_performance_t.hpp │ │ │ ├── get_physical_element_status_t.hpp │ │ │ ├── getsgstatus_t.hpp │ │ │ ├── hw_initialization_data_t.hpp │ │ │ ├── identify_mfnd_capability_information_t.hpp │ │ │ ├── identify_mfnd_information_type_t.hpp │ │ │ ├── init_element_status_t.hpp │ │ │ ├── initialize_element_range_t.hpp │ │ │ ├── inquirydata_t.hpp │ │ │ ├── interrupt_synchronization_mode_t.hpp │ │ │ ├── lba_t.hpp │ │ │ ├── load_unload_t.hpp │ │ │ ├── locate_t.hpp │ │ │ ├── lock_context_t.hpp │ │ │ ├── logselect_t.hpp │ │ │ ├── logsense_t.hpp │ │ │ ├── lun_list_t.hpp │ │ │ ├── magic/ │ │ │ │ ├── access_range_t.end.hpp │ │ │ │ ├── access_range_t.start.hpp │ │ │ │ ├── adapter_control_list_t.end.hpp │ │ │ │ ├── adapter_control_list_t.start.hpp │ │ │ │ ├── api.end.hpp │ │ │ │ ├── api.start.hpp │ │ │ │ ├── ata_passthrough12_t.end.hpp │ │ │ │ ├── ata_passthrough12_t.start.hpp │ │ │ │ ├── ata_passthrough16_t.end.hpp │ │ │ │ ├── ata_passthrough16_t.start.hpp │ │ │ │ ├── blank_media_t.end.hpp │ │ │ │ ├── blank_media_t.start.hpp │ │ │ │ ├── bus_interface_standard_t.end.hpp │ │ │ │ ├── bus_interface_standard_t.start.hpp │ │ │ │ ├── cdb10_t.end.hpp │ │ │ │ ├── cdb10_t.start.hpp │ │ │ │ ├── cdb12_t.end.hpp │ │ │ │ ├── cdb12_t.start.hpp │ │ │ │ ├── cdb16_t.end.hpp │ │ │ │ ├── cdb16_t.start.hpp │ │ │ │ ├── cdb6format_t.end.hpp │ │ │ │ ├── cdb6format_t.start.hpp │ │ │ │ ├── cdb6generic_t.end.hpp │ │ │ │ ├── cdb6generic_t.start.hpp │ │ │ │ ├── cdb6inquiry3_t.end.hpp │ │ │ │ ├── cdb6inquiry3_t.start.hpp │ │ │ │ ├── cdb6inquiry_t.end.hpp │ │ │ │ ├── cdb6inquiry_t.start.hpp │ │ │ │ ├── cdb6readwrite_t.end.hpp │ │ │ │ ├── cdb6readwrite_t.start.hpp │ │ │ │ ├── cdb6readwritetape_t.end.hpp │ │ │ │ ├── cdb6readwritetape_t.start.hpp │ │ │ │ ├── cdb6verify_t.end.hpp │ │ │ │ ├── cdb6verify_t.start.hpp │ │ │ │ ├── cdb_t.end.hpp │ │ │ │ ├── cdb_t.start.hpp │ │ │ │ ├── close_track_t.end.hpp │ │ │ │ ├── close_track_t.start.hpp │ │ │ │ ├── close_zone_t.end.hpp │ │ │ │ ├── close_zone_t.start.hpp │ │ │ │ ├── crashdump_functions_interface_t.end.hpp │ │ │ │ ├── crashdump_functions_interface_t.start.hpp │ │ │ │ ├── descriptor_sense_data_t.end.hpp │ │ │ │ ├── descriptor_sense_data_t.start.hpp │ │ │ │ ├── device_smart_data_t.end.hpp │ │ │ │ ├── device_smart_data_t.start.hpp │ │ │ │ ├── dpc_buffer_t.end.hpp │ │ │ │ ├── dpc_buffer_t.start.hpp │ │ │ │ ├── dsm_pci_ssd_led_state_t.end.hpp │ │ │ │ ├── dsm_pci_ssd_led_state_t.start.hpp │ │ │ │ ├── dump_adapter_info_t.end.hpp │ │ │ │ ├── dump_adapter_info_t.start.hpp │ │ │ │ ├── dump_disk_info_t.end.hpp │ │ │ │ ├── dump_disk_info_t.start.hpp │ │ │ │ ├── dump_driver_info_t.end.hpp │ │ │ │ ├── dump_driver_info_t.start.hpp │ │ │ │ ├── dump_entry_t.end.hpp │ │ │ │ ├── dump_entry_t.start.hpp │ │ │ │ ├── eight_byte_t.end.hpp │ │ │ │ ├── eight_byte_t.start.hpp │ │ │ │ ├── erase_t.end.hpp │ │ │ │ ├── erase_t.start.hpp │ │ │ │ ├── exchange_medium_t.end.hpp │ │ │ │ ├── exchange_medium_t.start.hpp │ │ │ │ ├── extended_device_queue_t.end.hpp │ │ │ │ ├── extended_device_queue_t.start.hpp │ │ │ │ ├── extended_request_block_t.end.hpp │ │ │ │ ├── extended_request_block_t.start.hpp │ │ │ │ ├── finish_zone_t.end.hpp │ │ │ │ ├── finish_zone_t.start.hpp │ │ │ │ ├── four_byte_t.end.hpp │ │ │ │ ├── four_byte_t.start.hpp │ │ │ │ ├── get_configuration_t.end.hpp │ │ │ │ ├── get_configuration_t.start.hpp │ │ │ │ ├── get_event_status_notification_t.end.hpp │ │ │ │ ├── get_event_status_notification_t.start.hpp │ │ │ │ ├── get_lba_status_t.end.hpp │ │ │ │ ├── get_lba_status_t.start.hpp │ │ │ │ ├── get_performance_t.end.hpp │ │ │ │ ├── get_performance_t.start.hpp │ │ │ │ ├── get_physical_element_status_t.end.hpp │ │ │ │ ├── get_physical_element_status_t.start.hpp │ │ │ │ ├── hw_initialization_data_t.end.hpp │ │ │ │ ├── hw_initialization_data_t.start.hpp │ │ │ │ ├── identify_mfnd_capability_information_t.end.hpp │ │ │ │ ├── identify_mfnd_capability_information_t.start.hpp │ │ │ │ ├── init_element_status_t.end.hpp │ │ │ │ ├── init_element_status_t.start.hpp │ │ │ │ ├── initialize_element_range_t.end.hpp │ │ │ │ ├── initialize_element_range_t.start.hpp │ │ │ │ ├── inquirydata_t.end.hpp │ │ │ │ ├── inquirydata_t.start.hpp │ │ │ │ ├── lba_t.end.hpp │ │ │ │ ├── lba_t.start.hpp │ │ │ │ ├── load_unload_t.end.hpp │ │ │ │ ├── load_unload_t.start.hpp │ │ │ │ ├── locate_t.end.hpp │ │ │ │ ├── locate_t.start.hpp │ │ │ │ ├── lock_context_t.end.hpp │ │ │ │ ├── lock_context_t.start.hpp │ │ │ │ ├── logselect_t.end.hpp │ │ │ │ ├── logselect_t.start.hpp │ │ │ │ ├── logsense_t.end.hpp │ │ │ │ ├── logsense_t.start.hpp │ │ │ │ ├── lun_list_t.end.hpp │ │ │ │ ├── lun_list_t.start.hpp │ │ │ │ ├── mapped_address_t.end.hpp │ │ │ │ ├── mapped_address_t.start.hpp │ │ │ │ ├── mech_status_t.end.hpp │ │ │ │ ├── mech_status_t.start.hpp │ │ │ │ ├── media_removal_t.end.hpp │ │ │ │ ├── media_removal_t.start.hpp │ │ │ │ ├── memory_region_t.end.hpp │ │ │ │ ├── memory_region_t.start.hpp │ │ │ │ ├── message_interrupt_information_t.end.hpp │ │ │ │ ├── message_interrupt_information_t.start.hpp │ │ │ │ ├── mfnd_child_pf_admin_command_permission_entry_t.end.hpp │ │ │ │ ├── mfnd_child_pf_admin_command_permission_entry_t.start.hpp │ │ │ │ ├── mfnd_child_pf_admin_command_permission_status_t.end.hpp │ │ │ │ ├── mfnd_child_pf_admin_command_permission_status_t.start.hpp │ │ │ │ ├── mfnd_child_pf_data_t.end.hpp │ │ │ │ ├── mfnd_child_pf_data_t.start.hpp │ │ │ │ ├── mfnd_child_pf_global_property_t.end.hpp │ │ │ │ ├── mfnd_child_pf_global_property_t.start.hpp │ │ │ │ ├── mfnd_child_pf_list_t.end.hpp │ │ │ │ ├── mfnd_child_pf_list_t.start.hpp │ │ │ │ ├── mfnd_child_pf_settings_t.end.hpp │ │ │ │ ├── mfnd_child_pf_settings_t.start.hpp │ │ │ │ ├── mfnd_physical_function_global_properties_t.end.hpp │ │ │ │ ├── mfnd_physical_function_global_properties_t.start.hpp │ │ │ │ ├── mfnd_physical_function_settings_t.end.hpp │ │ │ │ ├── mfnd_physical_function_settings_t.start.hpp │ │ │ │ ├── mfnd_qos_t.end.hpp │ │ │ │ ├── mfnd_qos_t.start.hpp │ │ │ │ ├── mfnd_set_child_pf_admin_command_permission_additional_t.end.hpp │ │ │ │ ├── mfnd_set_child_pf_admin_command_permission_additional_t.start.hpp │ │ │ │ ├── mfnd_set_child_pf_admin_command_permission_entry_t.end.hpp │ │ │ │ ├── mfnd_set_child_pf_admin_command_permission_entry_t.start.hpp │ │ │ │ ├── mfnd_set_child_pf_global_property_additional_t.end.hpp │ │ │ │ ├── mfnd_set_child_pf_global_property_additional_t.start.hpp │ │ │ │ ├── mfnd_set_child_pf_qos_additional_t.end.hpp │ │ │ │ ├── mfnd_set_child_pf_qos_additional_t.start.hpp │ │ │ │ ├── mfnd_set_child_pf_settings_additional_t.end.hpp │ │ │ │ ├── mfnd_set_child_pf_settings_additional_t.start.hpp │ │ │ │ ├── miniport_data_t.end.hpp │ │ │ │ ├── miniport_data_t.start.hpp │ │ │ │ ├── mode_select10_t.end.hpp │ │ │ │ ├── mode_select10_t.start.hpp │ │ │ │ ├── mode_select_t.end.hpp │ │ │ │ ├── mode_select_t.start.hpp │ │ │ │ ├── mode_sense10_t.end.hpp │ │ │ │ ├── mode_sense10_t.start.hpp │ │ │ │ ├── mode_sense_t.end.hpp │ │ │ │ ├── mode_sense_t.start.hpp │ │ │ │ ├── move_medium_t.end.hpp │ │ │ │ ├── move_medium_t.start.hpp │ │ │ │ ├── msf_t.end.hpp │ │ │ │ ├── msf_t.start.hpp │ │ │ │ ├── nec_read_cdda_t.end.hpp │ │ │ │ ├── nec_read_cdda_t.start.hpp │ │ │ │ ├── ntstor_unicode_string_t.end.hpp │ │ │ │ ├── ntstor_unicode_string_t.start.hpp │ │ │ │ ├── nvm_reservation_capabilities_t.end.hpp │ │ │ │ ├── nvm_reservation_capabilities_t.start.hpp │ │ │ │ ├── nvme_cdw10_abort_t.end.hpp │ │ │ │ ├── nvme_cdw10_abort_t.start.hpp │ │ │ │ ├── nvme_cdw10_create_io_queue_t.end.hpp │ │ │ │ ├── nvme_cdw10_create_io_queue_t.start.hpp │ │ │ │ ├── nvme_cdw10_dataset_management_t.end.hpp │ │ │ │ ├── nvme_cdw10_dataset_management_t.start.hpp │ │ │ │ ├── nvme_cdw10_directive_receive_t.end.hpp │ │ │ │ ├── nvme_cdw10_directive_receive_t.start.hpp │ │ │ │ ├── nvme_cdw10_directive_send_t.end.hpp │ │ │ │ ├── nvme_cdw10_directive_send_t.start.hpp │ │ │ │ ├── nvme_cdw10_firmware_activate_t.end.hpp │ │ │ │ ├── nvme_cdw10_firmware_activate_t.start.hpp │ │ │ │ ├── nvme_cdw10_firmware_download_t.end.hpp │ │ │ │ ├── nvme_cdw10_firmware_download_t.start.hpp │ │ │ │ ├── nvme_cdw10_format_nvm_t.end.hpp │ │ │ │ ├── nvme_cdw10_format_nvm_t.start.hpp │ │ │ │ ├── nvme_cdw10_get_features_t.end.hpp │ │ │ │ ├── nvme_cdw10_get_features_t.start.hpp │ │ │ │ ├── nvme_cdw10_get_log_page_t.end.hpp │ │ │ │ ├── nvme_cdw10_get_log_page_t.start.hpp │ │ │ │ ├── nvme_cdw10_get_log_page_v13_t.end.hpp │ │ │ │ ├── nvme_cdw10_get_log_page_v13_t.start.hpp │ │ │ │ ├── nvme_cdw10_identify_mfnd_child_controller_t.end.hpp │ │ │ │ ├── nvme_cdw10_identify_mfnd_child_controller_t.start.hpp │ │ │ │ ├── nvme_cdw10_identify_mfnd_t.end.hpp │ │ │ │ ├── nvme_cdw10_identify_mfnd_t.start.hpp │ │ │ │ ├── nvme_cdw10_identify_t.end.hpp │ │ │ │ ├── nvme_cdw10_identify_t.start.hpp │ │ │ │ ├── nvme_cdw10_mfnd_get_child_controller_command_permission_t.end.hpp │ │ │ │ ├── nvme_cdw10_mfnd_get_child_controller_command_permission_t.start.hpp │ │ │ │ ├── nvme_cdw10_mfnd_set_child_controller_command_permission_t.end.hpp │ │ │ │ ├── nvme_cdw10_mfnd_set_child_controller_command_permission_t.start.hpp │ │ │ │ ├── nvme_cdw10_reservation_acquire_t.end.hpp │ │ │ │ ├── nvme_cdw10_reservation_acquire_t.start.hpp │ │ │ │ ├── nvme_cdw10_reservation_register_t.end.hpp │ │ │ │ ├── nvme_cdw10_reservation_register_t.start.hpp │ │ │ │ ├── nvme_cdw10_reservation_release_t.end.hpp │ │ │ │ ├── nvme_cdw10_reservation_release_t.start.hpp │ │ │ │ ├── nvme_cdw10_reservation_report_t.end.hpp │ │ │ │ ├── nvme_cdw10_reservation_report_t.start.hpp │ │ │ │ ├── nvme_cdw10_sanitize_t.end.hpp │ │ │ │ ├── nvme_cdw10_sanitize_t.start.hpp │ │ │ │ ├── nvme_cdw10_security_send_receive_t.end.hpp │ │ │ │ ├── nvme_cdw10_security_send_receive_t.start.hpp │ │ │ │ ├── nvme_cdw10_set_features_t.end.hpp │ │ │ │ ├── nvme_cdw10_set_features_t.start.hpp │ │ │ │ ├── nvme_cdw10_zone_append_t.end.hpp │ │ │ │ ├── nvme_cdw10_zone_append_t.start.hpp │ │ │ │ ├── nvme_cdw10_zone_management_receive_t.end.hpp │ │ │ │ ├── nvme_cdw10_zone_management_receive_t.start.hpp │ │ │ │ ├── nvme_cdw10_zone_management_send_t.end.hpp │ │ │ │ ├── nvme_cdw10_zone_management_send_t.start.hpp │ │ │ │ ├── nvme_cdw11_create_io_cq_t.end.hpp │ │ │ │ ├── nvme_cdw11_create_io_cq_t.start.hpp │ │ │ │ ├── nvme_cdw11_create_io_sq_t.end.hpp │ │ │ │ ├── nvme_cdw11_create_io_sq_t.start.hpp │ │ │ │ ├── nvme_cdw11_dataset_management_t.end.hpp │ │ │ │ ├── nvme_cdw11_dataset_management_t.start.hpp │ │ │ │ ├── nvme_cdw11_directive_receive_t.end.hpp │ │ │ │ ├── nvme_cdw11_directive_receive_t.start.hpp │ │ │ │ ├── nvme_cdw11_directive_send_t.end.hpp │ │ │ │ ├── nvme_cdw11_directive_send_t.start.hpp │ │ │ │ ├── nvme_cdw11_feature_arbitration_t.end.hpp │ │ │ │ ├── nvme_cdw11_feature_arbitration_t.start.hpp │ │ │ │ ├── nvme_cdw11_feature_async_event_config_t.end.hpp │ │ │ │ ├── nvme_cdw11_feature_async_event_config_t.start.hpp │ │ │ │ ├── nvme_cdw11_feature_auto_power_state_transition_t.end.hpp │ │ │ │ ├── nvme_cdw11_feature_auto_power_state_transition_t.start.hpp │ │ │ │ ├── nvme_cdw11_feature_error_injection_t.end.hpp │ │ │ │ ├── nvme_cdw11_feature_error_injection_t.start.hpp │ │ │ │ ├── nvme_cdw11_feature_error_recovery_t.end.hpp │ │ │ │ ├── nvme_cdw11_feature_error_recovery_t.start.hpp │ │ │ │ ├── nvme_cdw11_feature_get_host_metadata_t.end.hpp │ │ │ │ ├── nvme_cdw11_feature_get_host_metadata_t.start.hpp │ │ │ │ ├── nvme_cdw11_feature_host_identifier_t.end.hpp │ │ │ │ ├── nvme_cdw11_feature_host_identifier_t.start.hpp │ │ │ │ ├── nvme_cdw11_feature_host_memory_buffer_t.end.hpp │ │ │ │ ├── nvme_cdw11_feature_host_memory_buffer_t.start.hpp │ │ │ │ ├── nvme_cdw11_feature_interrupt_coalescing_t.end.hpp │ │ │ │ ├── nvme_cdw11_feature_interrupt_coalescing_t.start.hpp │ │ │ │ ├── nvme_cdw11_feature_interrupt_vector_config_t.end.hpp │ │ │ │ ├── nvme_cdw11_feature_interrupt_vector_config_t.start.hpp │ │ │ │ ├── nvme_cdw11_feature_io_command_set_profile_t.end.hpp │ │ │ │ ├── nvme_cdw11_feature_io_command_set_profile_t.start.hpp │ │ │ │ ├── nvme_cdw11_feature_lba_range_type_t.end.hpp │ │ │ │ ├── nvme_cdw11_feature_lba_range_type_t.start.hpp │ │ │ │ ├── nvme_cdw11_feature_non_operational_power_state_t.end.hpp │ │ │ │ ├── nvme_cdw11_feature_non_operational_power_state_t.start.hpp │ │ │ │ ├── nvme_cdw11_feature_number_of_queues_t.end.hpp │ │ │ │ ├── nvme_cdw11_feature_number_of_queues_t.start.hpp │ │ │ │ ├── nvme_cdw11_feature_power_management_t.end.hpp │ │ │ │ ├── nvme_cdw11_feature_power_management_t.start.hpp │ │ │ │ ├── nvme_cdw11_feature_reservation_notification_mask_t.end.hpp │ │ │ │ ├── nvme_cdw11_feature_reservation_notification_mask_t.start.hpp │ │ │ │ ├── nvme_cdw11_feature_reservation_persistence_t.end.hpp │ │ │ │ ├── nvme_cdw11_feature_reservation_persistence_t.start.hpp │ │ │ │ ├── nvme_cdw11_feature_set_host_metadata_t.end.hpp │ │ │ │ ├── nvme_cdw11_feature_set_host_metadata_t.start.hpp │ │ │ │ ├── nvme_cdw11_feature_temperature_threshold_t.end.hpp │ │ │ │ ├── nvme_cdw11_feature_temperature_threshold_t.start.hpp │ │ │ │ ├── nvme_cdw11_feature_volatile_write_cache_t.end.hpp │ │ │ │ ├── nvme_cdw11_feature_volatile_write_cache_t.start.hpp │ │ │ │ ├── nvme_cdw11_feature_write_atomicity_normal_t.end.hpp │ │ │ │ ├── nvme_cdw11_feature_write_atomicity_normal_t.start.hpp │ │ │ │ ├── nvme_cdw11_features_t.end.hpp │ │ │ │ ├── nvme_cdw11_features_t.start.hpp │ │ │ │ ├── nvme_cdw11_firmware_download_t.end.hpp │ │ │ │ ├── nvme_cdw11_firmware_download_t.start.hpp │ │ │ │ ├── nvme_cdw11_get_log_page_t.end.hpp │ │ │ │ ├── nvme_cdw11_get_log_page_t.start.hpp │ │ │ │ ├── nvme_cdw11_identify_t.end.hpp │ │ │ │ ├── nvme_cdw11_identify_t.start.hpp │ │ │ │ ├── nvme_cdw11_mfnd_child_controller_property_feature_t.end.hpp │ │ │ │ ├── nvme_cdw11_mfnd_child_controller_property_feature_t.start.hpp │ │ │ │ ├── nvme_cdw11_mfnd_operation_feature_t.end.hpp │ │ │ │ ├── nvme_cdw11_mfnd_operation_feature_t.start.hpp │ │ │ │ ├── nvme_cdw11_reservation_report_t.end.hpp │ │ │ │ ├── nvme_cdw11_reservation_report_t.start.hpp │ │ │ │ ├── nvme_cdw11_sanitize_t.end.hpp │ │ │ │ ├── nvme_cdw11_sanitize_t.start.hpp │ │ │ │ ├── nvme_cdw11_security_receive_t.end.hpp │ │ │ │ ├── nvme_cdw11_security_receive_t.start.hpp │ │ │ │ ├── nvme_cdw11_security_send_t.end.hpp │ │ │ │ ├── nvme_cdw11_security_send_t.start.hpp │ │ │ │ ├── nvme_cdw12_directive_receive_streams_allocate_resources_t.end.hpp │ │ │ │ ├── nvme_cdw12_directive_receive_streams_allocate_resources_t.start.hpp │ │ │ │ ├── nvme_cdw12_directive_receive_t.end.hpp │ │ │ │ ├── nvme_cdw12_directive_receive_t.start.hpp │ │ │ │ ├── nvme_cdw12_directive_send_identify_enable_directive_t.end.hpp │ │ │ │ ├── nvme_cdw12_directive_send_identify_enable_directive_t.start.hpp │ │ │ │ ├── nvme_cdw12_directive_send_t.end.hpp │ │ │ │ ├── nvme_cdw12_directive_send_t.start.hpp │ │ │ │ ├── nvme_cdw12_feature_host_memory_buffer_t.end.hpp │ │ │ │ ├── nvme_cdw12_feature_host_memory_buffer_t.start.hpp │ │ │ │ ├── nvme_cdw12_features_t.end.hpp │ │ │ │ ├── nvme_cdw12_features_t.start.hpp │ │ │ │ ├── nvme_cdw12_get_log_page_t.end.hpp │ │ │ │ ├── nvme_cdw12_get_log_page_t.start.hpp │ │ │ │ ├── nvme_cdw12_read_write_t.end.hpp │ │ │ │ ├── nvme_cdw12_read_write_t.start.hpp │ │ │ │ ├── nvme_cdw12_zone_append_t.end.hpp │ │ │ │ ├── nvme_cdw12_zone_append_t.start.hpp │ │ │ │ ├── nvme_cdw13_feature_host_memory_buffer_t.end.hpp │ │ │ │ ├── nvme_cdw13_feature_host_memory_buffer_t.start.hpp │ │ │ │ ├── nvme_cdw13_features_t.end.hpp │ │ │ │ ├── nvme_cdw13_features_t.start.hpp │ │ │ │ ├── nvme_cdw13_get_log_page_t.end.hpp │ │ │ │ ├── nvme_cdw13_get_log_page_t.start.hpp │ │ │ │ ├── nvme_cdw13_read_write_t.end.hpp │ │ │ │ ├── nvme_cdw13_read_write_t.start.hpp │ │ │ │ ├── nvme_cdw13_zone_management_receive_t.end.hpp │ │ │ │ ├── nvme_cdw13_zone_management_receive_t.start.hpp │ │ │ │ ├── nvme_cdw13_zone_management_send_t.end.hpp │ │ │ │ ├── nvme_cdw13_zone_management_send_t.start.hpp │ │ │ │ ├── nvme_cdw14_feature_host_memory_buffer_t.end.hpp │ │ │ │ ├── nvme_cdw14_feature_host_memory_buffer_t.start.hpp │ │ │ │ ├── nvme_cdw14_features_t.end.hpp │ │ │ │ ├── nvme_cdw14_features_t.start.hpp │ │ │ │ ├── nvme_cdw14_get_log_page_t.end.hpp │ │ │ │ ├── nvme_cdw14_get_log_page_t.start.hpp │ │ │ │ ├── nvme_cdw14_mfnd_management_t.end.hpp │ │ │ │ ├── nvme_cdw14_mfnd_management_t.start.hpp │ │ │ │ ├── nvme_cdw15_feature_host_memory_buffer_t.end.hpp │ │ │ │ ├── nvme_cdw15_feature_host_memory_buffer_t.start.hpp │ │ │ │ ├── nvme_cdw15_features_t.end.hpp │ │ │ │ ├── nvme_cdw15_features_t.start.hpp │ │ │ │ ├── nvme_cdw15_identify_mfnd_child_controller_t.end.hpp │ │ │ │ ├── nvme_cdw15_identify_mfnd_child_controller_t.start.hpp │ │ │ │ ├── nvme_cdw15_identify_mfnd_t.end.hpp │ │ │ │ ├── nvme_cdw15_identify_mfnd_t.start.hpp │ │ │ │ ├── nvme_cdw15_mfnd_child_controller_control_t.end.hpp │ │ │ │ ├── nvme_cdw15_mfnd_child_controller_control_t.start.hpp │ │ │ │ ├── nvme_cdw15_mfnd_get_child_controller_command_permission_t.end.hpp │ │ │ │ ├── nvme_cdw15_mfnd_get_child_controller_command_permission_t.start.hpp │ │ │ │ ├── nvme_cdw15_mfnd_management_t.end.hpp │ │ │ │ ├── nvme_cdw15_mfnd_management_t.start.hpp │ │ │ │ ├── nvme_cdw15_mfnd_set_child_controller_command_permission_t.end.hpp │ │ │ │ ├── nvme_cdw15_mfnd_set_child_controller_command_permission_t.start.hpp │ │ │ │ ├── nvme_cdw15_read_write_t.end.hpp │ │ │ │ ├── nvme_cdw15_read_write_t.start.hpp │ │ │ │ ├── nvme_cdw15_zone_append_t.end.hpp │ │ │ │ ├── nvme_cdw15_zone_append_t.start.hpp │ │ │ │ ├── nvme_command_dword0_t.end.hpp │ │ │ │ ├── nvme_command_dword0_t.start.hpp │ │ │ │ ├── nvme_command_status_t.end.hpp │ │ │ │ ├── nvme_command_status_t.start.hpp │ │ │ │ ├── nvme_command_t.end.hpp │ │ │ │ ├── nvme_command_t.start.hpp │ │ │ │ ├── nvme_completion_dw0_mfnd_operation_feature_t.end.hpp │ │ │ │ ├── nvme_completion_dw0_mfnd_operation_feature_t.start.hpp │ │ │ │ ├── nvme_identify_controller_data_t.end.hpp │ │ │ │ ├── nvme_identify_controller_data_t.start.hpp │ │ │ │ ├── nvme_identify_namespace_data_t.end.hpp │ │ │ │ ├── nvme_identify_namespace_data_t.start.hpp │ │ │ │ ├── nvme_identify_specific_namespace_io_command_set_t.end.hpp │ │ │ │ ├── nvme_identify_specific_namespace_io_command_set_t.start.hpp │ │ │ │ ├── nvme_lba_format_t.end.hpp │ │ │ │ ├── nvme_lba_format_t.start.hpp │ │ │ │ ├── nvme_lba_zone_format_t.end.hpp │ │ │ │ ├── nvme_lba_zone_format_t.start.hpp │ │ │ │ ├── nvme_power_state_desc_t.end.hpp │ │ │ │ ├── nvme_power_state_desc_t.start.hpp │ │ │ │ ├── open_zone_t.end.hpp │ │ │ │ ├── open_zone_t.start.hpp │ │ │ │ ├── partition_t.end.hpp │ │ │ │ ├── partition_t.start.hpp │ │ │ │ ├── pause_resume_t.end.hpp │ │ │ │ ├── pause_resume_t.start.hpp │ │ │ │ ├── persistent_reserve_in_t.end.hpp │ │ │ │ ├── persistent_reserve_in_t.start.hpp │ │ │ │ ├── persistent_reserve_out_t.end.hpp │ │ │ │ ├── persistent_reserve_out_t.start.hpp │ │ │ │ ├── play_audio_msf_t.end.hpp │ │ │ │ ├── play_audio_msf_t.start.hpp │ │ │ │ ├── play_audio_t.end.hpp │ │ │ │ ├── play_audio_t.start.hpp │ │ │ │ ├── play_cd_t.end.hpp │ │ │ │ ├── play_cd_t.start.hpp │ │ │ │ ├── plxtr_read_cdda_t.end.hpp │ │ │ │ ├── plxtr_read_cdda_t.start.hpp │ │ │ │ ├── port_configuration_information_t.end.hpp │ │ │ │ ├── port_configuration_information_t.start.hpp │ │ │ │ ├── port_registry_info_t.end.hpp │ │ │ │ ├── port_registry_info_t.start.hpp │ │ │ │ ├── position_to_element_t.end.hpp │ │ │ │ ├── position_to_element_t.start.hpp │ │ │ │ ├── print_t.end.hpp │ │ │ │ ├── print_t.start.hpp │ │ │ │ ├── queue_tag_entry_t.end.hpp │ │ │ │ ├── queue_tag_entry_t.start.hpp │ │ │ │ ├── queue_tag_list_header_t.end.hpp │ │ │ │ ├── queue_tag_list_header_t.start.hpp │ │ │ │ ├── queue_tag_list_t.end.hpp │ │ │ │ ├── queue_tag_list_t.start.hpp │ │ │ │ ├── raid_active_ref_context_t.end.hpp │ │ │ │ ├── raid_active_ref_context_t.start.hpp │ │ │ │ ├── raid_adapter_crypto_key_entry_t.end.hpp │ │ │ │ ├── raid_adapter_crypto_key_entry_t.start.hpp │ │ │ │ ├── raid_adapter_extension_t.end.hpp │ │ │ │ ├── raid_adapter_extension_t.start.hpp │ │ │ │ ├── raid_adapter_parameters_t.end.hpp │ │ │ │ ├── raid_adapter_parameters_t.start.hpp │ │ │ │ ├── raid_adapter_pofx_t.end.hpp │ │ │ │ ├── raid_adapter_pofx_t.start.hpp │ │ │ │ ├── raid_address_t.end.hpp │ │ │ │ ├── raid_address_t.start.hpp │ │ │ │ ├── raid_bus_interface_t.end.hpp │ │ │ │ ├── raid_bus_interface_t.start.hpp │ │ │ │ ├── raid_common_extension_t.end.hpp │ │ │ │ ├── raid_common_extension_t.start.hpp │ │ │ │ ├── raid_concurrent_channel_token_list_t.end.hpp │ │ │ │ ├── raid_concurrent_channel_token_list_t.start.hpp │ │ │ │ ├── raid_crypto_key_table_t.end.hpp │ │ │ │ ├── raid_crypto_key_table_t.start.hpp │ │ │ │ ├── raid_deferred_element_t.end.hpp │ │ │ │ ├── raid_deferred_element_t.start.hpp │ │ │ │ ├── raid_deferred_header_t.end.hpp │ │ │ │ ├── raid_deferred_header_t.start.hpp │ │ │ │ ├── raid_deferred_queue_t.end.hpp │ │ │ │ ├── raid_deferred_queue_t.start.hpp │ │ │ │ ├── raid_dma_adapter_t.end.hpp │ │ │ │ ├── raid_dma_adapter_t.start.hpp │ │ │ │ ├── raid_driver_extension_t.end.hpp │ │ │ │ ├── raid_driver_extension_t.start.hpp │ │ │ │ ├── raid_fixed_pool_t.end.hpp │ │ │ │ ├── raid_fixed_pool_t.start.hpp │ │ │ │ ├── raid_hw_device_ext_t.end.hpp │ │ │ │ ├── raid_hw_device_ext_t.start.hpp │ │ │ │ ├── raid_io_resources_t.end.hpp │ │ │ │ ├── raid_io_resources_t.start.hpp │ │ │ │ ├── raid_log_control_t.end.hpp │ │ │ │ ├── raid_log_control_t.start.hpp │ │ │ │ ├── raid_log_entry_t.end.hpp │ │ │ │ ├── raid_log_entry_t.start.hpp │ │ │ │ ├── raid_memory_region_t.end.hpp │ │ │ │ ├── raid_memory_region_t.start.hpp │ │ │ │ ├── raid_miniport_system_thread_context_t.end.hpp │ │ │ │ ├── raid_miniport_system_thread_context_t.start.hpp │ │ │ │ ├── raid_miniport_t.end.hpp │ │ │ │ ├── raid_miniport_t.start.hpp │ │ │ │ ├── raid_port_data_t.end.hpp │ │ │ │ ├── raid_port_data_t.start.hpp │ │ │ │ ├── raid_power_context_t.end.hpp │ │ │ │ ├── raid_power_context_t.start.hpp │ │ │ │ ├── raid_power_state_t.end.hpp │ │ │ │ ├── raid_power_state_t.start.hpp │ │ │ │ ├── raid_redirection_support_t.end.hpp │ │ │ │ ├── raid_redirection_support_t.start.hpp │ │ │ │ ├── raid_resource_list_t.end.hpp │ │ │ │ ├── raid_resource_list_t.start.hpp │ │ │ │ ├── raid_rpmb_capabilities_t.end.hpp │ │ │ │ ├── raid_rpmb_capabilities_t.start.hpp │ │ │ │ ├── raid_shared_work_item_context_t.end.hpp │ │ │ │ ├── raid_shared_work_item_context_t.start.hpp │ │ │ │ ├── raid_telemetry_error_entry_t.end.hpp │ │ │ │ ├── raid_telemetry_error_entry_t.start.hpp │ │ │ │ ├── raid_telemetry_io_size_bucket_t.end.hpp │ │ │ │ ├── raid_telemetry_io_size_bucket_t.start.hpp │ │ │ │ ├── raid_telemetry_latency_bucket_t.end.hpp │ │ │ │ ├── raid_telemetry_latency_bucket_t.start.hpp │ │ │ │ ├── raid_telemetry_node_counters_t.end.hpp │ │ │ │ ├── raid_telemetry_node_counters_t.start.hpp │ │ │ │ ├── raid_telemetry_perf_bucket_t.end.hpp │ │ │ │ ├── raid_telemetry_perf_bucket_t.start.hpp │ │ │ │ ├── raid_telemetry_sampled_error_log_t.end.hpp │ │ │ │ ├── raid_telemetry_sampled_error_log_t.start.hpp │ │ │ │ ├── raid_telemetry_unique_error_log_t.end.hpp │ │ │ │ ├── raid_telemetry_unique_error_log_t.start.hpp │ │ │ │ ├── raid_unit_attributes_t.end.hpp │ │ │ │ ├── raid_unit_attributes_t.start.hpp │ │ │ │ ├── raid_unit_extension_per_processor_t.end.hpp │ │ │ │ ├── raid_unit_extension_per_processor_t.start.hpp │ │ │ │ ├── raid_unit_extension_t.end.hpp │ │ │ │ ├── raid_unit_extension_t.start.hpp │ │ │ │ ├── raid_unit_pofx_t.end.hpp │ │ │ │ ├── raid_unit_pofx_t.start.hpp │ │ │ │ ├── raid_unit_qos_t.end.hpp │ │ │ │ ├── raid_unit_qos_t.start.hpp │ │ │ │ ├── raid_unit_registry_parameters_t.end.hpp │ │ │ │ ├── raid_unit_registry_parameters_t.start.hpp │ │ │ │ ├── raid_work_item_context_t.end.hpp │ │ │ │ ├── raid_work_item_context_t.start.hpp │ │ │ │ ├── read12_t.end.hpp │ │ │ │ ├── read12_t.start.hpp │ │ │ │ ├── read16_t.end.hpp │ │ │ │ ├── read16_t.start.hpp │ │ │ │ ├── read_buffer_10_t.end.hpp │ │ │ │ ├── read_buffer_10_t.start.hpp │ │ │ │ ├── read_buffer_16_t.end.hpp │ │ │ │ ├── read_buffer_16_t.start.hpp │ │ │ │ ├── read_buffer_capacity_t.end.hpp │ │ │ │ ├── read_buffer_capacity_t.start.hpp │ │ │ │ ├── read_capacity16_t.end.hpp │ │ │ │ ├── read_capacity16_t.start.hpp │ │ │ │ ├── read_cd_msf_t.end.hpp │ │ │ │ ├── read_cd_msf_t.start.hpp │ │ │ │ ├── read_cd_t.end.hpp │ │ │ │ ├── read_cd_t.start.hpp │ │ │ │ ├── read_disk_information_t.end.hpp │ │ │ │ ├── read_disk_information_t.start.hpp │ │ │ │ ├── read_dvd_structure_t.end.hpp │ │ │ │ ├── read_dvd_structure_t.start.hpp │ │ │ │ ├── read_element_status_t.end.hpp │ │ │ │ ├── read_element_status_t.start.hpp │ │ │ │ ├── read_formatted_capacities_t.end.hpp │ │ │ │ ├── read_formatted_capacities_t.start.hpp │ │ │ │ ├── read_header_t.end.hpp │ │ │ │ ├── read_header_t.start.hpp │ │ │ │ ├── read_position_t.end.hpp │ │ │ │ ├── read_position_t.start.hpp │ │ │ │ ├── read_toc_t.end.hpp │ │ │ │ ├── read_toc_t.start.hpp │ │ │ │ ├── read_track_information_t.end.hpp │ │ │ │ ├── read_track_information_t.start.hpp │ │ │ │ ├── receive_diagnostic_t.end.hpp │ │ │ │ ├── receive_diagnostic_t.start.hpp │ │ │ │ ├── receive_token_information_t.end.hpp │ │ │ │ ├── receive_token_information_t.start.hpp │ │ │ │ ├── remove_element_and_truncate_t.end.hpp │ │ │ │ ├── remove_element_and_truncate_t.start.hpp │ │ │ │ ├── repair_track_t.end.hpp │ │ │ │ ├── repair_track_t.start.hpp │ │ │ │ ├── report_key_t.end.hpp │ │ │ │ ├── report_key_t.start.hpp │ │ │ │ ├── report_luns_t.end.hpp │ │ │ │ ├── report_luns_t.start.hpp │ │ │ │ ├── report_timestamp_t.end.hpp │ │ │ │ ├── report_timestamp_t.start.hpp │ │ │ │ ├── report_zones_t.end.hpp │ │ │ │ ├── report_zones_t.start.hpp │ │ │ │ ├── request_block_address_t.end.hpp │ │ │ │ ├── request_block_address_t.start.hpp │ │ │ │ ├── request_volume_element_address_t.end.hpp │ │ │ │ ├── request_volume_element_address_t.start.hpp │ │ │ │ ├── reserve_track_rzone_t.end.hpp │ │ │ │ ├── reserve_track_rzone_t.start.hpp │ │ │ │ ├── reset_write_pointer_t.end.hpp │ │ │ │ ├── reset_write_pointer_t.start.hpp │ │ │ │ ├── sanitize_t.end.hpp │ │ │ │ ├── sanitize_t.start.hpp │ │ │ │ ├── scan_cd_t.end.hpp │ │ │ │ ├── scan_cd_t.start.hpp │ │ │ │ ├── scsi_device_type_t.end.hpp │ │ │ │ ├── scsi_device_type_t.start.hpp │ │ │ │ ├── scsi_power_request_block_t.end.hpp │ │ │ │ ├── scsi_power_request_block_t.start.hpp │ │ │ │ ├── scsi_sense_descriptor_block_command_t.end.hpp │ │ │ │ ├── scsi_sense_descriptor_block_command_t.start.hpp │ │ │ │ ├── scsi_sense_descriptor_header_t.end.hpp │ │ │ │ ├── scsi_sense_descriptor_header_t.start.hpp │ │ │ │ ├── scsi_sense_descriptor_information_t.end.hpp │ │ │ │ ├── scsi_sense_descriptor_information_t.start.hpp │ │ │ │ ├── scsi_wmi_request_block_t.end.hpp │ │ │ │ ├── scsi_wmi_request_block_t.start.hpp │ │ │ │ ├── seek_block_t.end.hpp │ │ │ │ ├── seek_block_t.start.hpp │ │ │ │ ├── seek_t.end.hpp │ │ │ │ ├── seek_t.start.hpp │ │ │ │ ├── send_cue_sheet_t.end.hpp │ │ │ │ ├── send_cue_sheet_t.start.hpp │ │ │ │ ├── send_diagnostic_t.end.hpp │ │ │ │ ├── send_diagnostic_t.start.hpp │ │ │ │ ├── send_dvd_structure_t.end.hpp │ │ │ │ ├── send_dvd_structure_t.start.hpp │ │ │ │ ├── send_key_t.end.hpp │ │ │ │ ├── send_key_t.start.hpp │ │ │ │ ├── send_opc_information_t.end.hpp │ │ │ │ ├── send_opc_information_t.start.hpp │ │ │ │ ├── send_volume_tag_t.end.hpp │ │ │ │ ├── send_volume_tag_t.start.hpp │ │ │ │ ├── sense_data_ex_t.end.hpp │ │ │ │ ├── sense_data_ex_t.start.hpp │ │ │ │ ├── sense_data_t.end.hpp │ │ │ │ ├── sense_data_t.start.hpp │ │ │ │ ├── set_cd_speed_t.end.hpp │ │ │ │ ├── set_cd_speed_t.start.hpp │ │ │ │ ├── set_read_ahead_t.end.hpp │ │ │ │ ├── set_read_ahead_t.start.hpp │ │ │ │ ├── set_streaming_t.end.hpp │ │ │ │ ├── set_streaming_t.start.hpp │ │ │ │ ├── set_timestamp_t.end.hpp │ │ │ │ ├── set_timestamp_t.start.hpp │ │ │ │ ├── smart_attribute_t.end.hpp │ │ │ │ ├── smart_attribute_t.start.hpp │ │ │ │ ├── smart_threshold_t.end.hpp │ │ │ │ ├── smart_threshold_t.start.hpp │ │ │ │ ├── space_tape_marks_t.end.hpp │ │ │ │ ├── space_tape_marks_t.start.hpp │ │ │ │ ├── srbex_data_bidirectional_t.end.hpp │ │ │ │ ├── srbex_data_bidirectional_t.start.hpp │ │ │ │ ├── srbex_data_scsi_cdb16_t.end.hpp │ │ │ │ ├── srbex_data_scsi_cdb16_t.start.hpp │ │ │ │ ├── srbex_data_scsi_cdb32_t.end.hpp │ │ │ │ ├── srbex_data_scsi_cdb32_t.start.hpp │ │ │ │ ├── srbex_data_scsi_cdb_var_t.end.hpp │ │ │ │ ├── srbex_data_scsi_cdb_var_t.start.hpp │ │ │ │ ├── srbex_data_t.end.hpp │ │ │ │ ├── srbex_data_t.start.hpp │ │ │ │ ├── srbex_data_wmi_t.end.hpp │ │ │ │ ├── srbex_data_wmi_t.start.hpp │ │ │ │ ├── start_stop_t.end.hpp │ │ │ │ ├── start_stop_t.start.hpp │ │ │ │ ├── startio_performance_parameters_t.end.hpp │ │ │ │ ├── startio_performance_parameters_t.start.hpp │ │ │ │ ├── startio_token_t.end.hpp │ │ │ │ ├── startio_token_t.start.hpp │ │ │ │ ├── stop_play_scan_t.end.hpp │ │ │ │ ├── stop_play_scan_t.start.hpp │ │ │ │ ├── stor_addr_btl8_t.end.hpp │ │ │ │ ├── stor_addr_btl8_t.start.hpp │ │ │ │ ├── stor_address_t.end.hpp │ │ │ │ ├── stor_address_t.start.hpp │ │ │ │ ├── stor_alloc_diag_event_args_t.end.hpp │ │ │ │ ├── stor_alloc_diag_event_args_t.start.hpp │ │ │ │ ├── stor_alloc_el_record_args_t.end.hpp │ │ │ │ ├── stor_alloc_el_record_args_t.start.hpp │ │ │ │ ├── stor_async_notify_context_t.end.hpp │ │ │ │ ├── stor_async_notify_context_t.start.hpp │ │ │ │ ├── stor_ata_device_id_t.end.hpp │ │ │ │ ├── stor_ata_device_id_t.start.hpp │ │ │ │ ├── stor_cleanup_tracing_args_t.end.hpp │ │ │ │ ├── stor_cleanup_tracing_args_t.start.hpp │ │ │ │ ├── stor_crypto_capabilities_data_t.end.hpp │ │ │ │ ├── stor_crypto_capabilities_data_t.start.hpp │ │ │ │ ├── stor_crypto_capability_t.end.hpp │ │ │ │ ├── stor_crypto_capability_t.start.hpp │ │ │ │ ├── stor_crypto_key_info_t.end.hpp │ │ │ │ ├── stor_crypto_key_info_t.start.hpp │ │ │ │ ├── stor_dictionary_t.end.hpp │ │ │ │ ├── stor_dictionary_t.start.hpp │ │ │ │ ├── stor_dispatcher_header_t.end.hpp │ │ │ │ ├── stor_dispatcher_header_t.start.hpp │ │ │ │ ├── stor_dpc_t.end.hpp │ │ │ │ ├── stor_dpc_t.start.hpp │ │ │ │ ├── stor_dpc_watchdog_information_t.end.hpp │ │ │ │ ├── stor_dpc_watchdog_information_t.start.hpp │ │ │ │ ├── stor_event_queue_entry_t.end.hpp │ │ │ │ ├── stor_event_queue_entry_t.start.hpp │ │ │ │ ├── stor_event_queue_node_t.end.hpp │ │ │ │ ├── stor_event_queue_node_t.start.hpp │ │ │ │ ├── stor_event_queue_t.end.hpp │ │ │ │ ├── stor_event_queue_t.start.hpp │ │ │ │ ├── stor_event_subqueue_t.end.hpp │ │ │ │ ├── stor_event_subqueue_t.start.hpp │ │ │ │ ├── stor_event_t.end.hpp │ │ │ │ ├── stor_event_t.start.hpp │ │ │ │ ├── stor_ext_delete_parameters_t.end.hpp │ │ │ │ ├── stor_ext_delete_parameters_t.start.hpp │ │ │ │ ├── stor_ext_set_parameters_t.end.hpp │ │ │ │ ├── stor_ext_set_parameters_t.start.hpp │ │ │ │ ├── stor_free_diag_event_args_t.end.hpp │ │ │ │ ├── stor_free_diag_event_args_t.start.hpp │ │ │ │ ├── stor_free_el_record_args_t.end.hpp │ │ │ │ ├── stor_free_el_record_args_t.start.hpp │ │ │ │ ├── stor_group_affinity_t.end.hpp │ │ │ │ ├── stor_group_affinity_t.start.hpp │ │ │ │ ├── stor_hmb_range_t.end.hpp │ │ │ │ ├── stor_hmb_range_t.start.hpp │ │ │ │ ├── stor_identity_t.end.hpp │ │ │ │ ├── stor_identity_t.start.hpp │ │ │ │ ├── stor_init_tracing_args_t.end.hpp │ │ │ │ ├── stor_init_tracing_args_t.start.hpp │ │ │ │ ├── stor_init_unicode_string_args_t.end.hpp │ │ │ │ ├── stor_init_unicode_string_args_t.start.hpp │ │ │ │ ├── stor_initgloballogger_args_t.end.hpp │ │ │ │ ├── stor_initgloballogger_args_t.start.hpp │ │ │ │ ├── stor_io_gateway_t.end.hpp │ │ │ │ ├── stor_io_gateway_t.start.hpp │ │ │ │ ├── stor_list_entry_t.end.hpp │ │ │ │ ├── stor_list_entry_t.start.hpp │ │ │ │ ├── stor_lock_handle_t.end.hpp │ │ │ │ ├── stor_lock_handle_t.start.hpp │ │ │ │ ├── stor_locked_list_t.end.hpp │ │ │ │ ├── stor_locked_list_t.start.hpp │ │ │ │ ├── stor_log_diag_event_args_t.end.hpp │ │ │ │ ├── stor_log_diag_event_args_t.start.hpp │ │ │ │ ├── stor_log_event_details_t.end.hpp │ │ │ │ ├── stor_log_event_details_t.start.hpp │ │ │ │ ├── stor_notification_info_t.end.hpp │ │ │ │ ├── stor_notification_info_t.start.hpp │ │ │ │ ├── stor_pofx_component_idle_state_t.end.hpp │ │ │ │ ├── stor_pofx_component_idle_state_t.start.hpp │ │ │ │ ├── stor_pofx_component_perf_set_t.end.hpp │ │ │ │ ├── stor_pofx_component_perf_set_t.start.hpp │ │ │ │ ├── stor_pofx_component_t.end.hpp │ │ │ │ ├── stor_pofx_component_t.start.hpp │ │ │ │ ├── stor_pofx_component_v2_t.end.hpp │ │ │ │ ├── stor_pofx_component_v2_t.start.hpp │ │ │ │ ├── stor_pofx_device_t.end.hpp │ │ │ │ ├── stor_pofx_device_t.start.hpp │ │ │ │ ├── stor_pofx_device_v2_t.end.hpp │ │ │ │ ├── stor_pofx_device_v2_t.start.hpp │ │ │ │ ├── stor_pofx_device_v3_t.end.hpp │ │ │ │ ├── stor_pofx_device_v3_t.start.hpp │ │ │ │ ├── stor_pofx_perf_state_t.end.hpp │ │ │ │ ├── stor_pofx_perf_state_t.start.hpp │ │ │ │ ├── stor_power_setting_notification_t.end.hpp │ │ │ │ ├── stor_power_setting_notification_t.start.hpp │ │ │ │ ├── stor_request_info_v2_t.end.hpp │ │ │ │ ├── stor_request_info_v2_t.start.hpp │ │ │ │ ├── stor_rich_device_description_t.end.hpp │ │ │ │ ├── stor_rich_device_description_t.start.hpp │ │ │ │ ├── stor_rpmb_capabilities_data_t.end.hpp │ │ │ │ ├── stor_rpmb_capabilities_data_t.start.hpp │ │ │ │ ├── stor_scatter_gather_element_t.end.hpp │ │ │ │ ├── stor_scatter_gather_element_t.start.hpp │ │ │ │ ├── stor_scatter_gather_list_t.end.hpp │ │ │ │ ├── stor_scatter_gather_list_t.start.hpp │ │ │ │ ├── stor_scsi_address_t.end.hpp │ │ │ │ ├── stor_scsi_address_t.start.hpp │ │ │ │ ├── stor_scsi_identity_t.end.hpp │ │ │ │ ├── stor_scsi_identity_t.start.hpp │ │ │ │ ├── stor_slist_entry_t.end.hpp │ │ │ │ ├── stor_slist_entry_t.start.hpp │ │ │ │ ├── stor_slist_header_t.end.hpp │ │ │ │ ├── stor_slist_header_t.start.hpp │ │ │ │ ├── stor_timer_context_t.end.hpp │ │ │ │ ├── stor_timer_context_t.start.hpp │ │ │ │ ├── stor_unicode_string_t.end.hpp │ │ │ │ ├── stor_unicode_string_t.start.hpp │ │ │ │ ├── stor_unit_attributes_t.end.hpp │ │ │ │ ├── stor_unit_attributes_t.start.hpp │ │ │ │ ├── stor_wmi_querytraceinfo_args_t.end.hpp │ │ │ │ ├── stor_wmi_querytraceinfo_args_t.start.hpp │ │ │ │ ├── stor_wmi_regcontrol_args_t.end.hpp │ │ │ │ ├── stor_wmi_regcontrol_args_t.start.hpp │ │ │ │ ├── stor_wmi_trace_message_args_t.end.hpp │ │ │ │ ├── stor_wmi_trace_message_args_t.start.hpp │ │ │ │ ├── stor_write_el_record_args_t.end.hpp │ │ │ │ ├── stor_write_el_record_args_t.start.hpp │ │ │ │ ├── storage_dump_info_t.end.hpp │ │ │ │ ├── storage_dump_info_t.start.hpp │ │ │ │ ├── storage_errorlog_packet_t.end.hpp │ │ │ │ ├── storage_errorlog_packet_t.start.hpp │ │ │ │ ├── storage_indicator_state_t.end.hpp │ │ │ │ ├── storage_indicator_state_t.start.hpp │ │ │ │ ├── storage_request_block_t.end.hpp │ │ │ │ ├── storage_request_block_t.start.hpp │ │ │ │ ├── storage_set_indicator_t.end.hpp │ │ │ │ ├── storage_set_indicator_t.start.hpp │ │ │ │ ├── storport_capture_livedump_t.end.hpp │ │ │ │ ├── storport_capture_livedump_t.start.hpp │ │ │ │ ├── storport_context_t.end.hpp │ │ │ │ ├── storport_context_t.start.hpp │ │ │ │ ├── storport_dump_adapter_data_t.end.hpp │ │ │ │ ├── storport_dump_adapter_data_t.start.hpp │ │ │ │ ├── storport_extended_functions_t.end.hpp │ │ │ │ ├── storport_extended_functions_t.start.hpp │ │ │ │ ├── storport_telemetry_event_t.end.hpp │ │ │ │ ├── storport_telemetry_event_t.start.hpp │ │ │ │ ├── subchannel_t.end.hpp │ │ │ │ ├── subchannel_t.start.hpp │ │ │ │ ├── synchronize_cache10_t.end.hpp │ │ │ │ ├── synchronize_cache10_t.start.hpp │ │ │ │ ├── synchronize_cache16_t.end.hpp │ │ │ │ ├── synchronize_cache16_t.start.hpp │ │ │ │ ├── telemetry_smart_struct_t.end.hpp │ │ │ │ ├── telemetry_smart_struct_t.start.hpp │ │ │ │ ├── telemetry_unit_extension_t.end.hpp │ │ │ │ ├── telemetry_unit_extension_t.start.hpp │ │ │ │ ├── token_operation_t.end.hpp │ │ │ │ ├── token_operation_t.start.hpp │ │ │ │ ├── two_byte_t.end.hpp │ │ │ │ ├── two_byte_t.start.hpp │ │ │ │ ├── unit_control_list_t.end.hpp │ │ │ │ ├── unit_control_list_t.start.hpp │ │ │ │ ├── unmap_t.end.hpp │ │ │ │ ├── unmap_t.start.hpp │ │ │ │ ├── verify16_t.end.hpp │ │ │ │ ├── verify16_t.start.hpp │ │ │ │ ├── vpd_enumerator_t.end.hpp │ │ │ │ ├── vpd_enumerator_t.start.hpp │ │ │ │ ├── vpd_identification_descriptor_t.end.hpp │ │ │ │ ├── vpd_identification_descriptor_t.start.hpp │ │ │ │ ├── vpd_identification_page_t.end.hpp │ │ │ │ ├── vpd_identification_page_t.start.hpp │ │ │ │ ├── wnode_header_t.end.hpp │ │ │ │ ├── wnode_header_t.start.hpp │ │ │ │ ├── write12_t.end.hpp │ │ │ │ ├── write12_t.start.hpp │ │ │ │ ├── write16_t.end.hpp │ │ │ │ ├── write16_t.start.hpp │ │ │ │ ├── write_buffer_t.end.hpp │ │ │ │ ├── write_buffer_t.start.hpp │ │ │ │ ├── write_tape_marks_t.end.hpp │ │ │ │ └── write_tape_marks_t.start.hpp │ │ │ ├── mapped_address_t.hpp │ │ │ ├── mech_status_t.hpp │ │ │ ├── media_removal_t.hpp │ │ │ ├── memory_region_t.hpp │ │ │ ├── message_interrupt_information_t.hpp │ │ │ ├── mfnd_admin_command_identifiers_t.hpp │ │ │ ├── mfnd_admin_commands_t.hpp │ │ │ ├── mfnd_child_controller_control_select_t.hpp │ │ │ ├── mfnd_child_pf_admin_command_permission_entry_t.hpp │ │ │ ├── mfnd_child_pf_admin_command_permission_status_t.hpp │ │ │ ├── mfnd_child_pf_control_action_t.hpp │ │ │ ├── mfnd_child_pf_data_t.hpp │ │ │ ├── mfnd_child_pf_global_property_t.hpp │ │ │ ├── mfnd_child_pf_list_t.hpp │ │ │ ├── mfnd_child_pf_settings_t.hpp │ │ │ ├── mfnd_feature_identifiers_t.hpp │ │ │ ├── mfnd_management_type_t.hpp │ │ │ ├── mfnd_operation_mode_t.hpp │ │ │ ├── mfnd_operation_privilege_t.hpp │ │ │ ├── mfnd_physical_function_global_properties_t.hpp │ │ │ ├── mfnd_physical_function_settings_t.hpp │ │ │ ├── mfnd_qos_policy_t.hpp │ │ │ ├── mfnd_qos_t.hpp │ │ │ ├── mfnd_reconfigure_type_t.hpp │ │ │ ├── mfnd_set_child_pf_admin_command_permission_additional_t.hpp │ │ │ ├── mfnd_set_child_pf_admin_command_permission_entry_t.hpp │ │ │ ├── mfnd_set_child_pf_global_property_additional_t.hpp │ │ │ ├── mfnd_set_child_pf_qos_additional_t.hpp │ │ │ ├── mfnd_set_child_pf_settings_additional_t.hpp │ │ │ ├── miniport_data_t.hpp │ │ │ ├── mode_select10_t.hpp │ │ │ ├── mode_select_t.hpp │ │ │ ├── mode_sense10_t.hpp │ │ │ ├── mode_sense_t.hpp │ │ │ ├── move_medium_t.hpp │ │ │ ├── msf_t.hpp │ │ │ ├── nec_read_cdda_t.hpp │ │ │ ├── ntstor_unicode_string_t.hpp │ │ │ ├── nvm_reservation_capabilities_t.hpp │ │ │ ├── nvme_admin_commands_t.hpp │ │ │ ├── nvme_cdw10_abort_t.hpp │ │ │ ├── nvme_cdw10_create_io_queue_t.hpp │ │ │ ├── nvme_cdw10_dataset_management_t.hpp │ │ │ ├── nvme_cdw10_directive_receive_t.hpp │ │ │ ├── nvme_cdw10_directive_send_t.hpp │ │ │ ├── nvme_cdw10_firmware_activate_t.hpp │ │ │ ├── nvme_cdw10_firmware_download_t.hpp │ │ │ ├── nvme_cdw10_format_nvm_t.hpp │ │ │ ├── nvme_cdw10_get_features_t.hpp │ │ │ ├── nvme_cdw10_get_log_page_t.hpp │ │ │ ├── nvme_cdw10_get_log_page_v13_t.hpp │ │ │ ├── nvme_cdw10_identify_mfnd_child_controller_t.hpp │ │ │ ├── nvme_cdw10_identify_mfnd_t.hpp │ │ │ ├── nvme_cdw10_identify_t.hpp │ │ │ ├── nvme_cdw10_mfnd_get_child_controller_command_permission_t.hpp │ │ │ ├── nvme_cdw10_mfnd_set_child_controller_command_permission_t.hpp │ │ │ ├── nvme_cdw10_reservation_acquire_t.hpp │ │ │ ├── nvme_cdw10_reservation_register_t.hpp │ │ │ ├── nvme_cdw10_reservation_release_t.hpp │ │ │ ├── nvme_cdw10_reservation_report_t.hpp │ │ │ ├── nvme_cdw10_sanitize_t.hpp │ │ │ ├── nvme_cdw10_security_send_receive_t.hpp │ │ │ ├── nvme_cdw10_set_features_t.hpp │ │ │ ├── nvme_cdw10_zone_append_t.hpp │ │ │ ├── nvme_cdw10_zone_management_receive_t.hpp │ │ │ ├── nvme_cdw10_zone_management_send_t.hpp │ │ │ ├── nvme_cdw11_create_io_cq_t.hpp │ │ │ ├── nvme_cdw11_create_io_sq_t.hpp │ │ │ ├── nvme_cdw11_dataset_management_t.hpp │ │ │ ├── nvme_cdw11_directive_receive_t.hpp │ │ │ ├── nvme_cdw11_directive_send_t.hpp │ │ │ ├── nvme_cdw11_feature_arbitration_t.hpp │ │ │ ├── nvme_cdw11_feature_async_event_config_t.hpp │ │ │ ├── nvme_cdw11_feature_auto_power_state_transition_t.hpp │ │ │ ├── nvme_cdw11_feature_error_injection_t.hpp │ │ │ ├── nvme_cdw11_feature_error_recovery_t.hpp │ │ │ ├── nvme_cdw11_feature_get_host_metadata_t.hpp │ │ │ ├── nvme_cdw11_feature_host_identifier_t.hpp │ │ │ ├── nvme_cdw11_feature_host_memory_buffer_t.hpp │ │ │ ├── nvme_cdw11_feature_interrupt_coalescing_t.hpp │ │ │ ├── nvme_cdw11_feature_interrupt_vector_config_t.hpp │ │ │ ├── nvme_cdw11_feature_io_command_set_profile_t.hpp │ │ │ ├── nvme_cdw11_feature_lba_range_type_t.hpp │ │ │ ├── nvme_cdw11_feature_non_operational_power_state_t.hpp │ │ │ ├── nvme_cdw11_feature_number_of_queues_t.hpp │ │ │ ├── nvme_cdw11_feature_power_management_t.hpp │ │ │ ├── nvme_cdw11_feature_reservation_notification_mask_t.hpp │ │ │ ├── nvme_cdw11_feature_reservation_persistence_t.hpp │ │ │ ├── nvme_cdw11_feature_set_host_metadata_t.hpp │ │ │ ├── nvme_cdw11_feature_temperature_threshold_t.hpp │ │ │ ├── nvme_cdw11_feature_volatile_write_cache_t.hpp │ │ │ ├── nvme_cdw11_feature_write_atomicity_normal_t.hpp │ │ │ ├── nvme_cdw11_features_t.hpp │ │ │ ├── nvme_cdw11_firmware_download_t.hpp │ │ │ ├── nvme_cdw11_get_log_page_t.hpp │ │ │ ├── nvme_cdw11_identify_t.hpp │ │ │ ├── nvme_cdw11_mfnd_child_controller_property_feature_t.hpp │ │ │ ├── nvme_cdw11_mfnd_operation_feature_t.hpp │ │ │ ├── nvme_cdw11_reservation_report_t.hpp │ │ │ ├── nvme_cdw11_sanitize_t.hpp │ │ │ ├── nvme_cdw11_security_receive_t.hpp │ │ │ ├── nvme_cdw11_security_send_t.hpp │ │ │ ├── nvme_cdw12_directive_receive_streams_allocate_resources_t.hpp │ │ │ ├── nvme_cdw12_directive_receive_t.hpp │ │ │ ├── nvme_cdw12_directive_send_identify_enable_directive_t.hpp │ │ │ ├── nvme_cdw12_directive_send_t.hpp │ │ │ ├── nvme_cdw12_feature_host_memory_buffer_t.hpp │ │ │ ├── nvme_cdw12_features_t.hpp │ │ │ ├── nvme_cdw12_get_log_page_t.hpp │ │ │ ├── nvme_cdw12_read_write_t.hpp │ │ │ ├── nvme_cdw12_zone_append_t.hpp │ │ │ ├── nvme_cdw13_feature_host_memory_buffer_t.hpp │ │ │ ├── nvme_cdw13_features_t.hpp │ │ │ ├── nvme_cdw13_get_log_page_t.hpp │ │ │ ├── nvme_cdw13_read_write_t.hpp │ │ │ ├── nvme_cdw13_zone_management_receive_t.hpp │ │ │ ├── nvme_cdw13_zone_management_send_t.hpp │ │ │ ├── nvme_cdw14_feature_host_memory_buffer_t.hpp │ │ │ ├── nvme_cdw14_features_t.hpp │ │ │ ├── nvme_cdw14_get_log_page_t.hpp │ │ │ ├── nvme_cdw14_mfnd_management_t.hpp │ │ │ ├── nvme_cdw15_feature_host_memory_buffer_t.hpp │ │ │ ├── nvme_cdw15_features_t.hpp │ │ │ ├── nvme_cdw15_identify_mfnd_child_controller_t.hpp │ │ │ ├── nvme_cdw15_identify_mfnd_t.hpp │ │ │ ├── nvme_cdw15_mfnd_child_controller_control_t.hpp │ │ │ ├── nvme_cdw15_mfnd_get_child_controller_command_permission_t.hpp │ │ │ ├── nvme_cdw15_mfnd_management_t.hpp │ │ │ ├── nvme_cdw15_mfnd_set_child_controller_command_permission_t.hpp │ │ │ ├── nvme_cdw15_read_write_t.hpp │ │ │ ├── nvme_cdw15_zone_append_t.hpp │ │ │ ├── nvme_command_dword0_t.hpp │ │ │ ├── nvme_command_status_t.hpp │ │ │ ├── nvme_command_t.hpp │ │ │ ├── nvme_completion_dw0_mfnd_operation_feature_t.hpp │ │ │ ├── nvme_identify_controller_data_t.hpp │ │ │ ├── nvme_identify_namespace_data_t.hpp │ │ │ ├── nvme_identify_specific_namespace_io_command_set_t.hpp │ │ │ ├── nvme_lba_format_t.hpp │ │ │ ├── nvme_lba_zone_format_t.hpp │ │ │ ├── nvme_power_state_desc_t.hpp │ │ │ ├── open_zone_t.hpp │ │ │ ├── partition_t.hpp │ │ │ ├── pause_resume_t.hpp │ │ │ ├── persistent_reserve_in_t.hpp │ │ │ ├── persistent_reserve_out_t.hpp │ │ │ ├── play_audio_msf_t.hpp │ │ │ ├── play_audio_t.hpp │ │ │ ├── play_cd_t.hpp │ │ │ ├── plxtr_read_cdda_t.hpp │ │ │ ├── port_configuration_information_t.hpp │ │ │ ├── port_registry_info_t.hpp │ │ │ ├── position_to_element_t.hpp │ │ │ ├── print_t.hpp │ │ │ ├── queue_tag_entry_t.hpp │ │ │ ├── queue_tag_list_header_t.hpp │ │ │ ├── queue_tag_list_t.hpp │ │ │ ├── raid_active_ref_context_t.hpp │ │ │ ├── raid_adapter_crypto_key_entry_t.hpp │ │ │ ├── raid_adapter_extension_t.hpp │ │ │ ├── raid_adapter_parameters_t.hpp │ │ │ ├── raid_adapter_pofx_t.hpp │ │ │ ├── raid_address_t.hpp │ │ │ ├── raid_bus_interface_t.hpp │ │ │ ├── raid_common_extension_t.hpp │ │ │ ├── raid_concurrent_channel_token_list_t.hpp │ │ │ ├── raid_crypto_key_table_t.hpp │ │ │ ├── raid_deferred_element_t.hpp │ │ │ ├── raid_deferred_header_t.hpp │ │ │ ├── raid_deferred_queue_t.hpp │ │ │ ├── raid_deferred_type_t.hpp │ │ │ ├── raid_dma_adapter_t.hpp │ │ │ ├── raid_driver_extension_t.hpp │ │ │ ├── raid_fixed_pool_t.hpp │ │ │ ├── raid_hw_device_ext_t.hpp │ │ │ ├── raid_io_resources_t.hpp │ │ │ ├── raid_log_control_t.hpp │ │ │ ├── raid_log_entry_t.hpp │ │ │ ├── raid_max_operational_power_source_t.hpp │ │ │ ├── raid_memory_region_t.hpp │ │ │ ├── raid_miniport_system_thread_context_t.hpp │ │ │ ├── raid_miniport_t.hpp │ │ │ ├── raid_object_type_t.hpp │ │ │ ├── raid_port_data_t.hpp │ │ │ ├── raid_power_context_t.hpp │ │ │ ├── raid_power_state_t.hpp │ │ │ ├── raid_redirection_support_t.hpp │ │ │ ├── raid_resource_list_t.hpp │ │ │ ├── raid_rpmb_capabilities_t.hpp │ │ │ ├── raid_shared_work_item_context_t.hpp │ │ │ ├── raid_system_power_t.hpp │ │ │ ├── raid_telemetry_error_entry_t.hpp │ │ │ ├── raid_telemetry_io_size_bucket_t.hpp │ │ │ ├── raid_telemetry_latency_bucket_t.hpp │ │ │ ├── raid_telemetry_node_counters_t.hpp │ │ │ ├── raid_telemetry_perf_bucket_t.hpp │ │ │ ├── raid_telemetry_sampled_error_log_t.hpp │ │ │ ├── raid_telemetry_unique_error_log_t.hpp │ │ │ ├── raid_unit_attributes_t.hpp │ │ │ ├── raid_unit_extension_per_processor_t.hpp │ │ │ ├── raid_unit_extension_t.hpp │ │ │ ├── raid_unit_pofx_t.hpp │ │ │ ├── raid_unit_qos_t.hpp │ │ │ ├── raid_unit_registry_parameters_t.hpp │ │ │ ├── raid_work_item_context_t.hpp │ │ │ ├── read12_t.hpp │ │ │ ├── read16_t.hpp │ │ │ ├── read_buffer_10_t.hpp │ │ │ ├── read_buffer_16_t.hpp │ │ │ ├── read_buffer_capacity_t.hpp │ │ │ ├── read_capacity16_t.hpp │ │ │ ├── read_cd_msf_t.hpp │ │ │ ├── read_cd_t.hpp │ │ │ ├── read_disk_information_t.hpp │ │ │ ├── read_dvd_structure_t.hpp │ │ │ ├── read_element_status_t.hpp │ │ │ ├── read_formatted_capacities_t.hpp │ │ │ ├── read_header_t.hpp │ │ │ ├── read_position_t.hpp │ │ │ ├── read_toc_t.hpp │ │ │ ├── read_track_information_t.hpp │ │ │ ├── receive_diagnostic_t.hpp │ │ │ ├── receive_token_information_t.hpp │ │ │ ├── remove_element_and_truncate_t.hpp │ │ │ ├── repair_track_t.hpp │ │ │ ├── report_key_t.hpp │ │ │ ├── report_luns_t.hpp │ │ │ ├── report_timestamp_t.hpp │ │ │ ├── report_zones_t.hpp │ │ │ ├── request_block_address_t.hpp │ │ │ ├── request_volume_element_address_t.hpp │ │ │ ├── reserve_track_rzone_t.hpp │ │ │ ├── reset_write_pointer_t.hpp │ │ │ ├── sanitize_t.hpp │ │ │ ├── scan_cd_t.hpp │ │ │ ├── scsi_adapter_control_status_t.hpp │ │ │ ├── scsi_adapter_control_type_t.hpp │ │ │ ├── scsi_device_type_t.hpp │ │ │ ├── scsi_notification_type_t.hpp │ │ │ ├── scsi_power_request_block_t.hpp │ │ │ ├── scsi_sense_descriptor_block_command_t.hpp │ │ │ ├── scsi_sense_descriptor_header_t.hpp │ │ │ ├── scsi_sense_descriptor_information_t.hpp │ │ │ ├── scsi_unit_control_status_t.hpp │ │ │ ├── scsi_unit_control_type_t.hpp │ │ │ ├── scsi_wmi_request_block_t.hpp │ │ │ ├── seek_block_t.hpp │ │ │ ├── seek_t.hpp │ │ │ ├── send_cue_sheet_t.hpp │ │ │ ├── send_diagnostic_t.hpp │ │ │ ├── send_dvd_structure_t.hpp │ │ │ ├── send_key_t.hpp │ │ │ ├── send_opc_information_t.hpp │ │ │ ├── send_volume_tag_t.hpp │ │ │ ├── sense_data_ex_t.hpp │ │ │ ├── sense_data_t.hpp │ │ │ ├── set_cd_speed_t.hpp │ │ │ ├── set_read_ahead_t.hpp │ │ │ ├── set_streaming_t.hpp │ │ │ ├── set_timestamp_t.hpp │ │ │ ├── smart_attribute_t.hpp │ │ │ ├── smart_threshold_t.hpp │ │ │ ├── space_tape_marks_t.hpp │ │ │ ├── srbex_data_bidirectional_t.hpp │ │ │ ├── srbex_data_nvme_command_type_t.hpp │ │ │ ├── srbex_data_scsi_cdb16_t.hpp │ │ │ ├── srbex_data_scsi_cdb32_t.hpp │ │ │ ├── srbex_data_scsi_cdb_var_t.hpp │ │ │ ├── srbex_data_t.hpp │ │ │ ├── srbex_data_wmi_t.hpp │ │ │ ├── srbexdatatype_t.hpp │ │ │ ├── start_stop_t.hpp │ │ │ ├── startio_performance_parameters_t.hpp │ │ │ ├── startio_token_t.hpp │ │ │ ├── stop_play_scan_t.hpp │ │ │ ├── stor_addr_btl8_t.hpp │ │ │ ├── stor_address_t.hpp │ │ │ ├── stor_alloc_diag_event_args_t.hpp │ │ │ ├── stor_alloc_el_record_args_t.hpp │ │ │ ├── stor_async_notify_context_t.hpp │ │ │ ├── stor_ata_device_id_t.hpp │ │ │ ├── stor_cleanup_tracing_args_t.hpp │ │ │ ├── stor_crypto_algorithm_id_t.hpp │ │ │ ├── stor_crypto_capabilities_data_t.hpp │ │ │ ├── stor_crypto_capability_t.hpp │ │ │ ├── stor_crypto_key_info_t.hpp │ │ │ ├── stor_crypto_key_size_t.hpp │ │ │ ├── stor_device_power_state_t.hpp │ │ │ ├── stor_device_reset_type_t.hpp │ │ │ ├── stor_dictionary_t.hpp │ │ │ ├── stor_dispatcher_header_t.hpp │ │ │ ├── stor_dma_version_t.hpp │ │ │ ├── stor_dma_width_t.hpp │ │ │ ├── stor_dpc_t.hpp │ │ │ ├── stor_dpc_watchdog_information_t.hpp │ │ │ ├── stor_event_association_enum_t.hpp │ │ │ ├── stor_event_queue_entry_t.hpp │ │ │ ├── stor_event_queue_node_t.hpp │ │ │ ├── stor_event_queue_t.hpp │ │ │ ├── stor_event_subqueue_t.hpp │ │ │ ├── stor_event_t.hpp │ │ │ ├── stor_event_type_t.hpp │ │ │ ├── stor_ext_delete_parameters_t.hpp │ │ │ ├── stor_ext_set_parameters_t.hpp │ │ │ ├── stor_free_diag_event_args_t.hpp │ │ │ ├── stor_free_el_record_args_t.hpp │ │ │ ├── stor_group_affinity_t.hpp │ │ │ ├── stor_hmb_range_t.hpp │ │ │ ├── stor_identity_t.hpp │ │ │ ├── stor_init_tracing_args_t.hpp │ │ │ ├── stor_init_unicode_string_args_t.hpp │ │ │ ├── stor_initgloballogger_args_t.hpp │ │ │ ├── stor_io_gateway_t.hpp │ │ │ ├── stor_io_priority_hint_t.hpp │ │ │ ├── stor_list_entry_t.hpp │ │ │ ├── stor_lock_handle_t.hpp │ │ │ ├── stor_locked_list_t.hpp │ │ │ ├── stor_log_diag_event_args_t.hpp │ │ │ ├── stor_log_event_details_t.hpp │ │ │ ├── stor_notification_info_t.hpp │ │ │ ├── stor_pofx_component_idle_state_t.hpp │ │ │ ├── stor_pofx_component_perf_set_t.hpp │ │ │ ├── stor_pofx_component_t.hpp │ │ │ ├── stor_pofx_component_v2_t.hpp │ │ │ ├── stor_pofx_device_t.hpp │ │ │ ├── stor_pofx_device_v2_t.hpp │ │ │ ├── stor_pofx_device_v3_t.hpp │ │ │ ├── stor_pofx_perf_state_t.hpp │ │ │ ├── stor_pofx_perf_state_type_t.hpp │ │ │ ├── stor_pofx_perf_state_unit_t.hpp │ │ │ ├── stor_power_action_t.hpp │ │ │ ├── stor_power_setting_notification_t.hpp │ │ │ ├── stor_request_info_v2_t.hpp │ │ │ ├── stor_rich_device_description_t.hpp │ │ │ ├── stor_rpmb_capabilities_data_t.hpp │ │ │ ├── stor_rpmb_frame_type_t.hpp │ │ │ ├── stor_scatter_gather_element_t.hpp │ │ │ ├── stor_scatter_gather_list_t.hpp │ │ │ ├── stor_scsi_address_t.hpp │ │ │ ├── stor_scsi_identity_t.hpp │ │ │ ├── stor_slist_entry_t.hpp │ │ │ ├── stor_slist_header_t.hpp │ │ │ ├── stor_spinlock_t.hpp │ │ │ ├── stor_synchronization_model_t.hpp │ │ │ ├── stor_telemetry_category_t.hpp │ │ │ ├── stor_thread_priority_t.hpp │ │ │ ├── stor_timer_context_t.hpp │ │ │ ├── stor_unicode_string_t.hpp │ │ │ ├── stor_unit_attributes_t.hpp │ │ │ ├── stor_wmi_querytraceinfo_args_t.hpp │ │ │ ├── stor_wmi_regcontrol_args_t.hpp │ │ │ ├── stor_wmi_trace_message_args_t.hpp │ │ │ ├── stor_write_el_record_args_t.hpp │ │ │ ├── storage_bus_type_t.hpp │ │ │ ├── storage_dump_action_t.hpp │ │ │ ├── storage_dump_event_t.hpp │ │ │ ├── storage_dump_info_t.hpp │ │ │ ├── storage_dump_usage_t.hpp │ │ │ ├── storage_errorlog_packet_t.hpp │ │ │ ├── storage_indicator_state_t.hpp │ │ │ ├── storage_powerup_reason_type_t.hpp │ │ │ ├── storage_request_block_t.hpp │ │ │ ├── storage_rpmb_frame_type_t.hpp │ │ │ ├── storage_set_indicator_t.hpp │ │ │ ├── storage_trace_notify_type_t.hpp │ │ │ ├── storport_capture_livedump_t.hpp │ │ │ ├── storport_capture_livedump_type_t.hpp │ │ │ ├── storport_context_t.hpp │ │ │ ├── storport_dump_adapter_data_t.hpp │ │ │ ├── storport_etw_event_channel_t.hpp │ │ │ ├── storport_etw_event_opcode_t.hpp │ │ │ ├── storport_etw_level_t.hpp │ │ │ ├── storport_extended_functions_t.hpp │ │ │ ├── storport_feature_type_t.hpp │ │ │ ├── storport_function_code_t.hpp │ │ │ ├── storport_livedump_data_type_t.hpp │ │ │ ├── storport_livedump_issue_type_t.hpp │ │ │ ├── storport_query_configuration_type_t.hpp │ │ │ ├── storport_telemetry_event_t.hpp │ │ │ ├── subchannel_t.hpp │ │ │ ├── synchronize_cache10_t.hpp │ │ │ ├── synchronize_cache16_t.hpp │ │ │ ├── telemetry_smart_struct_t.hpp │ │ │ ├── telemetry_unit_extension_t.hpp │ │ │ ├── token_operation_t.hpp │ │ │ ├── two_byte_t.hpp │ │ │ ├── unit_control_list_t.hpp │ │ │ ├── unmap_t.hpp │ │ │ ├── verify16_t.hpp │ │ │ ├── vpd_enumerator_t.hpp │ │ │ ├── vpd_identification_descriptor_t.hpp │ │ │ ├── vpd_identification_page_t.hpp │ │ │ ├── wnode_header_t.hpp │ │ │ ├── write12_t.hpp │ │ │ ├── write16_t.hpp │ │ │ ├── write_buffer_t.hpp │ │ │ └── write_tape_marks_t.hpp │ │ ├── tag/ │ │ │ ├── abortpath_t.hpp │ │ │ ├── accel_t.hpp │ │ │ ├── accesstimeout_t.hpp │ │ │ ├── acl_descriptor_t.hpp │ │ │ ├── actctx_section_keyed_data_2600_t.hpp │ │ │ ├── actctx_section_keyed_data_assembly_metadata_t.hpp │ │ │ ├── actctx_section_keyed_data_t.hpp │ │ │ ├── actctxa_t.hpp │ │ │ ├── actctxw_t.hpp │ │ │ ├── activation_context_info_data_t.hpp │ │ │ ├── activation_flags_t.hpp │ │ │ ├── activation_stage_t.hpp │ │ │ ├── activationtype_t.hpp │ │ │ ├── advf_t.hpp │ │ │ ├── alttabinfo_t.hpp │ │ │ ├── animationinfo_t.hpp │ │ │ ├── apphelp_data_ex_t.hpp │ │ │ ├── apphelp_data_t.hpp │ │ │ ├── apphelpinformationclass_t.hpp │ │ │ ├── application_type_t.hpp │ │ │ ├── ar_state_t.hpp │ │ │ ├── arraydesc_t.hpp │ │ │ ├── attrinfo_t.hpp │ │ │ ├── audiodescription_t.hpp │ │ │ ├── authenticateinfo_t.hpp │ │ │ ├── axeslista_t.hpp │ │ │ ├── axeslistw_t.hpp │ │ │ ├── axisinfoa_t.hpp │ │ │ ├── axisinfow_t.hpp │ │ │ ├── binary_param_t.hpp │ │ │ ├── bind_flags_t.hpp │ │ │ ├── bind_opts2_t.hpp │ │ │ ├── bind_opts3_t.hpp │ │ │ ├── bind_opts_t.hpp │ │ │ ├── bindinfo_t.hpp │ │ │ ├── bindptr_t.hpp │ │ │ ├── bindspeed_t.hpp │ │ │ ├── bindstatus_t.hpp │ │ │ ├── bindstring_t.hpp │ │ │ ├── bitmap_t.hpp │ │ │ ├── bitmapcoreheader_t.hpp │ │ │ ├── bitmapcoreinfo_t.hpp │ │ │ ├── bitmapfileheader_t.hpp │ │ │ ├── bitmapinfo_t.hpp │ │ │ ├── bitmapinfoheader_t.hpp │ │ │ ├── blob_t.hpp │ │ │ ├── bstrblob_t.hpp │ │ │ ├── byrefhdr_t.hpp │ │ │ ├── byvalhdr_t.hpp │ │ │ ├── c_hit_test_state/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── c_interface_proxy_header_t.hpp │ │ │ ├── c_interface_proxy_vtbl_t.hpp │ │ │ ├── c_interface_stub_header_t.hpp │ │ │ ├── c_interface_stub_vtbl_t.hpp │ │ │ ├── c_std_async_proxy_buffer_t.hpp │ │ │ ├── c_std_async_stub_buffer_t.hpp │ │ │ ├── c_std_proxy_buffer2_t.hpp │ │ │ ├── c_std_proxy_buffer_t.hpp │ │ │ ├── c_std_ps_factory_buffer_t.hpp │ │ │ ├── c_std_stub_buffer2_t.hpp │ │ │ ├── c_std_stub_buffer_t.hpp │ │ │ ├── cabool_t.hpp │ │ │ ├── cabstr_t.hpp │ │ │ ├── cabstrblob_t.hpp │ │ │ ├── cac_t.hpp │ │ │ ├── caclipdata_t.hpp │ │ │ ├── caclsid_t.hpp │ │ │ ├── cacy_t.hpp │ │ │ ├── cadate_t.hpp │ │ │ ├── cadbl_t.hpp │ │ │ ├── cafiletime_t.hpp │ │ │ ├── caflt_t.hpp │ │ │ ├── cah_t.hpp │ │ │ ├── cai_t.hpp │ │ │ ├── cal_t.hpp │ │ │ ├── call_type_t.hpp │ │ │ ├── callcategory_t.hpp │ │ │ ├── callconv_t.hpp │ │ │ ├── callstate_t.hpp │ │ │ ├── calltype_t.hpp │ │ │ ├── calpstr_t.hpp │ │ │ ├── calpwstr_t.hpp │ │ │ ├── candidateform_t.hpp │ │ │ ├── candidatelist_t.hpp │ │ │ ├── capropvariant_t.hpp │ │ │ ├── cascode_t.hpp │ │ │ ├── caub_t.hpp │ │ │ ├── cauh_t.hpp │ │ │ ├── caui_t.hpp │ │ │ ├── caul_t.hpp │ │ │ ├── cbt_createwnda_t.hpp │ │ │ ├── cbt_createwndw_t.hpp │ │ │ ├── cbtactivatestruct_t.hpp │ │ │ ├── ccf_flags_t.hpp │ │ │ ├── cf_entry_t.hpp │ │ │ ├── changefilterstruct_t.hpp │ │ │ ├── changekind_t.hpp │ │ │ ├── channel_wrapper_t.hpp │ │ │ ├── charsetinfo_t.hpp │ │ │ ├── ciexyz_t.hpp │ │ │ ├── cleanlocalstorage_t.hpp │ │ │ ├── clientcreatestruct_t.hpp │ │ │ ├── clipdata_t.hpp │ │ │ ├── clsctx_t.hpp │ │ │ ├── cmlflags_t.hpp │ │ │ ├── co_module_type_t.hpp │ │ │ ├── codebasehold_t.hpp │ │ │ ├── coinit_t.hpp │ │ │ ├── coinitbase_t.hpp │ │ │ ├── coinitcor_t.hpp │ │ │ ├── coinitee_t.hpp │ │ │ ├── coloradjustment_t.hpp │ │ │ ├── colorcorrectpalette_t.hpp │ │ │ ├── colormatchtotarget_t.hpp │ │ │ ├── com_call_data_t.hpp │ │ │ ├── comboboxinfo_t.hpp │ │ │ ├── comcalltype_t.hpp │ │ │ ├── cometwdelayflags_t.hpp │ │ │ ├── compareitemstruct_t.hpp │ │ │ ├── compositionform_t.hpp │ │ │ ├── comsd_t.hpp │ │ │ ├── comversion_t.hpp │ │ │ ├── connectdata_t.hpp │ │ │ ├── context_property_t.hpp │ │ │ ├── context_stack_node_t.hpp │ │ │ ├── contextevent_t.hpp │ │ │ ├── contextheader_t.hpp │ │ │ ├── contexts_t.hpp │ │ │ ├── copydatastruct_t.hpp │ │ │ ├── couninitee_t.hpp │ │ │ ├── cowait_flags_t.hpp │ │ │ ├── cpflags_t.hpp │ │ │ ├── createstructa_t.hpp │ │ │ ├── createstructw_t.hpp │ │ │ ├── csplatform_t.hpp │ │ │ ├── ctxcommonhdr_t.hpp │ │ │ ├── ctxversion_t.hpp │ │ │ ├── cursorinfo_t.hpp │ │ │ ├── cursorshape_t.hpp │ │ │ ├── custdata_t.hpp │ │ │ ├── custdataitem_t.hpp │ │ │ ├── custom_header_t.hpp │ │ │ ├── custom_opaque_data_t.hpp │ │ │ ├── custom_priv_resolver_info_t.hpp │ │ │ ├── custom_priv_scm_info_t.hpp │ │ │ ├── cwpretstruct_t.hpp │ │ │ ├── cwpstruct_t.hpp │ │ │ ├── cy_t.hpp │ │ │ ├── datadir_t.hpp │ │ │ ├── dataelement_t.hpp │ │ │ ├── datainfo_t.hpp │ │ │ ├── dcom_call_state_t.hpp │ │ │ ├── dcom_endpoint_t.hpp │ │ │ ├── dde_class_info_t.hpp │ │ │ ├── debughookinfo_t.hpp │ │ │ ├── dec_t.hpp │ │ │ ├── deleteitemstruct_t.hpp │ │ │ ├── desckind_t.hpp │ │ │ ├── designvector_t.hpp │ │ │ ├── dibsection_t.hpp │ │ │ ├── dimension_t.hpp │ │ │ ├── discardcache_t.hpp │ │ │ ├── disctype_t.hpp │ │ │ ├── dispparams_t.hpp │ │ │ ├── dom_lock/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── dom_node_type_t.hpp │ │ │ ├── dpicontextinfo_t.hpp │ │ │ ├── dpihostingbehaviorinfo_t.hpp │ │ │ ├── drawitemstruct_t.hpp │ │ │ ├── drawtextparams_t.hpp │ │ │ ├── dropstruct_t.hpp │ │ │ ├── dualstringarray_t.hpp │ │ │ ├── dvaspect_t.hpp │ │ │ ├── dvtargetdevice_t.hpp │ │ │ ├── elemdesc_t.hpp │ │ │ ├── element_t.hpp │ │ │ ├── emr_t.hpp │ │ │ ├── emralphablend_t.hpp │ │ │ ├── emranglearc_t.hpp │ │ │ ├── emrarc_t.hpp │ │ │ ├── emrbitblt_t.hpp │ │ │ ├── emrcreatebrushindirect_t.hpp │ │ │ ├── emrcreatecolorspace_t.hpp │ │ │ ├── emrcreatecolorspacew_t.hpp │ │ │ ├── emrcreatedibpatternbrushpt_t.hpp │ │ │ ├── emrcreatemonobrush_t.hpp │ │ │ ├── emrcreatepalette_t.hpp │ │ │ ├── emrcreatepen_t.hpp │ │ │ ├── emrellipse_t.hpp │ │ │ ├── emreof_t.hpp │ │ │ ├── emrexcludecliprect_t.hpp │ │ │ ├── emrextcreatefontindirectw_t.hpp │ │ │ ├── emrextcreatepen_t.hpp │ │ │ ├── emrextescape_t.hpp │ │ │ ├── emrextfloodfill_t.hpp │ │ │ ├── emrextselectcliprgn_t.hpp │ │ │ ├── emrexttextouta_t.hpp │ │ │ ├── emrfillpath_t.hpp │ │ │ ├── emrfillrgn_t.hpp │ │ │ ├── emrformat_t.hpp │ │ │ ├── emrframergn_t.hpp │ │ │ ├── emrgdicomment_t.hpp │ │ │ ├── emrglsboundedrecord_t.hpp │ │ │ ├── emrglsrecord_t.hpp │ │ │ ├── emrgradientfill_t.hpp │ │ │ ├── emrinvertrgn_t.hpp │ │ │ ├── emrlineto_t.hpp │ │ │ ├── emrmaskblt_t.hpp │ │ │ ├── emrmodifyworldtransform_t.hpp │ │ │ ├── emrnamedescape_t.hpp │ │ │ ├── emroffsetcliprgn_t.hpp │ │ │ ├── emrpixelformat_t.hpp │ │ │ ├── emrplgblt_t.hpp │ │ │ ├── emrpolydraw16_t.hpp │ │ │ ├── emrpolydraw_t.hpp │ │ │ ├── emrpolyline16_t.hpp │ │ │ ├── emrpolyline_t.hpp │ │ │ ├── emrpolypolyline16_t.hpp │ │ │ ├── emrpolypolyline_t.hpp │ │ │ ├── emrpolytextouta_t.hpp │ │ │ ├── emrresizepalette_t.hpp │ │ │ ├── emrrestoredc_t.hpp │ │ │ ├── emrroundrect_t.hpp │ │ │ ├── emrscaleviewportextex_t.hpp │ │ │ ├── emrselectclippath_t.hpp │ │ │ ├── emrselectobject_t.hpp │ │ │ ├── emrselectpalette_t.hpp │ │ │ ├── emrsetarcdirection_t.hpp │ │ │ ├── emrsetcoloradjustment_t.hpp │ │ │ ├── emrsetcolorspace_t.hpp │ │ │ ├── emrsetdibitstodevice_t.hpp │ │ │ ├── emrseticmprofile_t.hpp │ │ │ ├── emrsetmapperflags_t.hpp │ │ │ ├── emrsetmiterlimit_t.hpp │ │ │ ├── emrsetpaletteentries_t.hpp │ │ │ ├── emrsetpixelv_t.hpp │ │ │ ├── emrsettextcolor_t.hpp │ │ │ ├── emrsetviewportextex_t.hpp │ │ │ ├── emrsetviewportorgex_t.hpp │ │ │ ├── emrsetworldtransform_t.hpp │ │ │ ├── emrstretchblt_t.hpp │ │ │ ├── emrstretchdibits_t.hpp │ │ │ ├── emrtext_t.hpp │ │ │ ├── emrtransparentblt_t.hpp │ │ │ ├── enhmetaheader_t.hpp │ │ │ ├── enhmetarecord_t.hpp │ │ │ ├── entry_header_t.hpp │ │ │ ├── enumlogfonta_t.hpp │ │ │ ├── enumlogfontexa_t.hpp │ │ │ ├── enumlogfontexdva_t.hpp │ │ │ ├── enumlogfontexdvw_t.hpp │ │ │ ├── enumlogfontexw_t.hpp │ │ │ ├── enumlogfontw_t.hpp │ │ │ ├── enumtextmetrica_t.hpp │ │ │ ├── enumtextmetricw_t.hpp │ │ │ ├── enumuilang_t.hpp │ │ │ ├── envoydata_t.hpp │ │ │ ├── eole_authentication_capabilities_t.hpp │ │ │ ├── event_log_modes_t.hpp │ │ │ ├── event_log_sd_t.hpp │ │ │ ├── eventmsg_t.hpp │ │ │ ├── excepinfo_t.hpp │ │ │ ├── expr_token_t.hpp │ │ │ ├── extconn_t.hpp │ │ │ ├── extended_error_param_types_t.hpp │ │ │ ├── extent_mode_t.hpp │ │ │ ├── extlogfonta_t.hpp │ │ │ ├── extlogfontw_t.hpp │ │ │ ├── extlogpen32_t.hpp │ │ │ ├── extlogpen_t.hpp │ │ │ ├── fast_copy_luid_access_t.hpp │ │ │ ├── feedback_type_t.hpp │ │ │ ├── filterkeys_t.hpp │ │ │ ├── focoxid_t.hpp │ │ │ ├── fontsignature_t.hpp │ │ │ ├── formatetc_t.hpp │ │ │ ├── funcdesc_t.hpp │ │ │ ├── funcflags_t.hpp │ │ │ ├── funckind_t.hpp │ │ │ ├── gcp_resultsa_t.hpp │ │ │ ├── gcp_resultsw_t.hpp │ │ │ ├── gestureconfig_t.hpp │ │ │ ├── gestureinfo_t.hpp │ │ │ ├── gesturenotifystruct_t.hpp │ │ │ ├── globalopt_eh_values_t.hpp │ │ │ ├── globalopt_properties_t.hpp │ │ │ ├── globalopt_ro_flags_t.hpp │ │ │ ├── globalopt_rpctp_values_t.hpp │ │ │ ├── globalopt_unmarshaling_policy_values_t.hpp │ │ │ ├── glyphset_t.hpp │ │ │ ├── guithreadinfo_t.hpp │ │ │ ├── handedness_t.hpp │ │ │ ├── handletable_t.hpp │ │ │ ├── hardwarehookstruct_t.hpp │ │ │ ├── hardwareinput_t.hpp │ │ │ ├── helpinfo_t.hpp │ │ │ ├── helpwininfoa_t.hpp │ │ │ ├── helpwininfow_t.hpp │ │ │ ├── highcontrasta_t.hpp │ │ │ ├── highcontrastw_t.hpp │ │ │ ├── hit_logging_info_t.hpp │ │ │ ├── hookapi_t.hpp │ │ │ ├── hookapiex_t.hpp │ │ │ ├── hostdllflags_t.hpp │ │ │ ├── hw_profile_infoa_t.hpp │ │ │ ├── hw_profile_infow_t.hpp │ │ │ ├── i_face_svr_refs_t.hpp │ │ │ ├── i_rpc_proxy_callback_interface_t.hpp │ │ │ ├── icexyztriple_t.hpp │ │ │ ├── iconmetricsa_t.hpp │ │ │ ├── iconmetricsw_t.hpp │ │ │ ├── idldesc_t.hpp │ │ │ ├── idlflags_t.hpp │ │ │ ├── imecharposition_t.hpp │ │ │ ├── imemenuiteminfoa_t.hpp │ │ │ ├── imemenuiteminfow_t.hpp │ │ │ ├── incoming_call_data_t.hpp │ │ │ ├── initialize_spy_node_t.hpp │ │ │ ├── input_injection_value_t.hpp │ │ │ ├── input_message_device_type_t.hpp │ │ │ ├── input_message_origin_id_t.hpp │ │ │ ├── input_message_source_t.hpp │ │ │ ├── input_routing_info_t.hpp │ │ │ ├── input_t.hpp │ │ │ ├── input_transform_t.hpp │ │ │ ├── installmessage_t.hpp │ │ │ ├── installuilevel_t.hpp │ │ │ ├── instance_info_data_t.hpp │ │ │ ├── instantiation_info_data_t.hpp │ │ │ ├── interface_data_t.hpp │ │ │ ├── interfacedata_t.hpp │ │ │ ├── interfaceinfo_t.hpp │ │ │ ├── internetfeaturelist_t.hpp │ │ │ ├── invokekind_t.hpp │ │ │ ├── ipid_entry_t.hpp │ │ │ ├── ipid_tmp_t.hpp │ │ │ ├── ipidflags_t.hpp │ │ │ ├── kbdllhookstruct_t.hpp │ │ │ ├── kerningpair_t.hpp │ │ │ ├── keybdinput_t.hpp │ │ │ ├── known_system_ii_ds_t.hpp │ │ │ ├── lastinputinfo_t.hpp │ │ │ ├── layerplanedescriptor_t.hpp │ │ │ ├── lc_id_t.hpp │ │ │ ├── libflags_t.hpp │ │ │ ├── local_server_type_t.hpp │ │ │ ├── localesignature_t.hpp │ │ │ ├── localflag_t.hpp │ │ │ ├── location_info_data_t.hpp │ │ │ ├── locktype_t.hpp │ │ │ ├── logbrush32_t.hpp │ │ │ ├── logbrush_t.hpp │ │ │ ├── logcolorspacea_t.hpp │ │ │ ├── logcolorspacew_t.hpp │ │ │ ├── logfonta_t.hpp │ │ │ ├── logfontw_t.hpp │ │ │ ├── logpalette_t.hpp │ │ │ ├── logpen_t.hpp │ │ │ ├── m_interface_pointer_t.hpp │ │ │ ├── magic/ │ │ │ │ ├── abortpath_t.end.hpp │ │ │ │ ├── abortpath_t.start.hpp │ │ │ │ ├── accel_t.end.hpp │ │ │ │ ├── accel_t.start.hpp │ │ │ │ ├── accesstimeout_t.end.hpp │ │ │ │ ├── accesstimeout_t.start.hpp │ │ │ │ ├── acl_descriptor_t.end.hpp │ │ │ │ ├── acl_descriptor_t.start.hpp │ │ │ │ ├── actctx_section_keyed_data_2600_t.end.hpp │ │ │ │ ├── actctx_section_keyed_data_2600_t.start.hpp │ │ │ │ ├── actctx_section_keyed_data_assembly_metadata_t.end.hpp │ │ │ │ ├── actctx_section_keyed_data_assembly_metadata_t.start.hpp │ │ │ │ ├── actctx_section_keyed_data_t.end.hpp │ │ │ │ ├── actctx_section_keyed_data_t.start.hpp │ │ │ │ ├── actctxa_t.end.hpp │ │ │ │ ├── actctxa_t.start.hpp │ │ │ │ ├── actctxw_t.end.hpp │ │ │ │ ├── actctxw_t.start.hpp │ │ │ │ ├── activation_context_info_data_t.end.hpp │ │ │ │ ├── activation_context_info_data_t.start.hpp │ │ │ │ ├── alttabinfo_t.end.hpp │ │ │ │ ├── alttabinfo_t.start.hpp │ │ │ │ ├── animationinfo_t.end.hpp │ │ │ │ ├── animationinfo_t.start.hpp │ │ │ │ ├── apphelp_data_ex_t.end.hpp │ │ │ │ ├── apphelp_data_ex_t.start.hpp │ │ │ │ ├── apphelp_data_t.end.hpp │ │ │ │ ├── apphelp_data_t.start.hpp │ │ │ │ ├── arraydesc_t.end.hpp │ │ │ │ ├── arraydesc_t.start.hpp │ │ │ │ ├── attrinfo_t.end.hpp │ │ │ │ ├── attrinfo_t.start.hpp │ │ │ │ ├── audiodescription_t.end.hpp │ │ │ │ ├── audiodescription_t.start.hpp │ │ │ │ ├── authenticateinfo_t.end.hpp │ │ │ │ ├── authenticateinfo_t.start.hpp │ │ │ │ ├── axeslista_t.end.hpp │ │ │ │ ├── axeslista_t.start.hpp │ │ │ │ ├── axeslistw_t.end.hpp │ │ │ │ ├── axeslistw_t.start.hpp │ │ │ │ ├── axisinfoa_t.end.hpp │ │ │ │ ├── axisinfoa_t.start.hpp │ │ │ │ ├── axisinfow_t.end.hpp │ │ │ │ ├── axisinfow_t.start.hpp │ │ │ │ ├── binary_param_t.end.hpp │ │ │ │ ├── binary_param_t.start.hpp │ │ │ │ ├── bind_opts2_t.end.hpp │ │ │ │ ├── bind_opts2_t.start.hpp │ │ │ │ ├── bind_opts3_t.end.hpp │ │ │ │ ├── bind_opts3_t.start.hpp │ │ │ │ ├── bind_opts_t.end.hpp │ │ │ │ ├── bind_opts_t.start.hpp │ │ │ │ ├── bindinfo_t.end.hpp │ │ │ │ ├── bindinfo_t.start.hpp │ │ │ │ ├── bindptr_t.end.hpp │ │ │ │ ├── bindptr_t.start.hpp │ │ │ │ ├── bitmap_t.end.hpp │ │ │ │ ├── bitmap_t.start.hpp │ │ │ │ ├── bitmapcoreheader_t.end.hpp │ │ │ │ ├── bitmapcoreheader_t.start.hpp │ │ │ │ ├── bitmapcoreinfo_t.end.hpp │ │ │ │ ├── bitmapcoreinfo_t.start.hpp │ │ │ │ ├── bitmapfileheader_t.end.hpp │ │ │ │ ├── bitmapfileheader_t.start.hpp │ │ │ │ ├── bitmapinfo_t.end.hpp │ │ │ │ ├── bitmapinfo_t.start.hpp │ │ │ │ ├── bitmapinfoheader_t.end.hpp │ │ │ │ ├── bitmapinfoheader_t.start.hpp │ │ │ │ ├── blob_t.end.hpp │ │ │ │ ├── blob_t.start.hpp │ │ │ │ ├── bstrblob_t.end.hpp │ │ │ │ ├── bstrblob_t.start.hpp │ │ │ │ ├── byrefhdr_t.end.hpp │ │ │ │ ├── byrefhdr_t.start.hpp │ │ │ │ ├── byvalhdr_t.end.hpp │ │ │ │ ├── byvalhdr_t.start.hpp │ │ │ │ ├── c_interface_proxy_header_t.end.hpp │ │ │ │ ├── c_interface_proxy_header_t.start.hpp │ │ │ │ ├── c_interface_proxy_vtbl_t.end.hpp │ │ │ │ ├── c_interface_proxy_vtbl_t.start.hpp │ │ │ │ ├── c_interface_stub_header_t.end.hpp │ │ │ │ ├── c_interface_stub_header_t.start.hpp │ │ │ │ ├── c_interface_stub_vtbl_t.end.hpp │ │ │ │ ├── c_interface_stub_vtbl_t.start.hpp │ │ │ │ ├── c_std_async_proxy_buffer_t.end.hpp │ │ │ │ ├── c_std_async_proxy_buffer_t.start.hpp │ │ │ │ ├── c_std_async_stub_buffer_t.end.hpp │ │ │ │ ├── c_std_async_stub_buffer_t.start.hpp │ │ │ │ ├── c_std_proxy_buffer2_t.end.hpp │ │ │ │ ├── c_std_proxy_buffer2_t.start.hpp │ │ │ │ ├── c_std_proxy_buffer_t.end.hpp │ │ │ │ ├── c_std_proxy_buffer_t.start.hpp │ │ │ │ ├── c_std_ps_factory_buffer_t.end.hpp │ │ │ │ ├── c_std_ps_factory_buffer_t.start.hpp │ │ │ │ ├── c_std_stub_buffer2_t.end.hpp │ │ │ │ ├── c_std_stub_buffer2_t.start.hpp │ │ │ │ ├── c_std_stub_buffer_t.end.hpp │ │ │ │ ├── c_std_stub_buffer_t.start.hpp │ │ │ │ ├── cabool_t.end.hpp │ │ │ │ ├── cabool_t.start.hpp │ │ │ │ ├── cabstr_t.end.hpp │ │ │ │ ├── cabstr_t.start.hpp │ │ │ │ ├── cabstrblob_t.end.hpp │ │ │ │ ├── cabstrblob_t.start.hpp │ │ │ │ ├── cac_t.end.hpp │ │ │ │ ├── cac_t.start.hpp │ │ │ │ ├── caclipdata_t.end.hpp │ │ │ │ ├── caclipdata_t.start.hpp │ │ │ │ ├── caclsid_t.end.hpp │ │ │ │ ├── caclsid_t.start.hpp │ │ │ │ ├── cacy_t.end.hpp │ │ │ │ ├── cacy_t.start.hpp │ │ │ │ ├── cadate_t.end.hpp │ │ │ │ ├── cadate_t.start.hpp │ │ │ │ ├── cadbl_t.end.hpp │ │ │ │ ├── cadbl_t.start.hpp │ │ │ │ ├── cafiletime_t.end.hpp │ │ │ │ ├── cafiletime_t.start.hpp │ │ │ │ ├── caflt_t.end.hpp │ │ │ │ ├── caflt_t.start.hpp │ │ │ │ ├── cah_t.end.hpp │ │ │ │ ├── cah_t.start.hpp │ │ │ │ ├── cai_t.end.hpp │ │ │ │ ├── cai_t.start.hpp │ │ │ │ ├── cal_t.end.hpp │ │ │ │ ├── cal_t.start.hpp │ │ │ │ ├── calpstr_t.end.hpp │ │ │ │ ├── calpstr_t.start.hpp │ │ │ │ ├── calpwstr_t.end.hpp │ │ │ │ ├── calpwstr_t.start.hpp │ │ │ │ ├── candidateform_t.end.hpp │ │ │ │ ├── candidateform_t.start.hpp │ │ │ │ ├── candidatelist_t.end.hpp │ │ │ │ ├── candidatelist_t.start.hpp │ │ │ │ ├── capropvariant_t.end.hpp │ │ │ │ ├── capropvariant_t.start.hpp │ │ │ │ ├── cascode_t.end.hpp │ │ │ │ ├── cascode_t.start.hpp │ │ │ │ ├── caub_t.end.hpp │ │ │ │ ├── caub_t.start.hpp │ │ │ │ ├── cauh_t.end.hpp │ │ │ │ ├── cauh_t.start.hpp │ │ │ │ ├── caui_t.end.hpp │ │ │ │ ├── caui_t.start.hpp │ │ │ │ ├── caul_t.end.hpp │ │ │ │ ├── caul_t.start.hpp │ │ │ │ ├── cbt_createwnda_t.end.hpp │ │ │ │ ├── cbt_createwnda_t.start.hpp │ │ │ │ ├── cbt_createwndw_t.end.hpp │ │ │ │ ├── cbt_createwndw_t.start.hpp │ │ │ │ ├── cbtactivatestruct_t.end.hpp │ │ │ │ ├── cbtactivatestruct_t.start.hpp │ │ │ │ ├── cf_entry_t.end.hpp │ │ │ │ ├── cf_entry_t.start.hpp │ │ │ │ ├── changefilterstruct_t.end.hpp │ │ │ │ ├── changefilterstruct_t.start.hpp │ │ │ │ ├── channel_wrapper_t.end.hpp │ │ │ │ ├── channel_wrapper_t.start.hpp │ │ │ │ ├── charsetinfo_t.end.hpp │ │ │ │ ├── charsetinfo_t.start.hpp │ │ │ │ ├── ciexyz_t.end.hpp │ │ │ │ ├── ciexyz_t.start.hpp │ │ │ │ ├── cleanlocalstorage_t.end.hpp │ │ │ │ ├── cleanlocalstorage_t.start.hpp │ │ │ │ ├── clientcreatestruct_t.end.hpp │ │ │ │ ├── clientcreatestruct_t.start.hpp │ │ │ │ ├── clipdata_t.end.hpp │ │ │ │ ├── clipdata_t.start.hpp │ │ │ │ ├── codebasehold_t.end.hpp │ │ │ │ ├── codebasehold_t.start.hpp │ │ │ │ ├── coloradjustment_t.end.hpp │ │ │ │ ├── coloradjustment_t.start.hpp │ │ │ │ ├── colorcorrectpalette_t.end.hpp │ │ │ │ ├── colorcorrectpalette_t.start.hpp │ │ │ │ ├── colormatchtotarget_t.end.hpp │ │ │ │ ├── colormatchtotarget_t.start.hpp │ │ │ │ ├── com_call_data_t.end.hpp │ │ │ │ ├── com_call_data_t.start.hpp │ │ │ │ ├── comboboxinfo_t.end.hpp │ │ │ │ ├── comboboxinfo_t.start.hpp │ │ │ │ ├── compareitemstruct_t.end.hpp │ │ │ │ ├── compareitemstruct_t.start.hpp │ │ │ │ ├── compositionform_t.end.hpp │ │ │ │ ├── compositionform_t.start.hpp │ │ │ │ ├── comversion_t.end.hpp │ │ │ │ ├── comversion_t.start.hpp │ │ │ │ ├── connectdata_t.end.hpp │ │ │ │ ├── connectdata_t.start.hpp │ │ │ │ ├── context_property_t.end.hpp │ │ │ │ ├── context_property_t.start.hpp │ │ │ │ ├── context_stack_node_t.end.hpp │ │ │ │ ├── context_stack_node_t.start.hpp │ │ │ │ ├── contextheader_t.end.hpp │ │ │ │ ├── contextheader_t.start.hpp │ │ │ │ ├── contexts_t.end.hpp │ │ │ │ ├── contexts_t.start.hpp │ │ │ │ ├── copydatastruct_t.end.hpp │ │ │ │ ├── copydatastruct_t.start.hpp │ │ │ │ ├── createstructa_t.end.hpp │ │ │ │ ├── createstructa_t.start.hpp │ │ │ │ ├── createstructw_t.end.hpp │ │ │ │ ├── createstructw_t.start.hpp │ │ │ │ ├── csplatform_t.end.hpp │ │ │ │ ├── csplatform_t.start.hpp │ │ │ │ ├── ctxcommonhdr_t.end.hpp │ │ │ │ ├── ctxcommonhdr_t.start.hpp │ │ │ │ ├── ctxversion_t.end.hpp │ │ │ │ ├── ctxversion_t.start.hpp │ │ │ │ ├── cursorinfo_t.end.hpp │ │ │ │ ├── cursorinfo_t.start.hpp │ │ │ │ ├── cursorshape_t.end.hpp │ │ │ │ ├── cursorshape_t.start.hpp │ │ │ │ ├── custdata_t.end.hpp │ │ │ │ ├── custdata_t.start.hpp │ │ │ │ ├── custdataitem_t.end.hpp │ │ │ │ ├── custdataitem_t.start.hpp │ │ │ │ ├── custom_header_t.end.hpp │ │ │ │ ├── custom_header_t.start.hpp │ │ │ │ ├── custom_opaque_data_t.end.hpp │ │ │ │ ├── custom_opaque_data_t.start.hpp │ │ │ │ ├── custom_priv_resolver_info_t.end.hpp │ │ │ │ ├── custom_priv_resolver_info_t.start.hpp │ │ │ │ ├── custom_priv_scm_info_t.end.hpp │ │ │ │ ├── custom_priv_scm_info_t.start.hpp │ │ │ │ ├── cwpretstruct_t.end.hpp │ │ │ │ ├── cwpretstruct_t.start.hpp │ │ │ │ ├── cwpstruct_t.end.hpp │ │ │ │ ├── cwpstruct_t.start.hpp │ │ │ │ ├── cy_t.end.hpp │ │ │ │ ├── cy_t.start.hpp │ │ │ │ ├── dataelement_t.end.hpp │ │ │ │ ├── dataelement_t.start.hpp │ │ │ │ ├── datainfo_t.end.hpp │ │ │ │ ├── datainfo_t.start.hpp │ │ │ │ ├── dcom_endpoint_t.end.hpp │ │ │ │ ├── dcom_endpoint_t.start.hpp │ │ │ │ ├── dde_class_info_t.end.hpp │ │ │ │ ├── dde_class_info_t.start.hpp │ │ │ │ ├── debughookinfo_t.end.hpp │ │ │ │ ├── debughookinfo_t.start.hpp │ │ │ │ ├── dec_t.end.hpp │ │ │ │ ├── dec_t.start.hpp │ │ │ │ ├── deleteitemstruct_t.end.hpp │ │ │ │ ├── deleteitemstruct_t.start.hpp │ │ │ │ ├── designvector_t.end.hpp │ │ │ │ ├── designvector_t.start.hpp │ │ │ │ ├── dibsection_t.end.hpp │ │ │ │ ├── dibsection_t.start.hpp │ │ │ │ ├── dispparams_t.end.hpp │ │ │ │ ├── dispparams_t.start.hpp │ │ │ │ ├── dpicontextinfo_t.end.hpp │ │ │ │ ├── dpicontextinfo_t.start.hpp │ │ │ │ ├── dpihostingbehaviorinfo_t.end.hpp │ │ │ │ ├── dpihostingbehaviorinfo_t.start.hpp │ │ │ │ ├── drawitemstruct_t.end.hpp │ │ │ │ ├── drawitemstruct_t.start.hpp │ │ │ │ ├── drawtextparams_t.end.hpp │ │ │ │ ├── drawtextparams_t.start.hpp │ │ │ │ ├── dropstruct_t.end.hpp │ │ │ │ ├── dropstruct_t.start.hpp │ │ │ │ ├── dualstringarray_t.end.hpp │ │ │ │ ├── dualstringarray_t.start.hpp │ │ │ │ ├── dvtargetdevice_t.end.hpp │ │ │ │ ├── dvtargetdevice_t.start.hpp │ │ │ │ ├── elemdesc_t.end.hpp │ │ │ │ ├── elemdesc_t.start.hpp │ │ │ │ ├── element_t.end.hpp │ │ │ │ ├── element_t.start.hpp │ │ │ │ ├── emr_t.end.hpp │ │ │ │ ├── emr_t.start.hpp │ │ │ │ ├── emralphablend_t.end.hpp │ │ │ │ ├── emralphablend_t.start.hpp │ │ │ │ ├── emranglearc_t.end.hpp │ │ │ │ ├── emranglearc_t.start.hpp │ │ │ │ ├── emrarc_t.end.hpp │ │ │ │ ├── emrarc_t.start.hpp │ │ │ │ ├── emrbitblt_t.end.hpp │ │ │ │ ├── emrbitblt_t.start.hpp │ │ │ │ ├── emrcreatebrushindirect_t.end.hpp │ │ │ │ ├── emrcreatebrushindirect_t.start.hpp │ │ │ │ ├── emrcreatecolorspace_t.end.hpp │ │ │ │ ├── emrcreatecolorspace_t.start.hpp │ │ │ │ ├── emrcreatecolorspacew_t.end.hpp │ │ │ │ ├── emrcreatecolorspacew_t.start.hpp │ │ │ │ ├── emrcreatedibpatternbrushpt_t.end.hpp │ │ │ │ ├── emrcreatedibpatternbrushpt_t.start.hpp │ │ │ │ ├── emrcreatemonobrush_t.end.hpp │ │ │ │ ├── emrcreatemonobrush_t.start.hpp │ │ │ │ ├── emrcreatepalette_t.end.hpp │ │ │ │ ├── emrcreatepalette_t.start.hpp │ │ │ │ ├── emrcreatepen_t.end.hpp │ │ │ │ ├── emrcreatepen_t.start.hpp │ │ │ │ ├── emrellipse_t.end.hpp │ │ │ │ ├── emrellipse_t.start.hpp │ │ │ │ ├── emreof_t.end.hpp │ │ │ │ ├── emreof_t.start.hpp │ │ │ │ ├── emrexcludecliprect_t.end.hpp │ │ │ │ ├── emrexcludecliprect_t.start.hpp │ │ │ │ ├── emrextcreatefontindirectw_t.end.hpp │ │ │ │ ├── emrextcreatefontindirectw_t.start.hpp │ │ │ │ ├── emrextcreatepen_t.end.hpp │ │ │ │ ├── emrextcreatepen_t.start.hpp │ │ │ │ ├── emrextescape_t.end.hpp │ │ │ │ ├── emrextescape_t.start.hpp │ │ │ │ ├── emrextfloodfill_t.end.hpp │ │ │ │ ├── emrextfloodfill_t.start.hpp │ │ │ │ ├── emrextselectcliprgn_t.end.hpp │ │ │ │ ├── emrextselectcliprgn_t.start.hpp │ │ │ │ ├── emrexttextouta_t.end.hpp │ │ │ │ ├── emrexttextouta_t.start.hpp │ │ │ │ ├── emrfillpath_t.end.hpp │ │ │ │ ├── emrfillpath_t.start.hpp │ │ │ │ ├── emrfillrgn_t.end.hpp │ │ │ │ ├── emrfillrgn_t.start.hpp │ │ │ │ ├── emrformat_t.end.hpp │ │ │ │ ├── emrformat_t.start.hpp │ │ │ │ ├── emrframergn_t.end.hpp │ │ │ │ ├── emrframergn_t.start.hpp │ │ │ │ ├── emrgdicomment_t.end.hpp │ │ │ │ ├── emrgdicomment_t.start.hpp │ │ │ │ ├── emrglsboundedrecord_t.end.hpp │ │ │ │ ├── emrglsboundedrecord_t.start.hpp │ │ │ │ ├── emrglsrecord_t.end.hpp │ │ │ │ ├── emrglsrecord_t.start.hpp │ │ │ │ ├── emrgradientfill_t.end.hpp │ │ │ │ ├── emrgradientfill_t.start.hpp │ │ │ │ ├── emrinvertrgn_t.end.hpp │ │ │ │ ├── emrinvertrgn_t.start.hpp │ │ │ │ ├── emrlineto_t.end.hpp │ │ │ │ ├── emrlineto_t.start.hpp │ │ │ │ ├── emrmaskblt_t.end.hpp │ │ │ │ ├── emrmaskblt_t.start.hpp │ │ │ │ ├── emrmodifyworldtransform_t.end.hpp │ │ │ │ ├── emrmodifyworldtransform_t.start.hpp │ │ │ │ ├── emrnamedescape_t.end.hpp │ │ │ │ ├── emrnamedescape_t.start.hpp │ │ │ │ ├── emroffsetcliprgn_t.end.hpp │ │ │ │ ├── emroffsetcliprgn_t.start.hpp │ │ │ │ ├── emrpixelformat_t.end.hpp │ │ │ │ ├── emrpixelformat_t.start.hpp │ │ │ │ ├── emrplgblt_t.end.hpp │ │ │ │ ├── emrplgblt_t.start.hpp │ │ │ │ ├── emrpolydraw16_t.end.hpp │ │ │ │ ├── emrpolydraw16_t.start.hpp │ │ │ │ ├── emrpolydraw_t.end.hpp │ │ │ │ ├── emrpolydraw_t.start.hpp │ │ │ │ ├── emrpolyline16_t.end.hpp │ │ │ │ ├── emrpolyline16_t.start.hpp │ │ │ │ ├── emrpolyline_t.end.hpp │ │ │ │ ├── emrpolyline_t.start.hpp │ │ │ │ ├── emrpolypolyline16_t.end.hpp │ │ │ │ ├── emrpolypolyline16_t.start.hpp │ │ │ │ ├── emrpolypolyline_t.end.hpp │ │ │ │ ├── emrpolypolyline_t.start.hpp │ │ │ │ ├── emrpolytextouta_t.end.hpp │ │ │ │ ├── emrpolytextouta_t.start.hpp │ │ │ │ ├── emrresizepalette_t.end.hpp │ │ │ │ ├── emrresizepalette_t.start.hpp │ │ │ │ ├── emrrestoredc_t.end.hpp │ │ │ │ ├── emrrestoredc_t.start.hpp │ │ │ │ ├── emrroundrect_t.end.hpp │ │ │ │ ├── emrroundrect_t.start.hpp │ │ │ │ ├── emrscaleviewportextex_t.end.hpp │ │ │ │ ├── emrscaleviewportextex_t.start.hpp │ │ │ │ ├── emrselectclippath_t.end.hpp │ │ │ │ ├── emrselectclippath_t.start.hpp │ │ │ │ ├── emrselectobject_t.end.hpp │ │ │ │ ├── emrselectobject_t.start.hpp │ │ │ │ ├── emrselectpalette_t.end.hpp │ │ │ │ ├── emrselectpalette_t.start.hpp │ │ │ │ ├── emrsetarcdirection_t.end.hpp │ │ │ │ ├── emrsetarcdirection_t.start.hpp │ │ │ │ ├── emrsetcoloradjustment_t.end.hpp │ │ │ │ ├── emrsetcoloradjustment_t.start.hpp │ │ │ │ ├── emrsetcolorspace_t.end.hpp │ │ │ │ ├── emrsetcolorspace_t.start.hpp │ │ │ │ ├── emrsetdibitstodevice_t.end.hpp │ │ │ │ ├── emrsetdibitstodevice_t.start.hpp │ │ │ │ ├── emrseticmprofile_t.end.hpp │ │ │ │ ├── emrseticmprofile_t.start.hpp │ │ │ │ ├── emrsetmapperflags_t.end.hpp │ │ │ │ ├── emrsetmapperflags_t.start.hpp │ │ │ │ ├── emrsetmiterlimit_t.end.hpp │ │ │ │ ├── emrsetmiterlimit_t.start.hpp │ │ │ │ ├── emrsetpaletteentries_t.end.hpp │ │ │ │ ├── emrsetpaletteentries_t.start.hpp │ │ │ │ ├── emrsetpixelv_t.end.hpp │ │ │ │ ├── emrsetpixelv_t.start.hpp │ │ │ │ ├── emrsettextcolor_t.end.hpp │ │ │ │ ├── emrsettextcolor_t.start.hpp │ │ │ │ ├── emrsetviewportextex_t.end.hpp │ │ │ │ ├── emrsetviewportextex_t.start.hpp │ │ │ │ ├── emrsetviewportorgex_t.end.hpp │ │ │ │ ├── emrsetviewportorgex_t.start.hpp │ │ │ │ ├── emrsetworldtransform_t.end.hpp │ │ │ │ ├── emrsetworldtransform_t.start.hpp │ │ │ │ ├── emrstretchblt_t.end.hpp │ │ │ │ ├── emrstretchblt_t.start.hpp │ │ │ │ ├── emrstretchdibits_t.end.hpp │ │ │ │ ├── emrstretchdibits_t.start.hpp │ │ │ │ ├── emrtext_t.end.hpp │ │ │ │ ├── emrtext_t.start.hpp │ │ │ │ ├── emrtransparentblt_t.end.hpp │ │ │ │ ├── emrtransparentblt_t.start.hpp │ │ │ │ ├── enhmetaheader_t.end.hpp │ │ │ │ ├── enhmetaheader_t.start.hpp │ │ │ │ ├── enhmetarecord_t.end.hpp │ │ │ │ ├── enhmetarecord_t.start.hpp │ │ │ │ ├── entry_header_t.end.hpp │ │ │ │ ├── entry_header_t.start.hpp │ │ │ │ ├── enumlogfonta_t.end.hpp │ │ │ │ ├── enumlogfonta_t.start.hpp │ │ │ │ ├── enumlogfontexa_t.end.hpp │ │ │ │ ├── enumlogfontexa_t.start.hpp │ │ │ │ ├── enumlogfontexdva_t.end.hpp │ │ │ │ ├── enumlogfontexdva_t.start.hpp │ │ │ │ ├── enumlogfontexdvw_t.end.hpp │ │ │ │ ├── enumlogfontexdvw_t.start.hpp │ │ │ │ ├── enumlogfontexw_t.end.hpp │ │ │ │ ├── enumlogfontexw_t.start.hpp │ │ │ │ ├── enumlogfontw_t.end.hpp │ │ │ │ ├── enumlogfontw_t.start.hpp │ │ │ │ ├── enumtextmetrica_t.end.hpp │ │ │ │ ├── enumtextmetrica_t.start.hpp │ │ │ │ ├── enumtextmetricw_t.end.hpp │ │ │ │ ├── enumtextmetricw_t.start.hpp │ │ │ │ ├── enumuilang_t.end.hpp │ │ │ │ ├── enumuilang_t.start.hpp │ │ │ │ ├── envoydata_t.end.hpp │ │ │ │ ├── envoydata_t.start.hpp │ │ │ │ ├── eventmsg_t.end.hpp │ │ │ │ ├── eventmsg_t.start.hpp │ │ │ │ ├── excepinfo_t.end.hpp │ │ │ │ ├── excepinfo_t.start.hpp │ │ │ │ ├── extlogfonta_t.end.hpp │ │ │ │ ├── extlogfonta_t.start.hpp │ │ │ │ ├── extlogfontw_t.end.hpp │ │ │ │ ├── extlogfontw_t.start.hpp │ │ │ │ ├── extlogpen32_t.end.hpp │ │ │ │ ├── extlogpen32_t.start.hpp │ │ │ │ ├── extlogpen_t.end.hpp │ │ │ │ ├── extlogpen_t.start.hpp │ │ │ │ ├── fast_copy_luid_access_t.end.hpp │ │ │ │ ├── fast_copy_luid_access_t.start.hpp │ │ │ │ ├── filterkeys_t.end.hpp │ │ │ │ ├── filterkeys_t.start.hpp │ │ │ │ ├── fontsignature_t.end.hpp │ │ │ │ ├── fontsignature_t.start.hpp │ │ │ │ ├── formatetc_t.end.hpp │ │ │ │ ├── formatetc_t.start.hpp │ │ │ │ ├── funcdesc_t.end.hpp │ │ │ │ ├── funcdesc_t.start.hpp │ │ │ │ ├── gcp_resultsa_t.end.hpp │ │ │ │ ├── gcp_resultsa_t.start.hpp │ │ │ │ ├── gcp_resultsw_t.end.hpp │ │ │ │ ├── gcp_resultsw_t.start.hpp │ │ │ │ ├── gestureconfig_t.end.hpp │ │ │ │ ├── gestureconfig_t.start.hpp │ │ │ │ ├── gestureinfo_t.end.hpp │ │ │ │ ├── gestureinfo_t.start.hpp │ │ │ │ ├── gesturenotifystruct_t.end.hpp │ │ │ │ ├── gesturenotifystruct_t.start.hpp │ │ │ │ ├── glyphset_t.end.hpp │ │ │ │ ├── glyphset_t.start.hpp │ │ │ │ ├── guithreadinfo_t.end.hpp │ │ │ │ ├── guithreadinfo_t.start.hpp │ │ │ │ ├── handletable_t.end.hpp │ │ │ │ ├── handletable_t.start.hpp │ │ │ │ ├── hardwarehookstruct_t.end.hpp │ │ │ │ ├── hardwarehookstruct_t.start.hpp │ │ │ │ ├── hardwareinput_t.end.hpp │ │ │ │ ├── hardwareinput_t.start.hpp │ │ │ │ ├── helpinfo_t.end.hpp │ │ │ │ ├── helpinfo_t.start.hpp │ │ │ │ ├── helpwininfoa_t.end.hpp │ │ │ │ ├── helpwininfoa_t.start.hpp │ │ │ │ ├── helpwininfow_t.end.hpp │ │ │ │ ├── helpwininfow_t.start.hpp │ │ │ │ ├── highcontrasta_t.end.hpp │ │ │ │ ├── highcontrasta_t.start.hpp │ │ │ │ ├── highcontrastw_t.end.hpp │ │ │ │ ├── highcontrastw_t.start.hpp │ │ │ │ ├── hit_logging_info_t.end.hpp │ │ │ │ ├── hit_logging_info_t.start.hpp │ │ │ │ ├── hookapi_t.end.hpp │ │ │ │ ├── hookapi_t.start.hpp │ │ │ │ ├── hookapiex_t.end.hpp │ │ │ │ ├── hookapiex_t.start.hpp │ │ │ │ ├── hw_profile_infoa_t.end.hpp │ │ │ │ ├── hw_profile_infoa_t.start.hpp │ │ │ │ ├── hw_profile_infow_t.end.hpp │ │ │ │ ├── hw_profile_infow_t.start.hpp │ │ │ │ ├── i_face_svr_refs_t.end.hpp │ │ │ │ ├── i_face_svr_refs_t.start.hpp │ │ │ │ ├── i_rpc_proxy_callback_interface_t.end.hpp │ │ │ │ ├── i_rpc_proxy_callback_interface_t.start.hpp │ │ │ │ ├── icexyztriple_t.end.hpp │ │ │ │ ├── icexyztriple_t.start.hpp │ │ │ │ ├── iconmetricsa_t.end.hpp │ │ │ │ ├── iconmetricsa_t.start.hpp │ │ │ │ ├── iconmetricsw_t.end.hpp │ │ │ │ ├── iconmetricsw_t.start.hpp │ │ │ │ ├── idldesc_t.end.hpp │ │ │ │ ├── idldesc_t.start.hpp │ │ │ │ ├── imecharposition_t.end.hpp │ │ │ │ ├── imecharposition_t.start.hpp │ │ │ │ ├── imemenuiteminfoa_t.end.hpp │ │ │ │ ├── imemenuiteminfoa_t.start.hpp │ │ │ │ ├── imemenuiteminfow_t.end.hpp │ │ │ │ ├── imemenuiteminfow_t.start.hpp │ │ │ │ ├── incoming_call_data_t.end.hpp │ │ │ │ ├── incoming_call_data_t.start.hpp │ │ │ │ ├── initialize_spy_node_t.end.hpp │ │ │ │ ├── initialize_spy_node_t.start.hpp │ │ │ │ ├── input_injection_value_t.end.hpp │ │ │ │ ├── input_injection_value_t.start.hpp │ │ │ │ ├── input_message_source_t.end.hpp │ │ │ │ ├── input_message_source_t.start.hpp │ │ │ │ ├── input_routing_info_t.end.hpp │ │ │ │ ├── input_routing_info_t.start.hpp │ │ │ │ ├── input_t.end.hpp │ │ │ │ ├── input_t.start.hpp │ │ │ │ ├── input_transform_t.end.hpp │ │ │ │ ├── input_transform_t.start.hpp │ │ │ │ ├── instance_info_data_t.end.hpp │ │ │ │ ├── instance_info_data_t.start.hpp │ │ │ │ ├── instantiation_info_data_t.end.hpp │ │ │ │ ├── instantiation_info_data_t.start.hpp │ │ │ │ ├── interface_data_t.end.hpp │ │ │ │ ├── interface_data_t.start.hpp │ │ │ │ ├── interfacedata_t.end.hpp │ │ │ │ ├── interfacedata_t.start.hpp │ │ │ │ ├── interfaceinfo_t.end.hpp │ │ │ │ ├── interfaceinfo_t.start.hpp │ │ │ │ ├── ipid_entry_t.end.hpp │ │ │ │ ├── ipid_entry_t.start.hpp │ │ │ │ ├── ipid_tmp_t.end.hpp │ │ │ │ ├── ipid_tmp_t.start.hpp │ │ │ │ ├── kbdllhookstruct_t.end.hpp │ │ │ │ ├── kbdllhookstruct_t.start.hpp │ │ │ │ ├── kerningpair_t.end.hpp │ │ │ │ ├── kerningpair_t.start.hpp │ │ │ │ ├── keybdinput_t.end.hpp │ │ │ │ ├── keybdinput_t.start.hpp │ │ │ │ ├── known_system_ii_ds_t.end.hpp │ │ │ │ ├── known_system_ii_ds_t.start.hpp │ │ │ │ ├── lastinputinfo_t.end.hpp │ │ │ │ ├── lastinputinfo_t.start.hpp │ │ │ │ ├── layerplanedescriptor_t.end.hpp │ │ │ │ ├── layerplanedescriptor_t.start.hpp │ │ │ │ ├── lc_id_t.end.hpp │ │ │ │ ├── lc_id_t.start.hpp │ │ │ │ ├── localesignature_t.end.hpp │ │ │ │ ├── localesignature_t.start.hpp │ │ │ │ ├── location_info_data_t.end.hpp │ │ │ │ ├── location_info_data_t.start.hpp │ │ │ │ ├── logbrush32_t.end.hpp │ │ │ │ ├── logbrush32_t.start.hpp │ │ │ │ ├── logbrush_t.end.hpp │ │ │ │ ├── logbrush_t.start.hpp │ │ │ │ ├── logcolorspacea_t.end.hpp │ │ │ │ ├── logcolorspacea_t.start.hpp │ │ │ │ ├── logcolorspacew_t.end.hpp │ │ │ │ ├── logcolorspacew_t.start.hpp │ │ │ │ ├── logfonta_t.end.hpp │ │ │ │ ├── logfonta_t.start.hpp │ │ │ │ ├── logfontw_t.end.hpp │ │ │ │ ├── logfontw_t.start.hpp │ │ │ │ ├── logpalette_t.end.hpp │ │ │ │ ├── logpalette_t.start.hpp │ │ │ │ ├── logpen_t.end.hpp │ │ │ │ ├── logpen_t.start.hpp │ │ │ │ ├── m_interface_pointer_t.end.hpp │ │ │ │ ├── m_interface_pointer_t.start.hpp │ │ │ │ ├── main_header_t.end.hpp │ │ │ │ ├── main_header_t.start.hpp │ │ │ │ ├── mdicreatestructa_t.end.hpp │ │ │ │ ├── mdicreatestructa_t.start.hpp │ │ │ │ ├── mdicreatestructw_t.end.hpp │ │ │ │ ├── mdicreatestructw_t.start.hpp │ │ │ │ ├── mdinextmenu_t.end.hpp │ │ │ │ ├── mdinextmenu_t.start.hpp │ │ │ │ ├── measureitemstruct_t.end.hpp │ │ │ │ ├── measureitemstruct_t.start.hpp │ │ │ │ ├── menubarinfo_t.end.hpp │ │ │ │ ├── menubarinfo_t.start.hpp │ │ │ │ ├── menugetobjectinfo_t.end.hpp │ │ │ │ ├── menugetobjectinfo_t.start.hpp │ │ │ │ ├── menuinfo_t.end.hpp │ │ │ │ ├── menuinfo_t.start.hpp │ │ │ │ ├── menuiteminfoa_t.end.hpp │ │ │ │ ├── menuiteminfoa_t.start.hpp │ │ │ │ ├── menuiteminfow_t.end.hpp │ │ │ │ ├── menuiteminfow_t.start.hpp │ │ │ │ ├── metafilepict_t.end.hpp │ │ │ │ ├── metafilepict_t.start.hpp │ │ │ │ ├── metaheader_t.end.hpp │ │ │ │ ├── metaheader_t.start.hpp │ │ │ │ ├── metarecord_t.end.hpp │ │ │ │ ├── metarecord_t.start.hpp │ │ │ │ ├── method_info_t.end.hpp │ │ │ │ ├── method_info_t.start.hpp │ │ │ │ ├── methoddata_t.end.hpp │ │ │ │ ├── methoddata_t.start.hpp │ │ │ │ ├── minimizedmetrics_t.end.hpp │ │ │ │ ├── minimizedmetrics_t.start.hpp │ │ │ │ ├── minmaxinfo_t.end.hpp │ │ │ │ ├── minmaxinfo_t.start.hpp │ │ │ │ ├── monitorinfo_t.end.hpp │ │ │ │ ├── monitorinfo_t.start.hpp │ │ │ │ ├── monitorinfoexa_t.end.hpp │ │ │ │ ├── monitorinfoexa_t.start.hpp │ │ │ │ ├── monitorinfoexw_t.end.hpp │ │ │ │ ├── monitorinfoexw_t.start.hpp │ │ │ │ ├── mousehookstruct_t.end.hpp │ │ │ │ ├── mousehookstruct_t.start.hpp │ │ │ │ ├── mousehookstructex_t.end.hpp │ │ │ │ ├── mousehookstructex_t.start.hpp │ │ │ │ ├── mouseinput_t.end.hpp │ │ │ │ ├── mouseinput_t.start.hpp │ │ │ │ ├── mousekeys_t.end.hpp │ │ │ │ ├── mousekeys_t.start.hpp │ │ │ │ ├── mousemovepoint_t.end.hpp │ │ │ │ ├── mousemovepoint_t.start.hpp │ │ │ │ ├── msg_routing_info_t.end.hpp │ │ │ │ ├── msg_routing_info_t.start.hpp │ │ │ │ ├── msg_t.end.hpp │ │ │ │ ├── msg_t.start.hpp │ │ │ │ ├── msgboxparamsa_t.end.hpp │ │ │ │ ├── msgboxparamsa_t.start.hpp │ │ │ │ ├── msgboxparamsw_t.end.hpp │ │ │ │ ├── msgboxparamsw_t.start.hpp │ │ │ │ ├── msipackageinfo_t.end.hpp │ │ │ │ ├── msipackageinfo_t.start.hpp │ │ │ │ ├── msllhookstruct_t.end.hpp │ │ │ │ ├── msllhookstruct_t.start.hpp │ │ │ │ ├── multi_qi_t.end.hpp │ │ │ │ ├── multi_qi_t.start.hpp │ │ │ │ ├── multikeyhelpa_t.end.hpp │ │ │ │ ├── multikeyhelpa_t.start.hpp │ │ │ │ ├── multikeyhelpw_t.end.hpp │ │ │ │ ├── multikeyhelpw_t.start.hpp │ │ │ │ ├── nccalcsize_params_t.end.hpp │ │ │ │ ├── nccalcsize_params_t.start.hpp │ │ │ │ ├── newtextmetrica_t.end.hpp │ │ │ │ ├── newtextmetrica_t.start.hpp │ │ │ │ ├── newtextmetricexa_t.end.hpp │ │ │ │ ├── newtextmetricexa_t.start.hpp │ │ │ │ ├── newtextmetricexw_t.end.hpp │ │ │ │ ├── newtextmetricexw_t.start.hpp │ │ │ │ ├── newtextmetricw_t.end.hpp │ │ │ │ ├── newtextmetricw_t.start.hpp │ │ │ │ ├── nmhdr_t.end.hpp │ │ │ │ ├── nmhdr_t.start.hpp │ │ │ │ ├── nonclientmetricsa_t.end.hpp │ │ │ │ ├── nonclientmetricsa_t.start.hpp │ │ │ │ ├── nonclientmetricsw_t.end.hpp │ │ │ │ ├── nonclientmetricsw_t.start.hpp │ │ │ │ ├── objectdescriptor_t.end.hpp │ │ │ │ ├── objectdescriptor_t.start.hpp │ │ │ │ ├── objref_t.end.hpp │ │ │ │ ├── objref_t.start.hpp │ │ │ │ ├── objrefdata_t.end.hpp │ │ │ │ ├── objrefdata_t.start.hpp │ │ │ │ ├── oid_data_t.end.hpp │ │ │ │ ├── oid_data_t.start.hpp │ │ │ │ ├── oifi_t.end.hpp │ │ │ │ ├── oifi_t.start.hpp │ │ │ │ ├── ole_menu_group_widths_t.end.hpp │ │ │ │ ├── ole_menu_group_widths_t.start.hpp │ │ │ │ ├── oleverb_t.end.hpp │ │ │ │ ├── oleverb_t.start.hpp │ │ │ │ ├── opaque_data_t.end.hpp │ │ │ │ ├── opaque_data_t.start.hpp │ │ │ │ ├── orpc_extent_array_t.end.hpp │ │ │ │ ├── orpc_extent_array_t.start.hpp │ │ │ │ ├── orpc_extent_t.end.hpp │ │ │ │ ├── orpc_extent_t.start.hpp │ │ │ │ ├── orpcthat_t.end.hpp │ │ │ │ ├── orpcthat_t.start.hpp │ │ │ │ ├── orpcthis_t.end.hpp │ │ │ │ ├── orpcthis_t.start.hpp │ │ │ │ ├── outgoing_activation_data_t.end.hpp │ │ │ │ ├── outgoing_activation_data_t.start.hpp │ │ │ │ ├── outgoing_call_data_t.end.hpp │ │ │ │ ├── outgoing_call_data_t.start.hpp │ │ │ │ ├── oxid_info_t.end.hpp │ │ │ │ ├── oxid_info_t.start.hpp │ │ │ │ ├── page_entry_t.end.hpp │ │ │ │ ├── page_entry_t.start.hpp │ │ │ │ ├── paintstruct_t.end.hpp │ │ │ │ ├── paintstruct_t.start.hpp │ │ │ │ ├── paletteentry_t.end.hpp │ │ │ │ ├── paletteentry_t.start.hpp │ │ │ │ ├── panose_t.end.hpp │ │ │ │ ├── panose_t.start.hpp │ │ │ │ ├── paramdata_t.end.hpp │ │ │ │ ├── paramdata_t.start.hpp │ │ │ │ ├── paramdesc_t.end.hpp │ │ │ │ ├── paramdesc_t.start.hpp │ │ │ │ ├── paramdescex_t.end.hpp │ │ │ │ ├── paramdescex_t.start.hpp │ │ │ │ ├── pcb_t.end.hpp │ │ │ │ ├── pcb_t.start.hpp │ │ │ │ ├── pelarray_t.end.hpp │ │ │ │ ├── pelarray_t.start.hpp │ │ │ │ ├── pid_data_t.end.hpp │ │ │ │ ├── pid_data_t.start.hpp │ │ │ │ ├── pixelformatdescriptor_t.end.hpp │ │ │ │ ├── pixelformatdescriptor_t.start.hpp │ │ │ │ ├── placeablemetaheader_t.end.hpp │ │ │ │ ├── placeablemetaheader_t.start.hpp │ │ │ │ ├── point_t.end.hpp │ │ │ │ ├── point_t.start.hpp │ │ │ │ ├── pointer_device_cursor_info_t.end.hpp │ │ │ │ ├── pointer_device_cursor_info_t.start.hpp │ │ │ │ ├── pointer_device_info_t.end.hpp │ │ │ │ ├── pointer_device_info_t.start.hpp │ │ │ │ ├── pointer_device_property_t.end.hpp │ │ │ │ ├── pointer_device_property_t.start.hpp │ │ │ │ ├── pointer_info_t.end.hpp │ │ │ │ ├── pointer_info_t.start.hpp │ │ │ │ ├── pointer_pen_info_t.end.hpp │ │ │ │ ├── pointer_pen_info_t.start.hpp │ │ │ │ ├── pointer_touch_info_t.end.hpp │ │ │ │ ├── pointer_touch_info_t.start.hpp │ │ │ │ ├── pointer_type_info_t.end.hpp │ │ │ │ ├── pointer_type_info_t.start.hpp │ │ │ │ ├── pointfx_t.end.hpp │ │ │ │ ├── pointfx_t.start.hpp │ │ │ │ ├── points_t.end.hpp │ │ │ │ ├── points_t.start.hpp │ │ │ │ ├── policy_entry_t.end.hpp │ │ │ │ ├── policy_entry_t.start.hpp │ │ │ │ ├── polytexta_t.end.hpp │ │ │ │ ├── polytexta_t.start.hpp │ │ │ │ ├── polytextw_t.end.hpp │ │ │ │ ├── polytextw_t.start.hpp │ │ │ │ ├── propmarshalheader_t.end.hpp │ │ │ │ ├── propmarshalheader_t.start.hpp │ │ │ │ ├── props_out_info_t.end.hpp │ │ │ │ ├── props_out_info_t.start.hpp │ │ │ │ ├── propspec_t.end.hpp │ │ │ │ ├── propspec_t.start.hpp │ │ │ │ ├── propvariant_t.end.hpp │ │ │ │ ├── propvariant_t.start.hpp │ │ │ │ ├── protocol_argument_t.end.hpp │ │ │ │ ├── protocol_argument_t.start.hpp │ │ │ │ ├── protocoldata_t.end.hpp │ │ │ │ ├── protocoldata_t.start.hpp │ │ │ │ ├── protocolfilterdata_t.end.hpp │ │ │ │ ├── protocolfilterdata_t.start.hpp │ │ │ │ ├── proxy_file_info_t.end.hpp │ │ │ │ ├── proxy_file_info_t.start.hpp │ │ │ │ ├── qicontext_t.end.hpp │ │ │ │ ├── qicontext_t.start.hpp │ │ │ │ ├── querycontext_t.end.hpp │ │ │ │ ├── querycontext_t.start.hpp │ │ │ │ ├── rawhid_t.end.hpp │ │ │ │ ├── rawhid_t.start.hpp │ │ │ │ ├── rawinput_t.end.hpp │ │ │ │ ├── rawinput_t.start.hpp │ │ │ │ ├── rawinputdevice_t.end.hpp │ │ │ │ ├── rawinputdevice_t.start.hpp │ │ │ │ ├── rawinputdevicelist_t.end.hpp │ │ │ │ ├── rawinputdevicelist_t.start.hpp │ │ │ │ ├── rawinputheader_t.end.hpp │ │ │ │ ├── rawinputheader_t.start.hpp │ │ │ │ ├── rawkeyboard_t.end.hpp │ │ │ │ ├── rawkeyboard_t.start.hpp │ │ │ │ ├── rawmouse_t.end.hpp │ │ │ │ ├── rawmouse_t.start.hpp │ │ │ │ ├── reconvertstring_t.end.hpp │ │ │ │ ├── reconvertstring_t.start.hpp │ │ │ │ ├── rect_t.end.hpp │ │ │ │ ├── rect_t.start.hpp │ │ │ │ ├── reg_if_t.end.hpp │ │ │ │ ├── reg_if_t.start.hpp │ │ │ │ ├── registerworda_t.end.hpp │ │ │ │ ├── registerworda_t.start.hpp │ │ │ │ ├── registerwordw_t.end.hpp │ │ │ │ ├── registerwordw_t.start.hpp │ │ │ │ ├── rem_bindinfo_t.end.hpp │ │ │ │ ├── rem_bindinfo_t.start.hpp │ │ │ │ ├── rem_brush_t.end.hpp │ │ │ │ ├── rem_brush_t.start.hpp │ │ │ │ ├── rem_formatetc_t.end.hpp │ │ │ │ ├── rem_formatetc_t.start.hpp │ │ │ │ ├── rem_hbitmap_t.end.hpp │ │ │ │ ├── rem_hbitmap_t.start.hpp │ │ │ │ ├── rem_henhmetafile_t.end.hpp │ │ │ │ ├── rem_henhmetafile_t.start.hpp │ │ │ │ ├── rem_hglobal_t.end.hpp │ │ │ │ ├── rem_hglobal_t.start.hpp │ │ │ │ ├── rem_hmetafilepict_t.end.hpp │ │ │ │ ├── rem_hmetafilepict_t.start.hpp │ │ │ │ ├── rem_hpalette_t.end.hpp │ │ │ │ ├── rem_hpalette_t.start.hpp │ │ │ │ ├── rem_snb_t.end.hpp │ │ │ │ ├── rem_snb_t.start.hpp │ │ │ │ ├── rem_stgmedium_t.end.hpp │ │ │ │ ├── rem_stgmedium_t.start.hpp │ │ │ │ ├── reminterfaceref_t.end.hpp │ │ │ │ ├── reminterfaceref_t.start.hpp │ │ │ │ ├── remqiresult_t.end.hpp │ │ │ │ ├── remqiresult_t.start.hpp │ │ │ │ ├── rgbquad_t.end.hpp │ │ │ │ ├── rgbquad_t.start.hpp │ │ │ │ ├── rgbtriple_t.end.hpp │ │ │ │ ├── rgbtriple_t.start.hpp │ │ │ │ ├── rid_device_info_hid_t.end.hpp │ │ │ │ ├── rid_device_info_hid_t.start.hpp │ │ │ │ ├── rid_device_info_keyboard_t.end.hpp │ │ │ │ ├── rid_device_info_keyboard_t.start.hpp │ │ │ │ ├── rid_device_info_mouse_t.end.hpp │ │ │ │ ├── rid_device_info_mouse_t.start.hpp │ │ │ │ ├── rid_device_info_t.end.hpp │ │ │ │ ├── rid_device_info_t.start.hpp │ │ │ │ ├── rpc_call_attributes_v1_a_t.end.hpp │ │ │ │ ├── rpc_call_attributes_v1_a_t.start.hpp │ │ │ │ ├── rpc_call_attributes_v1_w_t.end.hpp │ │ │ │ ├── rpc_call_attributes_v1_w_t.start.hpp │ │ │ │ ├── rpc_call_attributes_v2_a_t.end.hpp │ │ │ │ ├── rpc_call_attributes_v2_a_t.start.hpp │ │ │ │ ├── rpc_call_attributes_v2_w_t.end.hpp │ │ │ │ ├── rpc_call_attributes_v2_w_t.start.hpp │ │ │ │ ├── rpc_call_attributes_v3_a_t.end.hpp │ │ │ │ ├── rpc_call_attributes_v3_a_t.start.hpp │ │ │ │ ├── rpc_call_attributes_v3_w_t.end.hpp │ │ │ │ ├── rpc_call_attributes_v3_w_t.start.hpp │ │ │ │ ├── rpc_ee_info_param_t.end.hpp │ │ │ │ ├── rpc_ee_info_param_t.start.hpp │ │ │ │ ├── rpc_error_enum_handle_t.end.hpp │ │ │ │ ├── rpc_error_enum_handle_t.start.hpp │ │ │ │ ├── rpc_extended_error_info_t.end.hpp │ │ │ │ ├── rpc_extended_error_info_t.start.hpp │ │ │ │ ├── rpcolemessage_t.end.hpp │ │ │ │ ├── rpcolemessage_t.start.hpp │ │ │ │ ├── s_ctx_list_index_t.end.hpp │ │ │ │ ├── s_ctx_list_index_t.start.hpp │ │ │ │ ├── s_ole_tls_data_t.end.hpp │ │ │ │ ├── s_ole_tls_data_t.start.hpp │ │ │ │ ├── s_window_data_t.end.hpp │ │ │ │ ├── s_window_data_t.start.hpp │ │ │ │ ├── safearray_t.end.hpp │ │ │ │ ├── safearray_t.start.hpp │ │ │ │ ├── safearraybound_t.end.hpp │ │ │ │ ├── safearraybound_t.start.hpp │ │ │ │ ├── scm_reply_info_data_t.end.hpp │ │ │ │ ├── scm_reply_info_data_t.start.hpp │ │ │ │ ├── scm_request_info_data_t.end.hpp │ │ │ │ ├── scm_request_info_data_t.start.hpp │ │ │ │ ├── scmsa_t.end.hpp │ │ │ │ ├── scmsa_t.start.hpp │ │ │ │ ├── scrollbarinfo_t.end.hpp │ │ │ │ ├── scrollbarinfo_t.start.hpp │ │ │ │ ├── scrollinfo_t.end.hpp │ │ │ │ ├── scrollinfo_t.start.hpp │ │ │ │ ├── sdbbmachineinfo_t.end.hpp │ │ │ │ ├── sdbbmachineinfo_t.start.hpp │ │ │ │ ├── sdbdatabaseinfo_t.end.hpp │ │ │ │ ├── sdbdatabaseinfo_t.start.hpp │ │ │ │ ├── sdbdeviceinfo_t.end.hpp │ │ │ │ ├── sdbdeviceinfo_t.start.hpp │ │ │ │ ├── sdbentryinfo_t.end.hpp │ │ │ │ ├── sdbentryinfo_t.start.hpp │ │ │ │ ├── sdbmsifindinfo_t.end.hpp │ │ │ │ ├── sdbmsifindinfo_t.start.hpp │ │ │ │ ├── sdbmsitransforminfo_t.end.hpp │ │ │ │ ├── sdbmsitransforminfo_t.start.hpp │ │ │ │ ├── sdbqueryresult_t.end.hpp │ │ │ │ ├── sdbqueryresult_t.start.hpp │ │ │ │ ├── security_info_data_t.end.hpp │ │ │ │ ├── security_info_data_t.start.hpp │ │ │ │ ├── securitybinding_t.end.hpp │ │ │ │ ├── securitybinding_t.start.hpp │ │ │ │ ├── serializedpropertyvalue_t.end.hpp │ │ │ │ ├── serializedpropertyvalue_t.start.hpp │ │ │ │ ├── serialkeysa_t.end.hpp │ │ │ │ ├── serialkeysa_t.start.hpp │ │ │ │ ├── serialkeysw_t.end.hpp │ │ │ │ ├── serialkeysw_t.start.hpp │ │ │ │ ├── server_information_t.end.hpp │ │ │ │ ├── server_information_t.start.hpp │ │ │ │ ├── size_t.end.hpp │ │ │ │ ├── size_t.start.hpp │ │ │ │ ├── soap_activation_info_t.end.hpp │ │ │ │ ├── soap_activation_info_t.start.hpp │ │ │ │ ├── softdistinfo_t.end.hpp │ │ │ │ ├── softdistinfo_t.start.hpp │ │ │ │ ├── sole_authentication_info_t.end.hpp │ │ │ │ ├── sole_authentication_info_t.start.hpp │ │ │ │ ├── sole_authentication_list_t.end.hpp │ │ │ │ ├── sole_authentication_list_t.start.hpp │ │ │ │ ├── sole_authentication_service_t.end.hpp │ │ │ │ ├── sole_authentication_service_t.start.hpp │ │ │ │ ├── soundsentrya_t.end.hpp │ │ │ │ ├── soundsentrya_t.start.hpp │ │ │ │ ├── soundsentryw_t.end.hpp │ │ │ │ ├── soundsentryw_t.start.hpp │ │ │ │ ├── special_properties_data_t.end.hpp │ │ │ │ ├── special_properties_data_t.start.hpp │ │ │ │ ├── sps_cache_t.end.hpp │ │ │ │ ├── sps_cache_t.start.hpp │ │ │ │ ├── sps_chain_t.end.hpp │ │ │ │ ├── sps_chain_t.start.hpp │ │ │ │ ├── sqi_result_t.end.hpp │ │ │ │ ├── sqi_result_t.start.hpp │ │ │ │ ├── ssid_identifier_authority_t.end.hpp │ │ │ │ ├── ssid_identifier_authority_t.start.hpp │ │ │ │ ├── start_param_t.end.hpp │ │ │ │ ├── start_param_t.start.hpp │ │ │ │ ├── statdata_t.end.hpp │ │ │ │ ├── statdata_t.start.hpp │ │ │ │ ├── statpropsetstg_t.end.hpp │ │ │ │ ├── statpropsetstg_t.start.hpp │ │ │ │ ├── statpropstg_t.end.hpp │ │ │ │ ├── statpropstg_t.start.hpp │ │ │ │ ├── statstg_t.end.hpp │ │ │ │ ├── statstg_t.start.hpp │ │ │ │ ├── std_disc_data_t.end.hpp │ │ │ │ ├── std_disc_data_t.start.hpp │ │ │ │ ├── std_marshal_data_t.end.hpp │ │ │ │ ├── std_marshal_data_t.start.hpp │ │ │ │ ├── std_release_data_t.end.hpp │ │ │ │ ├── std_release_data_t.start.hpp │ │ │ │ ├── std_unmarshal_data_t.end.hpp │ │ │ │ ├── std_unmarshal_data_t.start.hpp │ │ │ │ ├── stdobjref_t.end.hpp │ │ │ │ ├── stdobjref_t.start.hpp │ │ │ │ ├── stgmedium_t.end.hpp │ │ │ │ ├── stgmedium_t.start.hpp │ │ │ │ ├── stgoptions_t.end.hpp │ │ │ │ ├── stgoptions_t.start.hpp │ │ │ │ ├── stickykeys_t.end.hpp │ │ │ │ ├── stickykeys_t.start.hpp │ │ │ │ ├── storage_layout_t.end.hpp │ │ │ │ ├── storage_layout_t.start.hpp │ │ │ │ ├── stream_ace_t.end.hpp │ │ │ │ ├── stream_ace_t.start.hpp │ │ │ │ ├── stream_acl_t.end.hpp │ │ │ │ ├── stream_acl_t.start.hpp │ │ │ │ ├── stream_header_t.end.hpp │ │ │ │ ├── stream_header_t.start.hpp │ │ │ │ ├── stream_sid_t.end.hpp │ │ │ │ ├── stream_sid_t.start.hpp │ │ │ │ ├── stringbinding_t.end.hpp │ │ │ │ ├── stringbinding_t.start.hpp │ │ │ │ ├── stylebufa_t.end.hpp │ │ │ │ ├── stylebufa_t.start.hpp │ │ │ │ ├── stylebufw_t.end.hpp │ │ │ │ ├── stylebufw_t.start.hpp │ │ │ │ ├── stylestruct_t.end.hpp │ │ │ │ ├── stylestruct_t.start.hpp │ │ │ │ ├── switch_context_attribute_t.end.hpp │ │ │ │ ├── switch_context_attribute_t.start.hpp │ │ │ │ ├── switch_context_create_param_t.end.hpp │ │ │ │ ├── switch_context_create_param_t.start.hpp │ │ │ │ ├── switch_context_data_t.end.hpp │ │ │ │ ├── switch_context_data_t.start.hpp │ │ │ │ ├── switch_context_platform_details_t.end.hpp │ │ │ │ ├── switch_context_platform_details_t.start.hpp │ │ │ │ ├── switch_context_t.end.hpp │ │ │ │ ├── switch_context_t.start.hpp │ │ │ │ ├── textmetrica_t.end.hpp │ │ │ │ ├── textmetrica_t.start.hpp │ │ │ │ ├── textmetricw_t.end.hpp │ │ │ │ ├── textmetricw_t.start.hpp │ │ │ │ ├── titlebarinfo_t.end.hpp │ │ │ │ ├── titlebarinfo_t.start.hpp │ │ │ │ ├── titlebarinfoex_t.end.hpp │ │ │ │ ├── titlebarinfoex_t.start.hpp │ │ │ │ ├── tlibattr_t.end.hpp │ │ │ │ ├── tlibattr_t.start.hpp │ │ │ │ ├── tls_map_entry_t.end.hpp │ │ │ │ ├── tls_map_entry_t.start.hpp │ │ │ │ ├── togglekeys_t.end.hpp │ │ │ │ ├── togglekeys_t.start.hpp │ │ │ │ ├── touch_hit_testing_input_t.end.hpp │ │ │ │ ├── touch_hit_testing_input_t.start.hpp │ │ │ │ ├── touch_hit_testing_proximity_evaluation_t.end.hpp │ │ │ │ ├── touch_hit_testing_proximity_evaluation_t.start.hpp │ │ │ │ ├── touch_prediction_parameters_t.end.hpp │ │ │ │ ├── touch_prediction_parameters_t.start.hpp │ │ │ │ ├── touchinput_t.end.hpp │ │ │ │ ├── touchinput_t.start.hpp │ │ │ │ ├── tpmparams_t.end.hpp │ │ │ │ ├── tpmparams_t.start.hpp │ │ │ │ ├── trackmouseevent_t.end.hpp │ │ │ │ ├── trackmouseevent_t.start.hpp │ │ │ │ ├── ttpolycurve_t.end.hpp │ │ │ │ ├── ttpolycurve_t.start.hpp │ │ │ │ ├── ttpolygonheader_t.end.hpp │ │ │ │ ├── ttpolygonheader_t.start.hpp │ │ │ │ ├── typeattr_t.end.hpp │ │ │ │ ├── typeattr_t.start.hpp │ │ │ │ ├── typedesc_t.end.hpp │ │ │ │ ├── typedesc_t.start.hpp │ │ │ │ ├── updatelayeredwindowinfo_t.end.hpp │ │ │ │ ├── updatelayeredwindowinfo_t.start.hpp │ │ │ │ ├── usage_properties_t.end.hpp │ │ │ │ ├── usage_properties_t.start.hpp │ │ │ │ ├── userobjectflags_t.end.hpp │ │ │ │ ├── userobjectflags_t.start.hpp │ │ │ │ ├── vardesc_t.end.hpp │ │ │ │ ├── vardesc_t.start.hpp │ │ │ │ ├── variant_t.end.hpp │ │ │ │ ├── variant_t.start.hpp │ │ │ │ ├── verifiertrackhdr_t.end.hpp │ │ │ │ ├── verifiertrackhdr_t.start.hpp │ │ │ │ ├── versioned_stream_t.end.hpp │ │ │ │ ├── versioned_stream_t.start.hpp │ │ │ │ ├── video_monitor_descriptor_t.end.hpp │ │ │ │ ├── video_monitor_descriptor_t.start.hpp │ │ │ │ ├── vs_fixedfileinfo_t.end.hpp │ │ │ │ ├── vs_fixedfileinfo_t.start.hpp │ │ │ │ ├── vstate_t.end.hpp │ │ │ │ ├── vstate_t.start.hpp │ │ │ │ ├── wcrange_t.end.hpp │ │ │ │ ├── wcrange_t.start.hpp │ │ │ │ ├── win16rect_t.end.hpp │ │ │ │ ├── win16rect_t.start.hpp │ │ │ │ ├── windowinfo_t.end.hpp │ │ │ │ ├── windowinfo_t.start.hpp │ │ │ │ ├── windowplacement_t.end.hpp │ │ │ │ ├── windowplacement_t.start.hpp │ │ │ │ ├── windowpos_t.end.hpp │ │ │ │ ├── windowpos_t.start.hpp │ │ │ │ ├── wndclassa_t.end.hpp │ │ │ │ ├── wndclassa_t.start.hpp │ │ │ │ ├── wndclassexa_t.end.hpp │ │ │ │ ├── wndclassexa_t.start.hpp │ │ │ │ ├── wndclassexw_t.end.hpp │ │ │ │ ├── wndclassexw_t.start.hpp │ │ │ │ ├── wndclassw_t.end.hpp │ │ │ │ ├── wndclassw_t.start.hpp │ │ │ │ ├── wnode_all_data_t.end.hpp │ │ │ │ ├── wnode_all_data_t.start.hpp │ │ │ │ ├── wnode_event_item_t.end.hpp │ │ │ │ ├── wnode_event_item_t.start.hpp │ │ │ │ ├── wnode_event_reference_t.end.hpp │ │ │ │ ├── wnode_event_reference_t.start.hpp │ │ │ │ ├── wnode_method_item_t.end.hpp │ │ │ │ ├── wnode_method_item_t.start.hpp │ │ │ │ ├── wnode_single_instance_t.end.hpp │ │ │ │ ├── wnode_single_instance_t.start.hpp │ │ │ │ ├── wnode_single_item_t.end.hpp │ │ │ │ ├── wnode_single_item_t.start.hpp │ │ │ │ ├── wnode_too_small_t.end.hpp │ │ │ │ ├── wnode_too_small_t.start.hpp │ │ │ │ ├── wpp_binary_t.end.hpp │ │ │ │ ├── wpp_binary_t.start.hpp │ │ │ │ ├── wtssession_notification_t.end.hpp │ │ │ │ ├── wtssession_notification_t.start.hpp │ │ │ │ ├── x_apt_add_ref_data_t.end.hpp │ │ │ │ ├── x_apt_add_ref_data_t.start.hpp │ │ │ │ ├── x_apt_callback_t.end.hpp │ │ │ │ ├── x_apt_callback_t.start.hpp │ │ │ │ ├── x_apt_qi_data_t.end.hpp │ │ │ │ ├── x_apt_qi_data_t.start.hpp │ │ │ │ ├── x_apt_release_data_t.end.hpp │ │ │ │ ├── x_apt_release_data_t.start.hpp │ │ │ │ ├── x_ctx_disconnect_data_t.end.hpp │ │ │ │ ├── x_ctx_disconnect_data_t.start.hpp │ │ │ │ ├── x_ctx_marshal_data_t.end.hpp │ │ │ │ ├── x_ctx_marshal_data_t.start.hpp │ │ │ │ ├── x_ctx_qi_data_t.end.hpp │ │ │ │ ├── x_ctx_qi_data_t.start.hpp │ │ │ │ ├── x_ctx_wrapper_data_t.end.hpp │ │ │ │ ├── x_ctx_wrapper_data_t.start.hpp │ │ │ │ ├── xform_t.end.hpp │ │ │ │ └── xform_t.start.hpp │ │ │ ├── main_header_t.hpp │ │ │ ├── mdicreatestructa_t.hpp │ │ │ ├── mdicreatestructw_t.hpp │ │ │ ├── mdinextmenu_t.hpp │ │ │ ├── measureitemstruct_t.hpp │ │ │ ├── memctx_t.hpp │ │ │ ├── menubarinfo_t.hpp │ │ │ ├── menugetobjectinfo_t.hpp │ │ │ ├── menuinfo_t.hpp │ │ │ ├── menuiteminfoa_t.hpp │ │ │ ├── menuiteminfow_t.hpp │ │ │ ├── metafilepict_t.hpp │ │ │ ├── metaheader_t.hpp │ │ │ ├── metarecord_t.hpp │ │ │ ├── method_info_t.hpp │ │ │ ├── methoddata_t.hpp │ │ │ ├── minimizedmetrics_t.hpp │ │ │ ├── minmaxinfo_t.hpp │ │ │ ├── mkreduce_t.hpp │ │ │ ├── mksys_t.hpp │ │ │ ├── monitorinfo_t.hpp │ │ │ ├── monitorinfoexa_t.hpp │ │ │ ├── monitorinfoexw_t.hpp │ │ │ ├── mousehookstruct_t.hpp │ │ │ ├── mousehookstructex_t.hpp │ │ │ ├── mouseinput_t.hpp │ │ │ ├── mousekeys_t.hpp │ │ │ ├── mousemovepoint_t.hpp │ │ │ ├── msg_routing_info_t.hpp │ │ │ ├── msg_t.hpp │ │ │ ├── msgboxparamsa_t.hpp │ │ │ ├── msgboxparamsw_t.hpp │ │ │ ├── mshctx_t.hpp │ │ │ ├── mshlflags_t.hpp │ │ │ ├── msiinstallcontext_t.hpp │ │ │ ├── msipackageinfo_t.hpp │ │ │ ├── msipatchstate_t.hpp │ │ │ ├── msllhookstruct_t.hpp │ │ │ ├── multi_qi_t.hpp │ │ │ ├── multikeyhelpa_t.hpp │ │ │ ├── multikeyhelpw_t.hpp │ │ │ ├── nccalcsize_params_t.hpp │ │ │ ├── newtextmetrica_t.hpp │ │ │ ├── newtextmetricexa_t.hpp │ │ │ ├── newtextmetricexw_t.hpp │ │ │ ├── newtextmetricw_t.hpp │ │ │ ├── nmhdr_t.hpp │ │ │ ├── nonclientmetricsa_t.hpp │ │ │ ├── nonclientmetricsw_t.hpp │ │ │ ├── obj_lock/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── objectdescriptor_t.hpp │ │ │ ├── objflags_t.hpp │ │ │ ├── objref_t.hpp │ │ │ ├── objrefdata_t.hpp │ │ │ ├── oibdg_flags_t.hpp │ │ │ ├── oid_data_t.hpp │ │ │ ├── oifi_t.hpp │ │ │ ├── ole_menu_group_widths_t.hpp │ │ │ ├── oleclose_t.hpp │ │ │ ├── olecontf_t.hpp │ │ │ ├── olegetmoniker_t.hpp │ │ │ ├── olelinkbind_t.hpp │ │ │ ├── olemisc_t.hpp │ │ │ ├── olerender_t.hpp │ │ │ ├── oletlsflags_t.hpp │ │ │ ├── oleupdate_t.hpp │ │ │ ├── oleverb_t.hpp │ │ │ ├── oleverbattrib_t.hpp │ │ │ ├── olewhichmk_t.hpp │ │ │ ├── opaque_data_t.hpp │ │ │ ├── orflag_t.hpp │ │ │ ├── orpc_extent_array_t.hpp │ │ │ ├── orpc_extent_t.hpp │ │ │ ├── orpcthat_t.hpp │ │ │ ├── orpcthis_t.hpp │ │ │ ├── ort_t.hpp │ │ │ ├── outgoing_activation_data_t.hpp │ │ │ ├── outgoing_call_data_t.hpp │ │ │ ├── oxid_info_t.hpp │ │ │ ├── oxidflags_t.hpp │ │ │ ├── page_entry_t.hpp │ │ │ ├── paintstruct_t.hpp │ │ │ ├── paletteentry_t.hpp │ │ │ ├── panose_t.hpp │ │ │ ├── paramdata_t.hpp │ │ │ ├── paramdesc_t.hpp │ │ │ ├── paramdescex_t.hpp │ │ │ ├── parseaction_t.hpp │ │ │ ├── pcb_t.hpp │ │ │ ├── pelarray_t.hpp │ │ │ ├── pendingmsg_t.hpp │ │ │ ├── pendingtype_t.hpp │ │ │ ├── pgallocatorflags_t.hpp │ │ │ ├── pi_flags_t.hpp │ │ │ ├── pid_data_t.hpp │ │ │ ├── pixelformatdescriptor_t.hpp │ │ │ ├── placeablemetaheader_t.hpp │ │ │ ├── point_t.hpp │ │ │ ├── pointer_button_change_type_t.hpp │ │ │ ├── pointer_device_cursor_info_t.hpp │ │ │ ├── pointer_device_cursor_type_t.hpp │ │ │ ├── pointer_device_info_t.hpp │ │ │ ├── pointer_device_property_t.hpp │ │ │ ├── pointer_device_type_t.hpp │ │ │ ├── pointer_info_t.hpp │ │ │ ├── pointer_input_type_t.hpp │ │ │ ├── pointer_pen_info_t.hpp │ │ │ ├── pointer_touch_info_t.hpp │ │ │ ├── pointer_type_info_t.hpp │ │ │ ├── pointfx_t.hpp │ │ │ ├── points_t.hpp │ │ │ ├── policy_entry_t.hpp │ │ │ ├── polytexta_t.hpp │ │ │ ├── polytextw_t.hpp │ │ │ ├── preferred_server_bitness_t.hpp │ │ │ ├── process_type_t.hpp │ │ │ ├── propmarshalheader_t.hpp │ │ │ ├── props_out_info_t.hpp │ │ │ ├── propspec_t.hpp │ │ │ ├── propvariant_t.hpp │ │ │ ├── protocol_argument_t.hpp │ │ │ ├── protocoldata_t.hpp │ │ │ ├── protocolfilterdata_t.hpp │ │ │ ├── proxy_file_info_t.hpp │ │ │ ├── psuaction_t.hpp │ │ │ ├── q/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── qicontext_t.hpp │ │ │ ├── querycontext_t.hpp │ │ │ ├── queryoption_t.hpp │ │ │ ├── rawhid_t.hpp │ │ │ ├── rawinput_t.hpp │ │ │ ├── rawinputdevice_t.hpp │ │ │ ├── rawinputdevicelist_t.hpp │ │ │ ├── rawinputheader_t.hpp │ │ │ ├── rawkeyboard_t.hpp │ │ │ ├── rawmouse_t.hpp │ │ │ ├── reconvertstring_t.hpp │ │ │ ├── rect_t.hpp │ │ │ ├── reg_if_t.hpp │ │ │ ├── regcls_t.hpp │ │ │ ├── registerworda_t.hpp │ │ │ ├── registerwordw_t.hpp │ │ │ ├── regkind_t.hpp │ │ │ ├── rem_bindinfo_t.hpp │ │ │ ├── rem_brush_t.hpp │ │ │ ├── rem_formatetc_t.hpp │ │ │ ├── rem_hbitmap_t.hpp │ │ │ ├── rem_henhmetafile_t.hpp │ │ │ ├── rem_hglobal_t.hpp │ │ │ ├── rem_hmetafilepict_t.hpp │ │ │ ├── rem_hpalette_t.hpp │ │ │ ├── rem_snb_t.hpp │ │ │ ├── rem_stgmedium_t.hpp │ │ │ ├── reminterfaceref_t.hpp │ │ │ ├── remqiresult_t.hpp │ │ │ ├── resource_gate_id_t.hpp │ │ │ ├── rgbquad_t.hpp │ │ │ ├── rgbtriple_t.hpp │ │ │ ├── rid_device_info_hid_t.hpp │ │ │ ├── rid_device_info_keyboard_t.hpp │ │ │ ├── rid_device_info_mouse_t.hpp │ │ │ ├── rid_device_info_t.hpp │ │ │ ├── roidflag_t.hpp │ │ │ ├── rpc_call_attributes_v1_a_t.hpp │ │ │ ├── rpc_call_attributes_v1_w_t.hpp │ │ │ ├── rpc_call_attributes_v2_a_t.hpp │ │ │ ├── rpc_call_attributes_v2_w_t.hpp │ │ │ ├── rpc_call_attributes_v3_a_t.hpp │ │ │ ├── rpc_call_attributes_v3_w_t.hpp │ │ │ ├── rpc_call_client_locality_t.hpp │ │ │ ├── rpc_call_type_t.hpp │ │ │ ├── rpc_ee_info_param_t.hpp │ │ │ ├── rpc_error_enum_handle_t.hpp │ │ │ ├── rpc_extended_error_info_t.hpp │ │ │ ├── rpc_local_address_format_t.hpp │ │ │ ├── rpcolemessage_t.hpp │ │ │ ├── rpcopt_properties_t.hpp │ │ │ ├── rpcopt_server_locality_values_t.hpp │ │ │ ├── run_as_type_t.hpp │ │ │ ├── rundown_result_t.hpp │ │ │ ├── s_ctx_list_index_t.hpp │ │ │ ├── s_ole_tls_data_t.hpp │ │ │ ├── s_window_data_t.hpp │ │ │ ├── safearray_t.hpp │ │ │ ├── safearraybound_t.hpp │ │ │ ├── scm_reply_info_data_t.hpp │ │ │ ├── scm_request_info_data_t.hpp │ │ │ ├── scmsa_t.hpp │ │ │ ├── scriptflags_t.hpp │ │ │ ├── scrollbarinfo_t.hpp │ │ │ ├── scrollinfo_t.hpp │ │ │ ├── sdbbmachineinfo_t.hpp │ │ │ ├── sdbdatabaseinfo_t.hpp │ │ │ ├── sdbdeviceinfo_t.hpp │ │ │ ├── sdbentryinfo_t.hpp │ │ │ ├── sdbmsifindinfo_t.hpp │ │ │ ├── sdbmsilookupstate_t.hpp │ │ │ ├── sdbmsitransforminfo_t.hpp │ │ │ ├── sdbqueryresult_t.hpp │ │ │ ├── security_info_data_t.hpp │ │ │ ├── securitybinding_t.hpp │ │ │ ├── serializedpropertyvalue_t.hpp │ │ │ ├── serialkeysa_t.hpp │ │ │ ├── serialkeysw_t.hpp │ │ │ ├── server_information_t.hpp │ │ │ ├── servercall_t.hpp │ │ │ ├── sf_type_t.hpp │ │ │ ├── shutdown_type_t.hpp │ │ │ ├── size_t.hpp │ │ │ ├── smflags_t.hpp │ │ │ ├── soap_activation_info_t.hpp │ │ │ ├── softdistinfo_t.hpp │ │ │ ├── sole_authentication_info_t.hpp │ │ │ ├── sole_authentication_list_t.hpp │ │ │ ├── sole_authentication_service_t.hpp │ │ │ ├── soundsentrya_t.hpp │ │ │ ├── soundsentryw_t.hpp │ │ │ ├── special_properties_data_t.hpp │ │ │ ├── sps_cache_t.hpp │ │ │ ├── sps_chain_t.hpp │ │ │ ├── sqi_result_t.hpp │ │ │ ├── ssid_identifier_authority_t.hpp │ │ │ ├── start_param_t.hpp │ │ │ ├── statdata_t.hpp │ │ │ ├── statflag_t.hpp │ │ │ ├── statpropsetstg_t.hpp │ │ │ ├── statpropstg_t.hpp │ │ │ ├── statstg_t.hpp │ │ │ ├── std_disc_data_t.hpp │ │ │ ├── std_marshal_data_t.hpp │ │ │ ├── std_release_data_t.hpp │ │ │ ├── std_unmarshal_data_t.hpp │ │ │ ├── stdid_flags_t.hpp │ │ │ ├── stdmshlflags_t.hpp │ │ │ ├── stdobjref_t.hpp │ │ │ ├── stgc_t.hpp │ │ │ ├── stgmedium_t.hpp │ │ │ ├── stgmove_t.hpp │ │ │ ├── stgoptions_t.hpp │ │ │ ├── stgty_t.hpp │ │ │ ├── stickykeys_t.hpp │ │ │ ├── storage_layout_t.hpp │ │ │ ├── stream_ace_t.hpp │ │ │ ├── stream_acl_t.hpp │ │ │ ├── stream_header_t.hpp │ │ │ ├── stream_seek_t.hpp │ │ │ ├── stream_sid_t.hpp │ │ │ ├── stringbinding_t.hpp │ │ │ ├── stylebufa_t.hpp │ │ │ ├── stylebufw_t.hpp │ │ │ ├── stylestruct_t.hpp │ │ │ ├── switch_context_attribute_t.hpp │ │ │ ├── switch_context_create_param_t.hpp │ │ │ ├── switch_context_data_t.hpp │ │ │ ├── switch_context_platform_details_t.hpp │ │ │ ├── switch_context_t.hpp │ │ │ ├── syskind_t.hpp │ │ │ ├── textmetrica_t.hpp │ │ │ ├── textmetricw_t.hpp │ │ │ ├── threadinfo/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── titlebarinfo_t.hpp │ │ │ ├── titlebarinfoex_t.hpp │ │ │ ├── tlg_aggregate_options_t.hpp │ │ │ ├── tlibattr_t.hpp │ │ │ ├── tls_map_entry_t.hpp │ │ │ ├── togglekeys_t.hpp │ │ │ ├── touch_hit_testing_input_t.hpp │ │ │ ├── touch_hit_testing_proximity_evaluation_t.hpp │ │ │ ├── touch_prediction_parameters_t.hpp │ │ │ ├── touchinput_t.hpp │ │ │ ├── tpmparams_t.hpp │ │ │ ├── trackmouseevent_t.hpp │ │ │ ├── ttpolycurve_t.hpp │ │ │ ├── ttpolygonheader_t.hpp │ │ │ ├── tymed_t.hpp │ │ │ ├── typeattr_t.hpp │ │ │ ├── typedesc_t.hpp │ │ │ ├── typeflags_t.hpp │ │ │ ├── typekind_t.hpp │ │ │ ├── tyspec_t.hpp │ │ │ ├── updatelayeredwindowinfo_t.hpp │ │ │ ├── urltemplate_t.hpp │ │ │ ├── urlzone_t.hpp │ │ │ ├── usage_properties_t.hpp │ │ │ ├── userclasstype_t.hpp │ │ │ ├── userobjectflags_t.hpp │ │ │ ├── vardesc_t.hpp │ │ │ ├── varflags_t.hpp │ │ │ ├── variant_t.hpp │ │ │ ├── varkind_t.hpp │ │ │ ├── verifiertrackhdr_t.hpp │ │ │ ├── versioned_stream_t.hpp │ │ │ ├── video_monitor_descriptor_t.hpp │ │ │ ├── vs_fixedfileinfo_t.hpp │ │ │ ├── vstate_t.hpp │ │ │ ├── wcrange_t.hpp │ │ │ ├── win16rect_t.hpp │ │ │ ├── windowinfo_t.hpp │ │ │ ├── windowplacement_t.hpp │ │ │ ├── windowpos_t.hpp │ │ │ ├── wmi_clock_type_t.hpp │ │ │ ├── wnd/ │ │ │ │ ├── api.hpp │ │ │ │ ├── magic/ │ │ │ │ │ ├── api.end.hpp │ │ │ │ │ └── api.start.hpp │ │ │ │ └── protected_large_unicode_string_wn_dstr_name/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── wndclassa_t.hpp │ │ │ ├── wndclassexa_t.hpp │ │ │ ├── wndclassexw_t.hpp │ │ │ ├── wndclassw_t.hpp │ │ │ ├── wnode_all_data_t.hpp │ │ │ ├── wnode_event_item_t.hpp │ │ │ ├── wnode_event_reference_t.hpp │ │ │ ├── wnode_method_item_t.hpp │ │ │ ├── wnode_single_instance_t.hpp │ │ │ ├── wnode_single_item_t.hpp │ │ │ ├── wnode_too_small_t.hpp │ │ │ ├── wpp_binary_t.hpp │ │ │ ├── wtssession_notification_t.hpp │ │ │ ├── x_apt_add_ref_data_t.hpp │ │ │ ├── x_apt_callback_t.hpp │ │ │ ├── x_apt_qi_data_t.hpp │ │ │ ├── x_apt_release_data_t.hpp │ │ │ ├── x_ctx_disconnect_data_t.hpp │ │ │ ├── x_ctx_marshal_data_t.hpp │ │ │ ├── x_ctx_qi_data_t.hpp │ │ │ ├── x_ctx_wrapper_data_t.hpp │ │ │ ├── xform_t.hpp │ │ │ └── xmlemem_type_t.hpp │ │ ├── tcp/ │ │ │ ├── api.hpp │ │ │ └── magic/ │ │ │ ├── api.end.hpp │ │ │ └── api.start.hpp │ │ ├── tdi/ │ │ │ ├── api.hpp │ │ │ └── magic/ │ │ │ ├── api.end.hpp │ │ │ └── api.start.hpp │ │ ├── tlg/ │ │ │ ├── agg_internal_stats_t.hpp │ │ │ ├── aggr_session_t.hpp │ │ │ ├── api.hpp │ │ │ ├── blob_t.hpp │ │ │ ├── event_metadata_t.hpp │ │ │ ├── flags_t.hpp │ │ │ ├── in_t.hpp │ │ │ ├── magic/ │ │ │ │ ├── agg_internal_stats_t.end.hpp │ │ │ │ ├── agg_internal_stats_t.start.hpp │ │ │ │ ├── aggr_session_t.end.hpp │ │ │ │ ├── aggr_session_t.start.hpp │ │ │ │ ├── api.end.hpp │ │ │ │ ├── api.start.hpp │ │ │ │ ├── event_metadata_t.end.hpp │ │ │ │ ├── event_metadata_t.start.hpp │ │ │ │ ├── provider_metadata_t.end.hpp │ │ │ │ ├── provider_metadata_t.start.hpp │ │ │ │ ├── provider_t.end.hpp │ │ │ │ ├── provider_t.start.hpp │ │ │ │ ├── wrapper_binary_t.end.hpp │ │ │ │ ├── wrapper_binary_t.start.hpp │ │ │ │ ├── wrapper_ptr_size_t.end.hpp │ │ │ │ ├── wrapper_ptr_size_t.start.hpp │ │ │ │ ├── wrapper_ptr_size_type_t.end.hpp │ │ │ │ └── wrapper_ptr_size_type_t.start.hpp │ │ │ ├── options_t.hpp │ │ │ ├── out_t.hpp │ │ │ ├── provider_metadata_t.hpp │ │ │ ├── provider_t.hpp │ │ │ ├── wrapper_binary_t.hpp │ │ │ ├── wrapper_ptr_size_t.hpp │ │ │ └── wrapper_ptr_size_type_t.hpp │ │ ├── tm/ │ │ │ ├── api.hpp │ │ │ └── magic/ │ │ │ ├── api.end.hpp │ │ │ └── api.start.hpp │ │ ├── tp/ │ │ │ ├── alpc_t.hpp │ │ │ ├── api.hpp │ │ │ ├── callback_environ_v3_t.hpp │ │ │ ├── callback_instance_t.hpp │ │ │ ├── callback_priority_t.hpp │ │ │ ├── cleanup_group_t.hpp │ │ │ ├── debug_class_t.hpp │ │ │ ├── debug_free_info_t.hpp │ │ │ ├── direct_t.hpp │ │ │ ├── io_t.hpp │ │ │ ├── job_t.hpp │ │ │ ├── log_level_t.hpp │ │ │ ├── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ ├── api.start.hpp │ │ │ │ ├── callback_environ_v3_t.end.hpp │ │ │ │ ├── callback_environ_v3_t.start.hpp │ │ │ │ ├── debug_free_info_t.end.hpp │ │ │ │ ├── debug_free_info_t.start.hpp │ │ │ │ ├── direct_t.end.hpp │ │ │ │ ├── direct_t.start.hpp │ │ │ │ ├── pool_stack_information_t.end.hpp │ │ │ │ ├── pool_stack_information_t.start.hpp │ │ │ │ ├── task_callbacks_t.end.hpp │ │ │ │ ├── task_callbacks_t.start.hpp │ │ │ │ ├── task_t.end.hpp │ │ │ │ └── task_t.start.hpp │ │ │ ├── pool_stack_information_t.hpp │ │ │ ├── pool_t.hpp │ │ │ ├── task_callbacks_t.hpp │ │ │ ├── task_t.hpp │ │ │ ├── timer_t.hpp │ │ │ ├── trace_type_t.hpp │ │ │ ├── wait_t.hpp │ │ │ └── work_t.hpp │ │ ├── tpp/ │ │ │ ├── api.hpp │ │ │ ├── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ └── thread_data_callback_t.hpp │ │ ├── trace/ │ │ │ ├── api.hpp │ │ │ ├── buffer_t.hpp │ │ │ ├── control_information_class_t.hpp │ │ │ ├── enable_context_ex_t.hpp │ │ │ ├── enable_context_t.hpp │ │ │ ├── enable_flag_ext_header_t.hpp │ │ │ ├── enable_flag_ext_item_t.hpp │ │ │ ├── enable_flag_extension_t.hpp │ │ │ ├── enable_info_t.hpp │ │ │ ├── guid_info_t.hpp │ │ │ ├── guid_properties_t.hpp │ │ │ ├── guid_registration_t.hpp │ │ │ ├── information_class_t.hpp │ │ │ ├── level_t.hpp │ │ │ ├── logfile_header32_t.hpp │ │ │ ├── logfile_header64_t.hpp │ │ │ ├── logfile_header_t.hpp │ │ │ ├── logging_metadata_t.hpp │ │ │ ├── logging_thread_activity_id_setter_t.hpp │ │ │ ├── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ ├── api.start.hpp │ │ │ │ ├── buffer_t.end.hpp │ │ │ │ ├── buffer_t.start.hpp │ │ │ │ ├── enable_context_ex_t.end.hpp │ │ │ │ ├── enable_context_ex_t.start.hpp │ │ │ │ ├── enable_context_t.end.hpp │ │ │ │ ├── enable_context_t.start.hpp │ │ │ │ ├── enable_flag_ext_header_t.end.hpp │ │ │ │ ├── enable_flag_ext_header_t.start.hpp │ │ │ │ ├── enable_flag_ext_item_t.end.hpp │ │ │ │ ├── enable_flag_ext_item_t.start.hpp │ │ │ │ ├── enable_flag_extension_t.end.hpp │ │ │ │ ├── enable_flag_extension_t.start.hpp │ │ │ │ ├── enable_info_t.end.hpp │ │ │ │ ├── enable_info_t.start.hpp │ │ │ │ ├── guid_info_t.end.hpp │ │ │ │ ├── guid_info_t.start.hpp │ │ │ │ ├── guid_properties_t.end.hpp │ │ │ │ ├── guid_properties_t.start.hpp │ │ │ │ ├── guid_registration_t.end.hpp │ │ │ │ ├── guid_registration_t.start.hpp │ │ │ │ ├── logfile_header32_t.end.hpp │ │ │ │ ├── logfile_header32_t.start.hpp │ │ │ │ ├── logfile_header64_t.end.hpp │ │ │ │ ├── logfile_header64_t.start.hpp │ │ │ │ ├── logfile_header_t.end.hpp │ │ │ │ ├── logfile_header_t.start.hpp │ │ │ │ ├── logging_metadata_t.end.hpp │ │ │ │ ├── logging_metadata_t.start.hpp │ │ │ │ ├── logging_thread_activity_id_setter_t.end.hpp │ │ │ │ ├── logging_thread_activity_id_setter_t.start.hpp │ │ │ │ ├── periodic_capture_state_info_t.end.hpp │ │ │ │ ├── periodic_capture_state_info_t.start.hpp │ │ │ │ ├── profile_interval_t.end.hpp │ │ │ │ ├── profile_interval_t.start.hpp │ │ │ │ ├── provider_instance_info_t.end.hpp │ │ │ │ ├── provider_instance_info_t.start.hpp │ │ │ │ ├── stack_caching_info_t.end.hpp │ │ │ │ ├── stack_caching_info_t.start.hpp │ │ │ │ ├── version_info_t.end.hpp │ │ │ │ └── version_info_t.start.hpp │ │ │ ├── periodic_capture_state_info_t.hpp │ │ │ ├── profile_interval_t.hpp │ │ │ ├── provider_instance_info_t.hpp │ │ │ ├── query_info_class_t.hpp │ │ │ ├── stack_caching_info_t.hpp │ │ │ └── version_info_t.hpp │ │ ├── ttm/ │ │ │ ├── api.hpp │ │ │ └── magic/ │ │ │ ├── api.end.hpp │ │ │ └── api.start.hpp │ │ ├── ttmi/ │ │ │ ├── api.hpp │ │ │ └── magic/ │ │ │ ├── api.end.hpp │ │ │ └── api.start.hpp │ │ ├── ttmp/ │ │ │ ├── api.hpp │ │ │ └── magic/ │ │ │ ├── api.end.hpp │ │ │ └── api.start.hpp │ │ ├── txtp/ │ │ │ ├── api.hpp │ │ │ └── magic/ │ │ │ ├── api.end.hpp │ │ │ └── api.start.hpp │ │ ├── ver/ │ │ │ ├── api.hpp │ │ │ ├── deadlock_globals_t.hpp │ │ │ ├── deadlock_node_t.hpp │ │ │ ├── deadlock_resource_t.hpp │ │ │ ├── deadlock_resource_type_t.hpp │ │ │ ├── deadlock_thread_t.hpp │ │ │ ├── fault_trace_t.hpp │ │ │ ├── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ ├── api.start.hpp │ │ │ │ ├── deadlock_globals_t.end.hpp │ │ │ │ ├── deadlock_globals_t.start.hpp │ │ │ │ ├── deadlock_node_t.end.hpp │ │ │ │ ├── deadlock_node_t.start.hpp │ │ │ │ ├── deadlock_resource_t.end.hpp │ │ │ │ ├── deadlock_resource_t.start.hpp │ │ │ │ ├── deadlock_thread_t.end.hpp │ │ │ │ ├── deadlock_thread_t.start.hpp │ │ │ │ ├── fault_trace_t.end.hpp │ │ │ │ ├── fault_trace_t.start.hpp │ │ │ │ ├── pool_entry_inuse_t.end.hpp │ │ │ │ ├── pool_entry_inuse_t.start.hpp │ │ │ │ ├── pool_entry_t.end.hpp │ │ │ │ ├── pool_entry_t.start.hpp │ │ │ │ ├── pool_page_header_t.end.hpp │ │ │ │ ├── pool_page_header_t.start.hpp │ │ │ │ ├── track_irql_t.end.hpp │ │ │ │ ├── track_irql_t.start.hpp │ │ │ │ ├── verifier_issue_t.end.hpp │ │ │ │ ├── verifier_issue_t.start.hpp │ │ │ │ ├── verifier_pool_header_t.end.hpp │ │ │ │ └── verifier_pool_header_t.start.hpp │ │ │ ├── pool_entry_inuse_t.hpp │ │ │ ├── pool_entry_t.hpp │ │ │ ├── pool_page_header_t.hpp │ │ │ ├── track_irql_t.hpp │ │ │ ├── verifier_issue_t.hpp │ │ │ └── verifier_pool_header_t.hpp │ │ ├── verf/ │ │ │ ├── address_range_t.hpp │ │ │ ├── api.hpp │ │ │ ├── avl_table_t.hpp │ │ │ ├── avl_tree_node_ex_t.hpp │ │ │ ├── avl_tree_node_t.hpp │ │ │ ├── avl_tree_t.hpp │ │ │ ├── common_context_header_t.hpp │ │ │ ├── dispatch_table_header_t.hpp │ │ │ ├── dispatch_table_type_t.hpp │ │ │ ├── driver_io_callbacks_t.hpp │ │ │ ├── hook_process_info_t.hpp │ │ │ ├── ke_critical_region_trace_t.hpp │ │ │ ├── magic/ │ │ │ │ ├── address_range_t.end.hpp │ │ │ │ ├── address_range_t.start.hpp │ │ │ │ ├── api.end.hpp │ │ │ │ ├── api.start.hpp │ │ │ │ ├── avl_table_t.end.hpp │ │ │ │ ├── avl_table_t.start.hpp │ │ │ │ ├── avl_tree_node_ex_t.end.hpp │ │ │ │ ├── avl_tree_node_ex_t.start.hpp │ │ │ │ ├── avl_tree_node_t.end.hpp │ │ │ │ ├── avl_tree_node_t.start.hpp │ │ │ │ ├── avl_tree_t.end.hpp │ │ │ │ ├── avl_tree_t.start.hpp │ │ │ │ ├── common_context_header_t.end.hpp │ │ │ │ ├── common_context_header_t.start.hpp │ │ │ │ ├── dispatch_table_header_t.end.hpp │ │ │ │ ├── dispatch_table_header_t.start.hpp │ │ │ │ ├── driver_io_callbacks_t.end.hpp │ │ │ │ ├── driver_io_callbacks_t.start.hpp │ │ │ │ ├── hook_process_info_t.end.hpp │ │ │ │ ├── hook_process_info_t.start.hpp │ │ │ │ ├── ke_critical_region_trace_t.end.hpp │ │ │ │ ├── ke_critical_region_trace_t.start.hpp │ │ │ │ ├── ndis_dispatch_table_t.end.hpp │ │ │ │ ├── ndis_dispatch_table_t.start.hpp │ │ │ │ ├── pool_trace_t.end.hpp │ │ │ │ ├── pool_trace_t.start.hpp │ │ │ │ ├── suspect_driver_entry_t.end.hpp │ │ │ │ ├── suspect_driver_entry_t.start.hpp │ │ │ │ ├── target_all_shared_export_thunks_t.end.hpp │ │ │ │ ├── target_all_shared_export_thunks_t.start.hpp │ │ │ │ ├── target_driver_t.end.hpp │ │ │ │ ├── target_driver_t.start.hpp │ │ │ │ ├── target_verified_driver_data_t.end.hpp │ │ │ │ ├── target_verified_driver_data_t.start.hpp │ │ │ │ ├── tracker_stamp_t.end.hpp │ │ │ │ ├── tracker_stamp_t.start.hpp │ │ │ │ ├── tracker_t.end.hpp │ │ │ │ ├── tracker_t.start.hpp │ │ │ │ ├── watchdog_irp_t.end.hpp │ │ │ │ ├── watchdog_irp_t.start.hpp │ │ │ │ ├── wdfdevicecreate_context_t.end.hpp │ │ │ │ ├── wdfdevicecreate_context_t.start.hpp │ │ │ │ ├── wdfioqueuecreate_context_t.end.hpp │ │ │ │ └── wdfioqueuecreate_context_t.start.hpp │ │ │ ├── ndis_dispatch_table_t.hpp │ │ │ ├── pool_trace_t.hpp │ │ │ ├── suspect_driver_entry_t.hpp │ │ │ ├── target_all_shared_export_thunks_t.hpp │ │ │ ├── target_driver_t.hpp │ │ │ ├── target_verified_driver_data_t.hpp │ │ │ ├── tracker_stamp_t.hpp │ │ │ ├── tracker_t.hpp │ │ │ ├── watchdog_irp_t.hpp │ │ │ ├── wdfdevicecreate_context_t.hpp │ │ │ └── wdfioqueuecreate_context_t.hpp │ │ ├── verfp/ │ │ │ ├── api.hpp │ │ │ └── magic/ │ │ │ ├── api.end.hpp │ │ │ └── api.start.hpp │ │ ├── verifier/ │ │ │ ├── api.hpp │ │ │ ├── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ ├── api.start.hpp │ │ │ │ ├── thread_state_t.end.hpp │ │ │ │ └── thread_state_t.start.hpp │ │ │ ├── mode_t.hpp │ │ │ ├── shared_export_thunk_t.hpp │ │ │ └── thread_state_t.hpp │ │ ├── vhd/ │ │ │ ├── api.hpp │ │ │ └── magic/ │ │ │ ├── api.end.hpp │ │ │ └── api.start.hpp │ │ ├── vhdi/ │ │ │ ├── api.hpp │ │ │ └── magic/ │ │ │ ├── api.end.hpp │ │ │ └── api.start.hpp │ │ ├── vid/ │ │ │ ├── api.hpp │ │ │ └── magic/ │ │ │ ├── api.end.hpp │ │ │ └── api.start.hpp │ │ ├── video/ │ │ │ ├── access_range_t.hpp │ │ │ ├── api.hpp │ │ │ ├── bank_select_t.hpp │ │ │ ├── bank_type_t.hpp │ │ │ ├── child_enum_info_t.hpp │ │ │ ├── child_state_configuration_t.hpp │ │ │ ├── child_state_t.hpp │ │ │ ├── clutdata_t.hpp │ │ │ ├── color_capabilities_t.hpp │ │ │ ├── color_lut_data_t.hpp │ │ │ ├── cursor_attributes_t.hpp │ │ │ ├── cursor_position_t.hpp │ │ │ ├── debug_level_t.hpp │ │ │ ├── debug_report_t.hpp │ │ │ ├── device_data_type_t.hpp │ │ │ ├── device_session_status_t.hpp │ │ │ ├── hardware_configuration_data_t.hpp │ │ │ ├── hardware_state_header_t.hpp │ │ │ ├── hardware_state_t.hpp │ │ │ ├── hw_initialization_data_t.hpp │ │ │ ├── i2c_control_t.hpp │ │ │ ├── load_font_information_t.hpp │ │ │ ├── lut_rgb256words_t.hpp │ │ │ ├── magic/ │ │ │ │ ├── access_range_t.end.hpp │ │ │ │ ├── access_range_t.start.hpp │ │ │ │ ├── api.end.hpp │ │ │ │ ├── api.start.hpp │ │ │ │ ├── bank_select_t.end.hpp │ │ │ │ ├── bank_select_t.start.hpp │ │ │ │ ├── child_enum_info_t.end.hpp │ │ │ │ ├── child_enum_info_t.start.hpp │ │ │ │ ├── child_state_configuration_t.end.hpp │ │ │ │ ├── child_state_configuration_t.start.hpp │ │ │ │ ├── child_state_t.end.hpp │ │ │ │ ├── child_state_t.start.hpp │ │ │ │ ├── clutdata_t.end.hpp │ │ │ │ ├── clutdata_t.start.hpp │ │ │ │ ├── color_capabilities_t.end.hpp │ │ │ │ ├── color_capabilities_t.start.hpp │ │ │ │ ├── color_lut_data_t.end.hpp │ │ │ │ ├── color_lut_data_t.start.hpp │ │ │ │ ├── cursor_attributes_t.end.hpp │ │ │ │ ├── cursor_attributes_t.start.hpp │ │ │ │ ├── cursor_position_t.end.hpp │ │ │ │ ├── cursor_position_t.start.hpp │ │ │ │ ├── device_session_status_t.end.hpp │ │ │ │ ├── device_session_status_t.start.hpp │ │ │ │ ├── hardware_configuration_data_t.end.hpp │ │ │ │ ├── hardware_configuration_data_t.start.hpp │ │ │ │ ├── hardware_state_header_t.end.hpp │ │ │ │ ├── hardware_state_header_t.start.hpp │ │ │ │ ├── hardware_state_t.end.hpp │ │ │ │ ├── hardware_state_t.start.hpp │ │ │ │ ├── hw_initialization_data_t.end.hpp │ │ │ │ ├── hw_initialization_data_t.start.hpp │ │ │ │ ├── i2c_control_t.end.hpp │ │ │ │ ├── i2c_control_t.start.hpp │ │ │ │ ├── load_font_information_t.end.hpp │ │ │ │ ├── load_font_information_t.start.hpp │ │ │ │ ├── lut_rgb256words_t.end.hpp │ │ │ │ ├── lut_rgb256words_t.start.hpp │ │ │ │ ├── memory_information_t.end.hpp │ │ │ │ ├── memory_information_t.start.hpp │ │ │ │ ├── memory_t.end.hpp │ │ │ │ ├── memory_t.start.hpp │ │ │ │ ├── mode_information_t.end.hpp │ │ │ │ ├── mode_information_t.start.hpp │ │ │ │ ├── mode_t.end.hpp │ │ │ │ ├── mode_t.start.hpp │ │ │ │ ├── num_modes_t.end.hpp │ │ │ │ ├── num_modes_t.start.hpp │ │ │ │ ├── palette_data_t.end.hpp │ │ │ │ ├── palette_data_t.start.hpp │ │ │ │ ├── performance_counter_t.end.hpp │ │ │ │ ├── performance_counter_t.start.hpp │ │ │ │ ├── pointer_attributes_t.end.hpp │ │ │ │ ├── pointer_attributes_t.start.hpp │ │ │ │ ├── pointer_capabilities_t.end.hpp │ │ │ │ ├── pointer_capabilities_t.start.hpp │ │ │ │ ├── pointer_position_t.end.hpp │ │ │ │ ├── pointer_position_t.start.hpp │ │ │ │ ├── port_agp_interface_2_t.end.hpp │ │ │ │ ├── port_agp_interface_2_t.start.hpp │ │ │ │ ├── port_agp_interface_t.end.hpp │ │ │ │ ├── port_agp_interface_t.start.hpp │ │ │ │ ├── port_agp_services_t.end.hpp │ │ │ │ ├── port_agp_services_t.start.hpp │ │ │ │ ├── port_config_info_t.end.hpp │ │ │ │ ├── port_config_info_t.start.hpp │ │ │ │ ├── port_debug_report_interface_t.end.hpp │ │ │ │ ├── port_debug_report_interface_t.start.hpp │ │ │ │ ├── port_i2c_interface_2_t.end.hpp │ │ │ │ ├── port_i2c_interface_2_t.start.hpp │ │ │ │ ├── port_i2c_interface_t.end.hpp │ │ │ │ ├── port_i2c_interface_t.start.hpp │ │ │ │ ├── port_int10_interface_t.end.hpp │ │ │ │ ├── port_int10_interface_t.start.hpp │ │ │ │ ├── port_wcmemoryprotection_interface_t.end.hpp │ │ │ │ ├── port_wcmemoryprotection_interface_t.start.hpp │ │ │ │ ├── power_management_t.end.hpp │ │ │ │ ├── power_management_t.start.hpp │ │ │ │ ├── public_access_ranges_t.end.hpp │ │ │ │ ├── public_access_ranges_t.start.hpp │ │ │ │ ├── query_performance_counter_t.end.hpp │ │ │ │ ├── query_performance_counter_t.start.hpp │ │ │ │ ├── record_t.end.hpp │ │ │ │ ├── record_t.start.hpp │ │ │ │ ├── register_vdm_t.end.hpp │ │ │ │ ├── register_vdm_t.start.hpp │ │ │ │ ├── request_packet_t.end.hpp │ │ │ │ ├── request_packet_t.start.hpp │ │ │ │ ├── share_memory_information_t.end.hpp │ │ │ │ ├── share_memory_information_t.start.hpp │ │ │ │ ├── share_memory_t.end.hpp │ │ │ │ ├── share_memory_t.start.hpp │ │ │ │ ├── vdm_t.end.hpp │ │ │ │ ├── vdm_t.start.hpp │ │ │ │ ├── win32k_callbacks_params_t.end.hpp │ │ │ │ ├── win32k_callbacks_params_t.start.hpp │ │ │ │ ├── win32k_callbacks_t.end.hpp │ │ │ │ ├── win32k_callbacks_t.start.hpp │ │ │ │ ├── x86_bios_arguments_t.end.hpp │ │ │ │ └── x86_bios_arguments_t.start.hpp │ │ │ ├── memory_budget_module_data/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── memory_information_t.hpp │ │ │ ├── memory_t.hpp │ │ │ ├── mode_information_t.hpp │ │ │ ├── mode_t.hpp │ │ │ ├── num_modes_t.hpp │ │ │ ├── palette_data_t.hpp │ │ │ ├── performance_counter_t.hpp │ │ │ ├── pointer_attributes_t.hpp │ │ │ ├── pointer_capabilities_t.hpp │ │ │ ├── pointer_position_t.hpp │ │ │ ├── port_agp_interface_2_t.hpp │ │ │ ├── port_agp_interface_t.hpp │ │ │ ├── port_agp_services_t.hpp │ │ │ ├── port_config_info_t.hpp │ │ │ ├── port_debug_report_interface_t.hpp │ │ │ ├── port_i2c_interface_2_t.hpp │ │ │ ├── port_i2c_interface_t.hpp │ │ │ ├── port_int10_interface_t.hpp │ │ │ ├── port_wcmemoryprotection_interface_t.hpp │ │ │ ├── power_management_t.hpp │ │ │ ├── power_state_t.hpp │ │ │ ├── public_access_ranges_t.hpp │ │ │ ├── query_performance_counter_t.hpp │ │ │ ├── record_t.hpp │ │ │ ├── register_vdm_t.hpp │ │ │ ├── request_packet_t.hpp │ │ │ ├── share_memory_information_t.hpp │ │ │ ├── share_memory_t.hpp │ │ │ ├── synchronize_priority_t.hpp │ │ │ ├── vdm_t.hpp │ │ │ ├── win32k_callbacks_params_t.hpp │ │ │ ├── win32k_callbacks_params_type_t.hpp │ │ │ ├── win32k_callbacks_t.hpp │ │ │ └── x86_bios_arguments_t.hpp │ │ ├── vrp/ │ │ │ ├── api.hpp │ │ │ └── magic/ │ │ │ ├── api.end.hpp │ │ │ └── api.start.hpp │ │ ├── wdf/ │ │ │ ├── affinity_token_t.hpp │ │ │ ├── agp_target_bus_interface_standard_t.hpp │ │ │ ├── as_activator_subtask_t.hpp │ │ │ ├── as_activator_t.hpp │ │ │ ├── as_activator_task_t.hpp │ │ │ ├── as_connection_t.hpp │ │ │ ├── as_device_t.hpp │ │ │ ├── as_pdc_phase_blocker_group_client_t.hpp │ │ │ ├── as_pdc_phase_blocker_group_t.hpp │ │ │ ├── as_pre_veto_t.hpp │ │ │ ├── as_soc_subsystem_t.hpp │ │ │ ├── bdcb_callback_type_t.hpp │ │ │ ├── bdcb_status_update_context_t.hpp │ │ │ ├── bdcb_status_update_type_t.hpp │ │ │ ├── bind_info2_t.hpp │ │ │ ├── bind_info_t.hpp │ │ │ ├── bm_request_type_t.hpp │ │ │ ├── bootdisk_information_ex_t.hpp │ │ │ ├── bugcheck_codes_t.hpp │ │ │ ├── bus_resource_update_interface_t.hpp │ │ │ ├── c_umdf_svc_config_t.hpp │ │ │ ├── cancel_irp_completion_ownership_t.hpp │ │ │ ├── chartype_t.hpp │ │ │ ├── child_address_description_header_t.hpp │ │ │ ├── child_address_description_header_v1_0_t.hpp │ │ │ ├── child_address_description_header_v1_11_t.hpp │ │ │ ├── child_address_description_header_v1_13_t.hpp │ │ │ ├── child_address_description_header_v1_15_t.hpp │ │ │ ├── child_address_description_header_v1_17_t.hpp │ │ │ ├── child_address_description_header_v1_1_t.hpp │ │ │ ├── child_address_description_header_v1_5_t.hpp │ │ │ ├── child_address_description_header_v1_7_t.hpp │ │ │ ├── child_address_description_header_v1_9_t.hpp │ │ │ ├── child_identification_description_header_t.hpp │ │ │ ├── child_identification_description_header_v1_0_t.hpp │ │ │ ├── child_identification_description_header_v1_11_t.hpp │ │ │ ├── child_identification_description_header_v1_13_t.hpp │ │ │ ├── child_identification_description_header_v1_15_t.hpp │ │ │ ├── child_identification_description_header_v1_17_t.hpp │ │ │ ├── child_identification_description_header_v1_1_t.hpp │ │ │ ├── child_identification_description_header_v1_5_t.hpp │ │ │ ├── child_identification_description_header_v1_7_t.hpp │ │ │ ├── child_identification_description_header_v1_9_t.hpp │ │ │ ├── child_list_config_t.hpp │ │ │ ├── child_list_config_v1_0_t.hpp │ │ │ ├── child_list_config_v1_11_t.hpp │ │ │ ├── child_list_config_v1_13_t.hpp │ │ │ ├── child_list_config_v1_15_t.hpp │ │ │ ├── child_list_config_v1_17_t.hpp │ │ │ ├── child_list_config_v1_1_t.hpp │ │ │ ├── child_list_config_v1_5_t.hpp │ │ │ ├── child_list_config_v1_7_t.hpp │ │ │ ├── child_list_config_v1_9_t.hpp │ │ │ ├── child_list_iterator_t.hpp │ │ │ ├── child_list_iterator_v1_0_t.hpp │ │ │ ├── child_list_iterator_v1_11_t.hpp │ │ │ ├── child_list_iterator_v1_13_t.hpp │ │ │ ├── child_list_iterator_v1_15_t.hpp │ │ │ ├── child_list_iterator_v1_17_t.hpp │ │ │ ├── child_list_iterator_v1_1_t.hpp │ │ │ ├── child_list_iterator_v1_5_t.hpp │ │ │ ├── child_list_iterator_v1_7_t.hpp │ │ │ ├── child_list_iterator_v1_9_t.hpp │ │ │ ├── child_list_retrieve_device_status_t.hpp │ │ │ ├── child_retrieve_info_t.hpp │ │ │ ├── child_retrieve_info_v1_0_t.hpp │ │ │ ├── child_retrieve_info_v1_11_t.hpp │ │ │ ├── child_retrieve_info_v1_13_t.hpp │ │ │ ├── child_retrieve_info_v1_15_t.hpp │ │ │ ├── child_retrieve_info_v1_17_t.hpp │ │ │ ├── child_retrieve_info_v1_1_t.hpp │ │ │ ├── child_retrieve_info_v1_5_t.hpp │ │ │ ├── child_retrieve_info_v1_7_t.hpp │ │ │ ├── child_retrieve_info_v1_9_t.hpp │ │ │ ├── class_bind_info2_t.hpp │ │ │ ├── class_bind_info_t.hpp │ │ │ ├── class_bind_info_v1_11_t.hpp │ │ │ ├── class_bind_info_v1_13_t.hpp │ │ │ ├── class_bind_info_v1_15_t.hpp │ │ │ ├── class_bind_info_v1_17_t.hpp │ │ │ ├── class_bind_info_v1_9_t.hpp │ │ │ ├── class_extension_descriptor_t.hpp │ │ │ ├── class_extension_descriptor_v1_0_t.hpp │ │ │ ├── class_extension_descriptor_v1_11_t.hpp │ │ │ ├── class_extension_descriptor_v1_13_t.hpp │ │ │ ├── class_extension_descriptor_v1_15_t.hpp │ │ │ ├── class_extension_descriptor_v1_17_t.hpp │ │ │ ├── class_extension_descriptor_v1_1_t.hpp │ │ │ ├── class_extension_descriptor_v1_5_t.hpp │ │ │ ├── class_extension_descriptor_v1_7_t.hpp │ │ │ ├── class_extension_descriptor_v1_9_t.hpp │ │ │ ├── class_library_info_t.hpp │ │ │ ├── class_library_info_v1_11_t.hpp │ │ │ ├── class_library_info_v1_13_t.hpp │ │ │ ├── class_library_info_v1_15_t.hpp │ │ │ ├── class_library_info_v1_17_t.hpp │ │ │ ├── class_library_info_v1_9_t.hpp │ │ │ ├── class_version_t.hpp │ │ │ ├── class_version_v1_11_t.hpp │ │ │ ├── class_version_v1_13_t.hpp │ │ │ ├── class_version_v1_15_t.hpp │ │ │ ├── class_version_v1_17_t.hpp │ │ │ ├── class_version_v1_9_t.hpp │ │ │ ├── client_info_t.hpp │ │ │ ├── cmc_driver_info_t.hpp │ │ │ ├── common_buffer_config_t.hpp │ │ │ ├── common_buffer_config_v1_11_t.hpp │ │ │ ├── common_buffer_config_v1_13_t.hpp │ │ │ ├── common_buffer_config_v1_15_t.hpp │ │ │ ├── common_buffer_config_v1_17_t.hpp │ │ │ ├── common_buffer_config_v1_1_t.hpp │ │ │ ├── common_buffer_config_v1_5_t.hpp │ │ │ ├── common_buffer_config_v1_7_t.hpp │ │ │ ├── common_buffer_config_v1_9_t.hpp │ │ │ ├── component_t.hpp │ │ │ ├── component_type_t.hpp │ │ │ ├── composite_device_capabilities_t.hpp │ │ │ ├── control_init_t.hpp │ │ │ ├── count_string_t.hpp │ │ │ ├── cpe_driver_info_t.hpp │ │ │ ├── create_user_process_ecp_context_t.hpp │ │ │ ├── ctor_status_t.hpp │ │ │ ├── cumdf_unknown_t.hpp │ │ │ ├── custom_type_context_t.hpp │ │ │ ├── custom_type_context_v1_11_t.hpp │ │ │ ├── custom_type_context_v1_13_t.hpp │ │ │ ├── custom_type_context_v1_15_t.hpp │ │ │ ├── custom_type_context_v1_17_t.hpp │ │ │ ├── cx_file_object_init_t.hpp │ │ │ ├── cx_pnp_power_callbacks_init_t.hpp │ │ │ ├── d3cold_aux_power_and_timing_interface_t.hpp │ │ │ ├── debugging_device_in_use_information_t.hpp │ │ │ ├── debugging_device_in_use_t.hpp │ │ │ ├── device_failed_action_t.hpp │ │ │ ├── device_handler_object_t.hpp │ │ │ ├── device_install_state_t.hpp │ │ │ ├── device_interface_change_notification_t.hpp │ │ │ ├── device_interface_property_data_v1_13_t.hpp │ │ │ ├── device_interface_property_data_v1_15_t.hpp │ │ │ ├── device_interface_property_data_v1_17_t.hpp │ │ │ ├── device_io_type_t.hpp │ │ │ ├── device_pnp_capabilities_t.hpp │ │ │ ├── device_pnp_capabilities_v1_0_t.hpp │ │ │ ├── device_pnp_capabilities_v1_11_t.hpp │ │ │ ├── device_pnp_capabilities_v1_13_t.hpp │ │ │ ├── device_pnp_capabilities_v1_15_t.hpp │ │ │ ├── device_pnp_capabilities_v1_17_t.hpp │ │ │ ├── device_pnp_capabilities_v1_1_t.hpp │ │ │ ├── device_pnp_capabilities_v1_5_t.hpp │ │ │ ├── device_pnp_capabilities_v1_7_t.hpp │ │ │ ├── device_pnp_capabilities_v1_9_t.hpp │ │ │ ├── device_pnp_notification_data_t.hpp │ │ │ ├── device_pnp_notification_data_v1_0_t.hpp │ │ │ ├── device_pnp_notification_data_v1_11_t.hpp │ │ │ ├── device_pnp_notification_data_v1_13_t.hpp │ │ │ ├── device_pnp_notification_data_v1_15_t.hpp │ │ │ ├── device_pnp_notification_data_v1_17_t.hpp │ │ │ ├── device_pnp_notification_data_v1_1_t.hpp │ │ │ ├── device_pnp_notification_data_v1_5_t.hpp │ │ │ ├── device_pnp_notification_data_v1_7_t.hpp │ │ │ ├── device_pnp_notification_data_v1_9_t.hpp │ │ │ ├── device_pnp_state_t.hpp │ │ │ ├── device_power_capabilities_t.hpp │ │ │ ├── device_power_capabilities_v1_0_t.hpp │ │ │ ├── device_power_capabilities_v1_11_t.hpp │ │ │ ├── device_power_capabilities_v1_13_t.hpp │ │ │ ├── device_power_capabilities_v1_15_t.hpp │ │ │ ├── device_power_capabilities_v1_17_t.hpp │ │ │ ├── device_power_capabilities_v1_1_t.hpp │ │ │ ├── device_power_capabilities_v1_5_t.hpp │ │ │ ├── device_power_capabilities_v1_7_t.hpp │ │ │ ├── device_power_capabilities_v1_9_t.hpp │ │ │ ├── device_power_notification_data_t.hpp │ │ │ ├── device_power_notification_data_v1_0_t.hpp │ │ │ ├── device_power_notification_data_v1_11_t.hpp │ │ │ ├── device_power_notification_data_v1_13_t.hpp │ │ │ ├── device_power_notification_data_v1_15_t.hpp │ │ │ ├── device_power_notification_data_v1_17_t.hpp │ │ │ ├── device_power_notification_data_v1_1_t.hpp │ │ │ ├── device_power_notification_data_v1_5_t.hpp │ │ │ ├── device_power_notification_data_v1_7_t.hpp │ │ │ ├── device_power_notification_data_v1_9_t.hpp │ │ │ ├── device_power_policy_idle_settings_t.hpp │ │ │ ├── device_power_policy_idle_settings_v1_0_t.hpp │ │ │ ├── device_power_policy_idle_settings_v1_11_t.hpp │ │ │ ├── device_power_policy_idle_settings_v1_13_t.hpp │ │ │ ├── device_power_policy_idle_settings_v1_15_t.hpp │ │ │ ├── device_power_policy_idle_settings_v1_17_t.hpp │ │ │ ├── device_power_policy_idle_settings_v1_1_t.hpp │ │ │ ├── device_power_policy_idle_settings_v1_5_t.hpp │ │ │ ├── device_power_policy_idle_settings_v1_7_t.hpp │ │ │ ├── device_power_policy_idle_settings_v1_9_t.hpp │ │ │ ├── device_power_policy_notification_data_t.hpp │ │ │ ├── device_power_policy_notification_data_v1_0_t.hpp │ │ │ ├── device_power_policy_notification_data_v1_11_t.hpp │ │ │ ├── device_power_policy_notification_data_v1_13_t.hpp │ │ │ ├── device_power_policy_notification_data_v1_15_t.hpp │ │ │ ├── device_power_policy_notification_data_v1_17_t.hpp │ │ │ ├── device_power_policy_notification_data_v1_1_t.hpp │ │ │ ├── device_power_policy_notification_data_v1_5_t.hpp │ │ │ ├── device_power_policy_notification_data_v1_7_t.hpp │ │ │ ├── device_power_policy_notification_data_v1_9_t.hpp │ │ │ ├── device_power_policy_state_t.hpp │ │ │ ├── device_power_policy_wake_settings_t.hpp │ │ │ ├── device_power_policy_wake_settings_v1_0_t.hpp │ │ │ ├── device_power_policy_wake_settings_v1_11_t.hpp │ │ │ ├── device_power_policy_wake_settings_v1_13_t.hpp │ │ │ ├── device_power_policy_wake_settings_v1_15_t.hpp │ │ │ ├── device_power_policy_wake_settings_v1_17_t.hpp │ │ │ ├── device_power_policy_wake_settings_v1_1_t.hpp │ │ │ ├── device_power_policy_wake_settings_v1_5_t.hpp │ │ │ ├── device_power_policy_wake_settings_v1_7_t.hpp │ │ │ ├── device_power_policy_wake_settings_v1_9_t.hpp │ │ │ ├── device_power_state_t.hpp │ │ │ ├── device_property_data_t.hpp │ │ │ ├── device_property_data_v1_13_t.hpp │ │ │ ├── device_property_data_v1_15_t.hpp │ │ │ ├── device_property_data_v1_17_t.hpp │ │ │ ├── device_registry_property_t.hpp │ │ │ ├── device_removal_policy_t.hpp │ │ │ ├── device_shutdown_flags_t.hpp │ │ │ ├── device_start_state_type_t.hpp │ │ │ ├── device_state_flags_t.hpp │ │ │ ├── device_state_t.hpp │ │ │ ├── device_state_v1_0_t.hpp │ │ │ ├── device_state_v1_11_t.hpp │ │ │ ├── device_state_v1_13_t.hpp │ │ │ ├── device_state_v1_15_t.hpp │ │ │ ├── device_state_v1_17_t.hpp │ │ │ ├── device_state_v1_1_t.hpp │ │ │ ├── device_state_v1_27_t.hpp │ │ │ ├── device_state_v1_5_t.hpp │ │ │ ├── device_state_v1_7_t.hpp │ │ │ ├── device_state_v1_9_t.hpp │ │ │ ├── devproperty_t.hpp │ │ │ ├── dispatch_irp_to_io_queue_flags_t.hpp │ │ │ ├── dma_direction_t.hpp │ │ │ ├── dma_enabler_config_flags_t.hpp │ │ │ ├── dma_enabler_config_t.hpp │ │ │ ├── dma_enabler_config_v1_0_t.hpp │ │ │ ├── dma_enabler_config_v1_11_t.hpp │ │ │ ├── dma_enabler_config_v1_13_t.hpp │ │ │ ├── dma_enabler_config_v1_15_t.hpp │ │ │ ├── dma_enabler_config_v1_17_t.hpp │ │ │ ├── dma_enabler_config_v1_1_t.hpp │ │ │ ├── dma_enabler_config_v1_5_t.hpp │ │ │ ├── dma_enabler_config_v1_7_t.hpp │ │ │ ├── dma_enabler_config_v1_9_t.hpp │ │ │ ├── dma_profile_t.hpp │ │ │ ├── dma_system_profile_config_t.hpp │ │ │ ├── dma_system_profile_config_v1_11_t.hpp │ │ │ ├── dma_system_profile_config_v1_13_t.hpp │ │ │ ├── dma_system_profile_config_v1_15_t.hpp │ │ │ ├── dma_system_profile_config_v1_17_t.hpp │ │ │ ├── dpc_config_t.hpp │ │ │ ├── dpc_config_v1_0_t.hpp │ │ │ ├── dpc_config_v1_11_t.hpp │ │ │ ├── dpc_config_v1_13_t.hpp │ │ │ ├── dpc_config_v1_15_t.hpp │ │ │ ├── dpc_config_v1_17_t.hpp │ │ │ ├── dpc_config_v1_1_t.hpp │ │ │ ├── dpc_config_v1_5_t.hpp │ │ │ ├── dpc_config_v1_7_t.hpp │ │ │ ├── dpc_config_v1_9_t.hpp │ │ │ ├── driver_config_t.hpp │ │ │ ├── driver_config_v1_0_t.hpp │ │ │ ├── driver_config_v1_11_t.hpp │ │ │ ├── driver_config_v1_13_t.hpp │ │ │ ├── driver_config_v1_15_t.hpp │ │ │ ├── driver_config_v1_17_t.hpp │ │ │ ├── driver_config_v1_1_t.hpp │ │ │ ├── driver_config_v1_5_t.hpp │ │ │ ├── driver_config_v1_7_t.hpp │ │ │ ├── driver_config_v1_9_t.hpp │ │ │ ├── driver_globals_t.hpp │ │ │ ├── driver_globals_v1_0_t.hpp │ │ │ ├── driver_globals_v1_11_t.hpp │ │ │ ├── driver_globals_v1_13_t.hpp │ │ │ ├── driver_globals_v1_15_t.hpp │ │ │ ├── driver_globals_v1_17_t.hpp │ │ │ ├── driver_globals_v1_1_t.hpp │ │ │ ├── driver_globals_v1_5_t.hpp │ │ │ ├── driver_globals_v1_7_t.hpp │ │ │ ├── driver_globals_v1_9_t.hpp │ │ │ ├── driver_init_flags_t.hpp │ │ │ ├── driver_stop_type_t.hpp │ │ │ ├── driver_version_available_params_t.hpp │ │ │ ├── driver_version_available_params_v1_0_t.hpp │ │ │ ├── driver_version_available_params_v1_11_t.hpp │ │ │ ├── driver_version_available_params_v1_13_t.hpp │ │ │ ├── driver_version_available_params_v1_15_t.hpp │ │ │ ├── driver_version_available_params_v1_17_t.hpp │ │ │ ├── driver_version_available_params_v1_1_t.hpp │ │ │ ├── driver_version_available_params_v1_5_t.hpp │ │ │ ├── driver_version_available_params_v1_7_t.hpp │ │ │ ├── driver_version_available_params_v1_9_t.hpp │ │ │ ├── dsf_interface_t.hpp │ │ │ ├── endpoint_offload_notification_event_type_t.hpp │ │ │ ├── endpoint_offload_response_event_type_t.hpp │ │ │ ├── error_class_t.hpp │ │ │ ├── execution_level_t.hpp │ │ │ ├── extended_agp_register_t.hpp │ │ │ ├── fdo_event_callbacks_t.hpp │ │ │ ├── fdo_event_callbacks_v1_0_t.hpp │ │ │ ├── fdo_event_callbacks_v1_11_t.hpp │ │ │ ├── fdo_event_callbacks_v1_13_t.hpp │ │ │ ├── fdo_event_callbacks_v1_15_t.hpp │ │ │ ├── fdo_event_callbacks_v1_17_t.hpp │ │ │ ├── fdo_event_callbacks_v1_1_t.hpp │ │ │ ├── fdo_event_callbacks_v1_5_t.hpp │ │ │ ├── fdo_event_callbacks_v1_7_t.hpp │ │ │ ├── fdo_event_callbacks_v1_9_t.hpp │ │ │ ├── fdo_init_t.hpp │ │ │ ├── file_object_init_t.hpp │ │ │ ├── fileobject_class_t.hpp │ │ │ ├── fileobject_config_t.hpp │ │ │ ├── fileobject_config_v1_0_t.hpp │ │ │ ├── fileobject_config_v1_11_t.hpp │ │ │ ├── fileobject_config_v1_13_t.hpp │ │ │ ├── fileobject_config_v1_15_t.hpp │ │ │ ├── fileobject_config_v1_17_t.hpp │ │ │ ├── fileobject_config_v1_1_t.hpp │ │ │ ├── fileobject_config_v1_5_t.hpp │ │ │ ├── fileobject_config_v1_7_t.hpp │ │ │ ├── fileobject_config_v1_9_t.hpp │ │ │ ├── fpga_control_interface_t.hpp │ │ │ ├── function_level_device_reset_parameters_t.hpp │ │ │ ├── fxio_forward_progress_context_t.hpp │ │ │ ├── fxobject_flags_t.hpp │ │ │ ├── host_exit_code_t.hpp │ │ │ ├── hwprofile_change_notification_t.hpp │ │ │ ├── i_companion_library_t.hpp │ │ │ ├── i_device_companion_callbacks_t.hpp │ │ │ ├── i_device_companion_t.hpp │ │ │ ├── i_fx_has_callbacks_t.hpp │ │ │ ├── i_fx_memory_flags_t.hpp │ │ │ ├── i_fx_memory_t.hpp │ │ │ ├── idle_policy_settings_t.hpp │ │ │ ├── idle_timeout_management_t.hpp │ │ │ ├── ifr_header_t.hpp │ │ │ ├── ifr_offset_t.hpp │ │ │ ├── ifr_record_t.hpp │ │ │ ├── interface_header_t.hpp │ │ │ ├── interrupt_config_t.hpp │ │ │ ├── interrupt_config_v1_0_t.hpp │ │ │ ├── interrupt_config_v1_11_beta_t.hpp │ │ │ ├── interrupt_config_v1_11_t.hpp │ │ │ ├── interrupt_config_v1_13_t.hpp │ │ │ ├── interrupt_config_v1_15_t.hpp │ │ │ ├── interrupt_config_v1_17_t.hpp │ │ │ ├── interrupt_config_v1_1_t.hpp │ │ │ ├── interrupt_config_v1_5_t.hpp │ │ │ ├── interrupt_config_v1_7_t.hpp │ │ │ ├── interrupt_config_v1_9_t.hpp │ │ │ ├── interrupt_extended_policy_t.hpp │ │ │ ├── interrupt_extended_policy_v1_11_t.hpp │ │ │ ├── interrupt_extended_policy_v1_13_t.hpp │ │ │ ├── interrupt_extended_policy_v1_15_t.hpp │ │ │ ├── interrupt_extended_policy_v1_17_t.hpp │ │ │ ├── interrupt_extended_policy_v1_9_t.hpp │ │ │ ├── interrupt_info_t.hpp │ │ │ ├── interrupt_info_v1_0_t.hpp │ │ │ ├── interrupt_info_v1_11_t.hpp │ │ │ ├── interrupt_info_v1_13_t.hpp │ │ │ ├── interrupt_info_v1_15_t.hpp │ │ │ ├── interrupt_info_v1_17_t.hpp │ │ │ ├── interrupt_info_v1_1_t.hpp │ │ │ ├── interrupt_info_v1_5_t.hpp │ │ │ ├── interrupt_info_v1_7_t.hpp │ │ │ ├── interrupt_info_v1_9_t.hpp │ │ │ ├── interrupt_polarity_t.hpp │ │ │ ├── interrupt_policy_t.hpp │ │ │ ├── interrupt_priority_t.hpp │ │ │ ├── io_forward_progress_action_t.hpp │ │ │ ├── io_forward_progress_reserved_policy_settings_t.hpp │ │ │ ├── io_forward_progress_reserved_policy_t.hpp │ │ │ ├── io_queue_config_t.hpp │ │ │ ├── io_queue_config_v1_0_t.hpp │ │ │ ├── io_queue_config_v1_11_t.hpp │ │ │ ├── io_queue_config_v1_13_t.hpp │ │ │ ├── io_queue_config_v1_15_t.hpp │ │ │ ├── io_queue_config_v1_17_t.hpp │ │ │ ├── io_queue_config_v1_1_t.hpp │ │ │ ├── io_queue_config_v1_5_t.hpp │ │ │ ├── io_queue_config_v1_7_t.hpp │ │ │ ├── io_queue_config_v1_9_t.hpp │ │ │ ├── io_queue_dispatch_type_t.hpp │ │ │ ├── io_queue_forward_progress_policy_t.hpp │ │ │ ├── io_queue_forward_progress_policy_v1_11_t.hpp │ │ │ ├── io_queue_forward_progress_policy_v1_13_t.hpp │ │ │ ├── io_queue_forward_progress_policy_v1_15_t.hpp │ │ │ ├── io_queue_forward_progress_policy_v1_17_t.hpp │ │ │ ├── io_queue_forward_progress_policy_v1_9_t.hpp │ │ │ ├── io_queue_state_t.hpp │ │ │ ├── io_target_open_params_t.hpp │ │ │ ├── io_target_open_params_v1_0_t.hpp │ │ │ ├── io_target_open_params_v1_11_t.hpp │ │ │ ├── io_target_open_params_v1_13_t.hpp │ │ │ ├── io_target_open_params_v1_15_t.hpp │ │ │ ├── io_target_open_params_v1_17_t.hpp │ │ │ ├── io_target_open_params_v1_1_t.hpp │ │ │ ├── io_target_open_params_v1_5_t.hpp │ │ │ ├── io_target_open_params_v1_7_t.hpp │ │ │ ├── io_target_open_params_v1_9_t.hpp │ │ │ ├── io_target_open_type_t.hpp │ │ │ ├── io_target_purge_io_action_t.hpp │ │ │ ├── io_target_sent_io_action_t.hpp │ │ │ ├── io_target_state_t.hpp │ │ │ ├── io_type_config_t.hpp │ │ │ ├── io_type_config_v1_13_t.hpp │ │ │ ├── io_type_config_v1_15_t.hpp │ │ │ ├── io_type_config_v1_17_t.hpp │ │ │ ├── irq_device_policy_ushort_t.hpp │ │ │ ├── iumdf_unknown_t.hpp │ │ │ ├── kaddress_range_descriptor_t.hpp │ │ │ ├── kaddress_range_t.hpp │ │ │ ├── kbugcheck_add_pages_t.hpp │ │ │ ├── kbugcheck_buffer_dump_state_t.hpp │ │ │ ├── kbugcheck_data_t.hpp │ │ │ ├── kbugcheck_dump_io_t.hpp │ │ │ ├── kbugcheck_dump_io_type_t.hpp │ │ │ ├── kbugcheck_remove_pages_t.hpp │ │ │ ├── kbugcheck_secondary_dump_data_ex_t.hpp │ │ │ ├── kbugcheck_secondary_dump_data_t.hpp │ │ │ ├── kbugcheck_triage_dump_data_t.hpp │ │ │ ├── kernel_soft_restart_notification_t.hpp │ │ │ ├── ktriage_dump_data_array_t.hpp │ │ │ ├── legacy_bus_information_t.hpp │ │ │ ├── library_info_t.hpp │ │ │ ├── library_module_t.hpp │ │ │ ├── loader_interface_class_bind_t.hpp │ │ │ ├── loader_interface_diagnostic_t.hpp │ │ │ ├── loader_interface_t.hpp │ │ │ ├── locale_update_t.hpp │ │ │ ├── magic/ │ │ │ │ ├── agp_target_bus_interface_standard_t.end.hpp │ │ │ │ ├── agp_target_bus_interface_standard_t.start.hpp │ │ │ │ ├── as_activator_subtask_t.end.hpp │ │ │ │ ├── as_activator_subtask_t.start.hpp │ │ │ │ ├── as_activator_t.end.hpp │ │ │ │ ├── as_activator_t.start.hpp │ │ │ │ ├── as_activator_task_t.end.hpp │ │ │ │ ├── as_activator_task_t.start.hpp │ │ │ │ ├── as_connection_t.end.hpp │ │ │ │ ├── as_connection_t.start.hpp │ │ │ │ ├── as_device_t.end.hpp │ │ │ │ ├── as_device_t.start.hpp │ │ │ │ ├── as_pdc_phase_blocker_group_client_t.end.hpp │ │ │ │ ├── as_pdc_phase_blocker_group_client_t.start.hpp │ │ │ │ ├── as_pdc_phase_blocker_group_t.end.hpp │ │ │ │ ├── as_pdc_phase_blocker_group_t.start.hpp │ │ │ │ ├── as_pre_veto_t.end.hpp │ │ │ │ ├── as_pre_veto_t.start.hpp │ │ │ │ ├── as_soc_subsystem_t.end.hpp │ │ │ │ ├── as_soc_subsystem_t.start.hpp │ │ │ │ ├── bdcb_status_update_context_t.end.hpp │ │ │ │ ├── bdcb_status_update_context_t.start.hpp │ │ │ │ ├── bind_info2_t.end.hpp │ │ │ │ ├── bind_info2_t.start.hpp │ │ │ │ ├── bind_info_t.end.hpp │ │ │ │ ├── bind_info_t.start.hpp │ │ │ │ ├── bm_request_type_t.end.hpp │ │ │ │ ├── bm_request_type_t.start.hpp │ │ │ │ ├── bootdisk_information_ex_t.end.hpp │ │ │ │ ├── bootdisk_information_ex_t.start.hpp │ │ │ │ ├── bus_resource_update_interface_t.end.hpp │ │ │ │ ├── bus_resource_update_interface_t.start.hpp │ │ │ │ ├── c_umdf_svc_config_t.end.hpp │ │ │ │ ├── c_umdf_svc_config_t.start.hpp │ │ │ │ ├── child_address_description_header_t.end.hpp │ │ │ │ ├── child_address_description_header_t.start.hpp │ │ │ │ ├── child_address_description_header_v1_0_t.end.hpp │ │ │ │ ├── child_address_description_header_v1_0_t.start.hpp │ │ │ │ ├── child_address_description_header_v1_11_t.end.hpp │ │ │ │ ├── child_address_description_header_v1_11_t.start.hpp │ │ │ │ ├── child_address_description_header_v1_13_t.end.hpp │ │ │ │ ├── child_address_description_header_v1_13_t.start.hpp │ │ │ │ ├── child_address_description_header_v1_15_t.end.hpp │ │ │ │ ├── child_address_description_header_v1_15_t.start.hpp │ │ │ │ ├── child_address_description_header_v1_17_t.end.hpp │ │ │ │ ├── child_address_description_header_v1_17_t.start.hpp │ │ │ │ ├── child_address_description_header_v1_1_t.end.hpp │ │ │ │ ├── child_address_description_header_v1_1_t.start.hpp │ │ │ │ ├── child_address_description_header_v1_5_t.end.hpp │ │ │ │ ├── child_address_description_header_v1_5_t.start.hpp │ │ │ │ ├── child_address_description_header_v1_7_t.end.hpp │ │ │ │ ├── child_address_description_header_v1_7_t.start.hpp │ │ │ │ ├── child_address_description_header_v1_9_t.end.hpp │ │ │ │ ├── child_address_description_header_v1_9_t.start.hpp │ │ │ │ ├── child_identification_description_header_t.end.hpp │ │ │ │ ├── child_identification_description_header_t.start.hpp │ │ │ │ ├── child_identification_description_header_v1_0_t.end.hpp │ │ │ │ ├── child_identification_description_header_v1_0_t.start.hpp │ │ │ │ ├── child_identification_description_header_v1_11_t.end.hpp │ │ │ │ ├── child_identification_description_header_v1_11_t.start.hpp │ │ │ │ ├── child_identification_description_header_v1_13_t.end.hpp │ │ │ │ ├── child_identification_description_header_v1_13_t.start.hpp │ │ │ │ ├── child_identification_description_header_v1_15_t.end.hpp │ │ │ │ ├── child_identification_description_header_v1_15_t.start.hpp │ │ │ │ ├── child_identification_description_header_v1_17_t.end.hpp │ │ │ │ ├── child_identification_description_header_v1_17_t.start.hpp │ │ │ │ ├── child_identification_description_header_v1_1_t.end.hpp │ │ │ │ ├── child_identification_description_header_v1_1_t.start.hpp │ │ │ │ ├── child_identification_description_header_v1_5_t.end.hpp │ │ │ │ ├── child_identification_description_header_v1_5_t.start.hpp │ │ │ │ ├── child_identification_description_header_v1_7_t.end.hpp │ │ │ │ ├── child_identification_description_header_v1_7_t.start.hpp │ │ │ │ ├── child_identification_description_header_v1_9_t.end.hpp │ │ │ │ ├── child_identification_description_header_v1_9_t.start.hpp │ │ │ │ ├── child_list_config_t.end.hpp │ │ │ │ ├── child_list_config_t.start.hpp │ │ │ │ ├── child_list_config_v1_0_t.end.hpp │ │ │ │ ├── child_list_config_v1_0_t.start.hpp │ │ │ │ ├── child_list_config_v1_11_t.end.hpp │ │ │ │ ├── child_list_config_v1_11_t.start.hpp │ │ │ │ ├── child_list_config_v1_13_t.end.hpp │ │ │ │ ├── child_list_config_v1_13_t.start.hpp │ │ │ │ ├── child_list_config_v1_15_t.end.hpp │ │ │ │ ├── child_list_config_v1_15_t.start.hpp │ │ │ │ ├── child_list_config_v1_17_t.end.hpp │ │ │ │ ├── child_list_config_v1_17_t.start.hpp │ │ │ │ ├── child_list_config_v1_1_t.end.hpp │ │ │ │ ├── child_list_config_v1_1_t.start.hpp │ │ │ │ ├── child_list_config_v1_5_t.end.hpp │ │ │ │ ├── child_list_config_v1_5_t.start.hpp │ │ │ │ ├── child_list_config_v1_7_t.end.hpp │ │ │ │ ├── child_list_config_v1_7_t.start.hpp │ │ │ │ ├── child_list_config_v1_9_t.end.hpp │ │ │ │ ├── child_list_config_v1_9_t.start.hpp │ │ │ │ ├── child_list_iterator_t.end.hpp │ │ │ │ ├── child_list_iterator_t.start.hpp │ │ │ │ ├── child_list_iterator_v1_0_t.end.hpp │ │ │ │ ├── child_list_iterator_v1_0_t.start.hpp │ │ │ │ ├── child_list_iterator_v1_11_t.end.hpp │ │ │ │ ├── child_list_iterator_v1_11_t.start.hpp │ │ │ │ ├── child_list_iterator_v1_13_t.end.hpp │ │ │ │ ├── child_list_iterator_v1_13_t.start.hpp │ │ │ │ ├── child_list_iterator_v1_15_t.end.hpp │ │ │ │ ├── child_list_iterator_v1_15_t.start.hpp │ │ │ │ ├── child_list_iterator_v1_17_t.end.hpp │ │ │ │ ├── child_list_iterator_v1_17_t.start.hpp │ │ │ │ ├── child_list_iterator_v1_1_t.end.hpp │ │ │ │ ├── child_list_iterator_v1_1_t.start.hpp │ │ │ │ ├── child_list_iterator_v1_5_t.end.hpp │ │ │ │ ├── child_list_iterator_v1_5_t.start.hpp │ │ │ │ ├── child_list_iterator_v1_7_t.end.hpp │ │ │ │ ├── child_list_iterator_v1_7_t.start.hpp │ │ │ │ ├── child_list_iterator_v1_9_t.end.hpp │ │ │ │ ├── child_list_iterator_v1_9_t.start.hpp │ │ │ │ ├── child_retrieve_info_t.end.hpp │ │ │ │ ├── child_retrieve_info_t.start.hpp │ │ │ │ ├── child_retrieve_info_v1_0_t.end.hpp │ │ │ │ ├── child_retrieve_info_v1_0_t.start.hpp │ │ │ │ ├── child_retrieve_info_v1_11_t.end.hpp │ │ │ │ ├── child_retrieve_info_v1_11_t.start.hpp │ │ │ │ ├── child_retrieve_info_v1_13_t.end.hpp │ │ │ │ ├── child_retrieve_info_v1_13_t.start.hpp │ │ │ │ ├── child_retrieve_info_v1_15_t.end.hpp │ │ │ │ ├── child_retrieve_info_v1_15_t.start.hpp │ │ │ │ ├── child_retrieve_info_v1_17_t.end.hpp │ │ │ │ ├── child_retrieve_info_v1_17_t.start.hpp │ │ │ │ ├── child_retrieve_info_v1_1_t.end.hpp │ │ │ │ ├── child_retrieve_info_v1_1_t.start.hpp │ │ │ │ ├── child_retrieve_info_v1_5_t.end.hpp │ │ │ │ ├── child_retrieve_info_v1_5_t.start.hpp │ │ │ │ ├── child_retrieve_info_v1_7_t.end.hpp │ │ │ │ ├── child_retrieve_info_v1_7_t.start.hpp │ │ │ │ ├── child_retrieve_info_v1_9_t.end.hpp │ │ │ │ ├── child_retrieve_info_v1_9_t.start.hpp │ │ │ │ ├── class_bind_info2_t.end.hpp │ │ │ │ ├── class_bind_info2_t.start.hpp │ │ │ │ ├── class_bind_info_t.end.hpp │ │ │ │ ├── class_bind_info_t.start.hpp │ │ │ │ ├── class_bind_info_v1_11_t.end.hpp │ │ │ │ ├── class_bind_info_v1_11_t.start.hpp │ │ │ │ ├── class_bind_info_v1_13_t.end.hpp │ │ │ │ ├── class_bind_info_v1_13_t.start.hpp │ │ │ │ ├── class_bind_info_v1_15_t.end.hpp │ │ │ │ ├── class_bind_info_v1_15_t.start.hpp │ │ │ │ ├── class_bind_info_v1_17_t.end.hpp │ │ │ │ ├── class_bind_info_v1_17_t.start.hpp │ │ │ │ ├── class_bind_info_v1_9_t.end.hpp │ │ │ │ ├── class_bind_info_v1_9_t.start.hpp │ │ │ │ ├── class_extension_descriptor_t.end.hpp │ │ │ │ ├── class_extension_descriptor_t.start.hpp │ │ │ │ ├── class_extension_descriptor_v1_0_t.end.hpp │ │ │ │ ├── class_extension_descriptor_v1_0_t.start.hpp │ │ │ │ ├── class_extension_descriptor_v1_11_t.end.hpp │ │ │ │ ├── class_extension_descriptor_v1_11_t.start.hpp │ │ │ │ ├── class_extension_descriptor_v1_13_t.end.hpp │ │ │ │ ├── class_extension_descriptor_v1_13_t.start.hpp │ │ │ │ ├── class_extension_descriptor_v1_15_t.end.hpp │ │ │ │ ├── class_extension_descriptor_v1_15_t.start.hpp │ │ │ │ ├── class_extension_descriptor_v1_17_t.end.hpp │ │ │ │ ├── class_extension_descriptor_v1_17_t.start.hpp │ │ │ │ ├── class_extension_descriptor_v1_1_t.end.hpp │ │ │ │ ├── class_extension_descriptor_v1_1_t.start.hpp │ │ │ │ ├── class_extension_descriptor_v1_5_t.end.hpp │ │ │ │ ├── class_extension_descriptor_v1_5_t.start.hpp │ │ │ │ ├── class_extension_descriptor_v1_7_t.end.hpp │ │ │ │ ├── class_extension_descriptor_v1_7_t.start.hpp │ │ │ │ ├── class_extension_descriptor_v1_9_t.end.hpp │ │ │ │ ├── class_extension_descriptor_v1_9_t.start.hpp │ │ │ │ ├── class_library_info_t.end.hpp │ │ │ │ ├── class_library_info_t.start.hpp │ │ │ │ ├── class_library_info_v1_11_t.end.hpp │ │ │ │ ├── class_library_info_v1_11_t.start.hpp │ │ │ │ ├── class_library_info_v1_13_t.end.hpp │ │ │ │ ├── class_library_info_v1_13_t.start.hpp │ │ │ │ ├── class_library_info_v1_15_t.end.hpp │ │ │ │ ├── class_library_info_v1_15_t.start.hpp │ │ │ │ ├── class_library_info_v1_17_t.end.hpp │ │ │ │ ├── class_library_info_v1_17_t.start.hpp │ │ │ │ ├── class_library_info_v1_9_t.end.hpp │ │ │ │ ├── class_library_info_v1_9_t.start.hpp │ │ │ │ ├── class_version_t.end.hpp │ │ │ │ ├── class_version_t.start.hpp │ │ │ │ ├── class_version_v1_11_t.end.hpp │ │ │ │ ├── class_version_v1_11_t.start.hpp │ │ │ │ ├── class_version_v1_13_t.end.hpp │ │ │ │ ├── class_version_v1_13_t.start.hpp │ │ │ │ ├── class_version_v1_15_t.end.hpp │ │ │ │ ├── class_version_v1_15_t.start.hpp │ │ │ │ ├── class_version_v1_17_t.end.hpp │ │ │ │ ├── class_version_v1_17_t.start.hpp │ │ │ │ ├── class_version_v1_9_t.end.hpp │ │ │ │ ├── class_version_v1_9_t.start.hpp │ │ │ │ ├── client_info_t.end.hpp │ │ │ │ ├── client_info_t.start.hpp │ │ │ │ ├── cmc_driver_info_t.end.hpp │ │ │ │ ├── cmc_driver_info_t.start.hpp │ │ │ │ ├── common_buffer_config_t.end.hpp │ │ │ │ ├── common_buffer_config_t.start.hpp │ │ │ │ ├── common_buffer_config_v1_11_t.end.hpp │ │ │ │ ├── common_buffer_config_v1_11_t.start.hpp │ │ │ │ ├── common_buffer_config_v1_13_t.end.hpp │ │ │ │ ├── common_buffer_config_v1_13_t.start.hpp │ │ │ │ ├── common_buffer_config_v1_15_t.end.hpp │ │ │ │ ├── common_buffer_config_v1_15_t.start.hpp │ │ │ │ ├── common_buffer_config_v1_17_t.end.hpp │ │ │ │ ├── common_buffer_config_v1_17_t.start.hpp │ │ │ │ ├── common_buffer_config_v1_1_t.end.hpp │ │ │ │ ├── common_buffer_config_v1_1_t.start.hpp │ │ │ │ ├── common_buffer_config_v1_5_t.end.hpp │ │ │ │ ├── common_buffer_config_v1_5_t.start.hpp │ │ │ │ ├── common_buffer_config_v1_7_t.end.hpp │ │ │ │ ├── common_buffer_config_v1_7_t.start.hpp │ │ │ │ ├── common_buffer_config_v1_9_t.end.hpp │ │ │ │ ├── common_buffer_config_v1_9_t.start.hpp │ │ │ │ ├── component_t.end.hpp │ │ │ │ ├── component_t.start.hpp │ │ │ │ ├── composite_device_capabilities_t.end.hpp │ │ │ │ ├── composite_device_capabilities_t.start.hpp │ │ │ │ ├── control_init_t.end.hpp │ │ │ │ ├── control_init_t.start.hpp │ │ │ │ ├── count_string_t.end.hpp │ │ │ │ ├── count_string_t.start.hpp │ │ │ │ ├── cpe_driver_info_t.end.hpp │ │ │ │ ├── cpe_driver_info_t.start.hpp │ │ │ │ ├── create_user_process_ecp_context_t.end.hpp │ │ │ │ ├── create_user_process_ecp_context_t.start.hpp │ │ │ │ ├── ctor_status_t.end.hpp │ │ │ │ ├── ctor_status_t.start.hpp │ │ │ │ ├── cumdf_unknown_t.end.hpp │ │ │ │ ├── cumdf_unknown_t.start.hpp │ │ │ │ ├── custom_type_context_t.end.hpp │ │ │ │ ├── custom_type_context_t.start.hpp │ │ │ │ ├── custom_type_context_v1_11_t.end.hpp │ │ │ │ ├── custom_type_context_v1_11_t.start.hpp │ │ │ │ ├── custom_type_context_v1_13_t.end.hpp │ │ │ │ ├── custom_type_context_v1_13_t.start.hpp │ │ │ │ ├── custom_type_context_v1_15_t.end.hpp │ │ │ │ ├── custom_type_context_v1_15_t.start.hpp │ │ │ │ ├── custom_type_context_v1_17_t.end.hpp │ │ │ │ ├── custom_type_context_v1_17_t.start.hpp │ │ │ │ ├── cx_file_object_init_t.end.hpp │ │ │ │ ├── cx_file_object_init_t.start.hpp │ │ │ │ ├── cx_pnp_power_callbacks_init_t.end.hpp │ │ │ │ ├── cx_pnp_power_callbacks_init_t.start.hpp │ │ │ │ ├── d3cold_aux_power_and_timing_interface_t.end.hpp │ │ │ │ ├── d3cold_aux_power_and_timing_interface_t.start.hpp │ │ │ │ ├── debugging_device_in_use_information_t.end.hpp │ │ │ │ ├── debugging_device_in_use_information_t.start.hpp │ │ │ │ ├── debugging_device_in_use_t.end.hpp │ │ │ │ ├── debugging_device_in_use_t.start.hpp │ │ │ │ ├── device_interface_change_notification_t.end.hpp │ │ │ │ ├── device_interface_change_notification_t.start.hpp │ │ │ │ ├── device_pnp_capabilities_t.end.hpp │ │ │ │ ├── device_pnp_capabilities_t.start.hpp │ │ │ │ ├── device_pnp_capabilities_v1_0_t.end.hpp │ │ │ │ ├── device_pnp_capabilities_v1_0_t.start.hpp │ │ │ │ ├── device_pnp_capabilities_v1_11_t.end.hpp │ │ │ │ ├── device_pnp_capabilities_v1_11_t.start.hpp │ │ │ │ ├── device_pnp_capabilities_v1_13_t.end.hpp │ │ │ │ ├── device_pnp_capabilities_v1_13_t.start.hpp │ │ │ │ ├── device_pnp_capabilities_v1_15_t.end.hpp │ │ │ │ ├── device_pnp_capabilities_v1_15_t.start.hpp │ │ │ │ ├── device_pnp_capabilities_v1_17_t.end.hpp │ │ │ │ ├── device_pnp_capabilities_v1_17_t.start.hpp │ │ │ │ ├── device_pnp_capabilities_v1_1_t.end.hpp │ │ │ │ ├── device_pnp_capabilities_v1_1_t.start.hpp │ │ │ │ ├── device_pnp_capabilities_v1_5_t.end.hpp │ │ │ │ ├── device_pnp_capabilities_v1_5_t.start.hpp │ │ │ │ ├── device_pnp_capabilities_v1_7_t.end.hpp │ │ │ │ ├── device_pnp_capabilities_v1_7_t.start.hpp │ │ │ │ ├── device_pnp_capabilities_v1_9_t.end.hpp │ │ │ │ ├── device_pnp_capabilities_v1_9_t.start.hpp │ │ │ │ ├── device_pnp_notification_data_t.end.hpp │ │ │ │ ├── device_pnp_notification_data_t.start.hpp │ │ │ │ ├── device_pnp_notification_data_v1_0_t.end.hpp │ │ │ │ ├── device_pnp_notification_data_v1_0_t.start.hpp │ │ │ │ ├── device_pnp_notification_data_v1_11_t.end.hpp │ │ │ │ ├── device_pnp_notification_data_v1_11_t.start.hpp │ │ │ │ ├── device_pnp_notification_data_v1_13_t.end.hpp │ │ │ │ ├── device_pnp_notification_data_v1_13_t.start.hpp │ │ │ │ ├── device_pnp_notification_data_v1_15_t.end.hpp │ │ │ │ ├── device_pnp_notification_data_v1_15_t.start.hpp │ │ │ │ ├── device_pnp_notification_data_v1_17_t.end.hpp │ │ │ │ ├── device_pnp_notification_data_v1_17_t.start.hpp │ │ │ │ ├── device_pnp_notification_data_v1_1_t.end.hpp │ │ │ │ ├── device_pnp_notification_data_v1_1_t.start.hpp │ │ │ │ ├── device_pnp_notification_data_v1_5_t.end.hpp │ │ │ │ ├── device_pnp_notification_data_v1_5_t.start.hpp │ │ │ │ ├── device_pnp_notification_data_v1_7_t.end.hpp │ │ │ │ ├── device_pnp_notification_data_v1_7_t.start.hpp │ │ │ │ ├── device_pnp_notification_data_v1_9_t.end.hpp │ │ │ │ ├── device_pnp_notification_data_v1_9_t.start.hpp │ │ │ │ ├── device_power_capabilities_t.end.hpp │ │ │ │ ├── device_power_capabilities_t.start.hpp │ │ │ │ ├── device_power_capabilities_v1_0_t.end.hpp │ │ │ │ ├── device_power_capabilities_v1_0_t.start.hpp │ │ │ │ ├── device_power_capabilities_v1_11_t.end.hpp │ │ │ │ ├── device_power_capabilities_v1_11_t.start.hpp │ │ │ │ ├── device_power_capabilities_v1_13_t.end.hpp │ │ │ │ ├── device_power_capabilities_v1_13_t.start.hpp │ │ │ │ ├── device_power_capabilities_v1_15_t.end.hpp │ │ │ │ ├── device_power_capabilities_v1_15_t.start.hpp │ │ │ │ ├── device_power_capabilities_v1_17_t.end.hpp │ │ │ │ ├── device_power_capabilities_v1_17_t.start.hpp │ │ │ │ ├── device_power_capabilities_v1_1_t.end.hpp │ │ │ │ ├── device_power_capabilities_v1_1_t.start.hpp │ │ │ │ ├── device_power_capabilities_v1_5_t.end.hpp │ │ │ │ ├── device_power_capabilities_v1_5_t.start.hpp │ │ │ │ ├── device_power_capabilities_v1_7_t.end.hpp │ │ │ │ ├── device_power_capabilities_v1_7_t.start.hpp │ │ │ │ ├── device_power_capabilities_v1_9_t.end.hpp │ │ │ │ ├── device_power_capabilities_v1_9_t.start.hpp │ │ │ │ ├── device_power_notification_data_t.end.hpp │ │ │ │ ├── device_power_notification_data_t.start.hpp │ │ │ │ ├── device_power_notification_data_v1_0_t.end.hpp │ │ │ │ ├── device_power_notification_data_v1_0_t.start.hpp │ │ │ │ ├── device_power_notification_data_v1_11_t.end.hpp │ │ │ │ ├── device_power_notification_data_v1_11_t.start.hpp │ │ │ │ ├── device_power_notification_data_v1_13_t.end.hpp │ │ │ │ ├── device_power_notification_data_v1_13_t.start.hpp │ │ │ │ ├── device_power_notification_data_v1_15_t.end.hpp │ │ │ │ ├── device_power_notification_data_v1_15_t.start.hpp │ │ │ │ ├── device_power_notification_data_v1_17_t.end.hpp │ │ │ │ ├── device_power_notification_data_v1_17_t.start.hpp │ │ │ │ ├── device_power_notification_data_v1_1_t.end.hpp │ │ │ │ ├── device_power_notification_data_v1_1_t.start.hpp │ │ │ │ ├── device_power_notification_data_v1_5_t.end.hpp │ │ │ │ ├── device_power_notification_data_v1_5_t.start.hpp │ │ │ │ ├── device_power_notification_data_v1_7_t.end.hpp │ │ │ │ ├── device_power_notification_data_v1_7_t.start.hpp │ │ │ │ ├── device_power_notification_data_v1_9_t.end.hpp │ │ │ │ ├── device_power_notification_data_v1_9_t.start.hpp │ │ │ │ ├── device_power_policy_idle_settings_t.end.hpp │ │ │ │ ├── device_power_policy_idle_settings_t.start.hpp │ │ │ │ ├── device_power_policy_idle_settings_v1_0_t.end.hpp │ │ │ │ ├── device_power_policy_idle_settings_v1_0_t.start.hpp │ │ │ │ ├── device_power_policy_idle_settings_v1_11_t.end.hpp │ │ │ │ ├── device_power_policy_idle_settings_v1_11_t.start.hpp │ │ │ │ ├── device_power_policy_idle_settings_v1_13_t.end.hpp │ │ │ │ ├── device_power_policy_idle_settings_v1_13_t.start.hpp │ │ │ │ ├── device_power_policy_idle_settings_v1_15_t.end.hpp │ │ │ │ ├── device_power_policy_idle_settings_v1_15_t.start.hpp │ │ │ │ ├── device_power_policy_idle_settings_v1_17_t.end.hpp │ │ │ │ ├── device_power_policy_idle_settings_v1_17_t.start.hpp │ │ │ │ ├── device_power_policy_idle_settings_v1_1_t.end.hpp │ │ │ │ ├── device_power_policy_idle_settings_v1_1_t.start.hpp │ │ │ │ ├── device_power_policy_idle_settings_v1_5_t.end.hpp │ │ │ │ ├── device_power_policy_idle_settings_v1_5_t.start.hpp │ │ │ │ ├── device_power_policy_idle_settings_v1_7_t.end.hpp │ │ │ │ ├── device_power_policy_idle_settings_v1_7_t.start.hpp │ │ │ │ ├── device_power_policy_idle_settings_v1_9_t.end.hpp │ │ │ │ ├── device_power_policy_idle_settings_v1_9_t.start.hpp │ │ │ │ ├── device_power_policy_notification_data_t.end.hpp │ │ │ │ ├── device_power_policy_notification_data_t.start.hpp │ │ │ │ ├── device_power_policy_notification_data_v1_0_t.end.hpp │ │ │ │ ├── device_power_policy_notification_data_v1_0_t.start.hpp │ │ │ │ ├── device_power_policy_notification_data_v1_11_t.end.hpp │ │ │ │ ├── device_power_policy_notification_data_v1_11_t.start.hpp │ │ │ │ ├── device_power_policy_notification_data_v1_13_t.end.hpp │ │ │ │ ├── device_power_policy_notification_data_v1_13_t.start.hpp │ │ │ │ ├── device_power_policy_notification_data_v1_15_t.end.hpp │ │ │ │ ├── device_power_policy_notification_data_v1_15_t.start.hpp │ │ │ │ ├── device_power_policy_notification_data_v1_17_t.end.hpp │ │ │ │ ├── device_power_policy_notification_data_v1_17_t.start.hpp │ │ │ │ ├── device_power_policy_notification_data_v1_1_t.end.hpp │ │ │ │ ├── device_power_policy_notification_data_v1_1_t.start.hpp │ │ │ │ ├── device_power_policy_notification_data_v1_5_t.end.hpp │ │ │ │ ├── device_power_policy_notification_data_v1_5_t.start.hpp │ │ │ │ ├── device_power_policy_notification_data_v1_7_t.end.hpp │ │ │ │ ├── device_power_policy_notification_data_v1_7_t.start.hpp │ │ │ │ ├── device_power_policy_notification_data_v1_9_t.end.hpp │ │ │ │ ├── device_power_policy_notification_data_v1_9_t.start.hpp │ │ │ │ ├── device_power_policy_wake_settings_t.end.hpp │ │ │ │ ├── device_power_policy_wake_settings_t.start.hpp │ │ │ │ ├── device_power_policy_wake_settings_v1_0_t.end.hpp │ │ │ │ ├── device_power_policy_wake_settings_v1_0_t.start.hpp │ │ │ │ ├── device_power_policy_wake_settings_v1_11_t.end.hpp │ │ │ │ ├── device_power_policy_wake_settings_v1_11_t.start.hpp │ │ │ │ ├── device_power_policy_wake_settings_v1_13_t.end.hpp │ │ │ │ ├── device_power_policy_wake_settings_v1_13_t.start.hpp │ │ │ │ ├── device_power_policy_wake_settings_v1_15_t.end.hpp │ │ │ │ ├── device_power_policy_wake_settings_v1_15_t.start.hpp │ │ │ │ ├── device_power_policy_wake_settings_v1_17_t.end.hpp │ │ │ │ ├── device_power_policy_wake_settings_v1_17_t.start.hpp │ │ │ │ ├── device_power_policy_wake_settings_v1_1_t.end.hpp │ │ │ │ ├── device_power_policy_wake_settings_v1_1_t.start.hpp │ │ │ │ ├── device_power_policy_wake_settings_v1_5_t.end.hpp │ │ │ │ ├── device_power_policy_wake_settings_v1_5_t.start.hpp │ │ │ │ ├── device_power_policy_wake_settings_v1_7_t.end.hpp │ │ │ │ ├── device_power_policy_wake_settings_v1_7_t.start.hpp │ │ │ │ ├── device_power_policy_wake_settings_v1_9_t.end.hpp │ │ │ │ ├── device_power_policy_wake_settings_v1_9_t.start.hpp │ │ │ │ ├── device_property_data_t.end.hpp │ │ │ │ ├── device_property_data_t.start.hpp │ │ │ │ ├── device_property_data_v1_13_t.end.hpp │ │ │ │ ├── device_property_data_v1_13_t.start.hpp │ │ │ │ ├── device_property_data_v1_15_t.end.hpp │ │ │ │ ├── device_property_data_v1_15_t.start.hpp │ │ │ │ ├── device_property_data_v1_17_t.end.hpp │ │ │ │ ├── device_property_data_v1_17_t.start.hpp │ │ │ │ ├── device_state_t.end.hpp │ │ │ │ ├── device_state_t.start.hpp │ │ │ │ ├── device_state_v1_0_t.end.hpp │ │ │ │ ├── device_state_v1_0_t.start.hpp │ │ │ │ ├── device_state_v1_11_t.end.hpp │ │ │ │ ├── device_state_v1_11_t.start.hpp │ │ │ │ ├── device_state_v1_13_t.end.hpp │ │ │ │ ├── device_state_v1_13_t.start.hpp │ │ │ │ ├── device_state_v1_15_t.end.hpp │ │ │ │ ├── device_state_v1_15_t.start.hpp │ │ │ │ ├── device_state_v1_17_t.end.hpp │ │ │ │ ├── device_state_v1_17_t.start.hpp │ │ │ │ ├── device_state_v1_1_t.end.hpp │ │ │ │ ├── device_state_v1_1_t.start.hpp │ │ │ │ ├── device_state_v1_27_t.end.hpp │ │ │ │ ├── device_state_v1_27_t.start.hpp │ │ │ │ ├── device_state_v1_5_t.end.hpp │ │ │ │ ├── device_state_v1_5_t.start.hpp │ │ │ │ ├── device_state_v1_7_t.end.hpp │ │ │ │ ├── device_state_v1_7_t.start.hpp │ │ │ │ ├── device_state_v1_9_t.end.hpp │ │ │ │ ├── device_state_v1_9_t.start.hpp │ │ │ │ ├── devproperty_t.end.hpp │ │ │ │ ├── devproperty_t.start.hpp │ │ │ │ ├── dma_enabler_config_t.end.hpp │ │ │ │ ├── dma_enabler_config_t.start.hpp │ │ │ │ ├── dma_enabler_config_v1_0_t.end.hpp │ │ │ │ ├── dma_enabler_config_v1_0_t.start.hpp │ │ │ │ ├── dma_enabler_config_v1_11_t.end.hpp │ │ │ │ ├── dma_enabler_config_v1_11_t.start.hpp │ │ │ │ ├── dma_enabler_config_v1_13_t.end.hpp │ │ │ │ ├── dma_enabler_config_v1_13_t.start.hpp │ │ │ │ ├── dma_enabler_config_v1_15_t.end.hpp │ │ │ │ ├── dma_enabler_config_v1_15_t.start.hpp │ │ │ │ ├── dma_enabler_config_v1_17_t.end.hpp │ │ │ │ ├── dma_enabler_config_v1_17_t.start.hpp │ │ │ │ ├── dma_enabler_config_v1_1_t.end.hpp │ │ │ │ ├── dma_enabler_config_v1_1_t.start.hpp │ │ │ │ ├── dma_enabler_config_v1_5_t.end.hpp │ │ │ │ ├── dma_enabler_config_v1_5_t.start.hpp │ │ │ │ ├── dma_enabler_config_v1_7_t.end.hpp │ │ │ │ ├── dma_enabler_config_v1_7_t.start.hpp │ │ │ │ ├── dma_enabler_config_v1_9_t.end.hpp │ │ │ │ ├── dma_enabler_config_v1_9_t.start.hpp │ │ │ │ ├── dma_system_profile_config_t.end.hpp │ │ │ │ ├── dma_system_profile_config_t.start.hpp │ │ │ │ ├── dma_system_profile_config_v1_11_t.end.hpp │ │ │ │ ├── dma_system_profile_config_v1_11_t.start.hpp │ │ │ │ ├── dma_system_profile_config_v1_13_t.end.hpp │ │ │ │ ├── dma_system_profile_config_v1_13_t.start.hpp │ │ │ │ ├── dma_system_profile_config_v1_15_t.end.hpp │ │ │ │ ├── dma_system_profile_config_v1_15_t.start.hpp │ │ │ │ ├── dma_system_profile_config_v1_17_t.end.hpp │ │ │ │ ├── dma_system_profile_config_v1_17_t.start.hpp │ │ │ │ ├── dpc_config_t.end.hpp │ │ │ │ ├── dpc_config_t.start.hpp │ │ │ │ ├── dpc_config_v1_0_t.end.hpp │ │ │ │ ├── dpc_config_v1_0_t.start.hpp │ │ │ │ ├── dpc_config_v1_11_t.end.hpp │ │ │ │ ├── dpc_config_v1_11_t.start.hpp │ │ │ │ ├── dpc_config_v1_13_t.end.hpp │ │ │ │ ├── dpc_config_v1_13_t.start.hpp │ │ │ │ ├── dpc_config_v1_15_t.end.hpp │ │ │ │ ├── dpc_config_v1_15_t.start.hpp │ │ │ │ ├── dpc_config_v1_17_t.end.hpp │ │ │ │ ├── dpc_config_v1_17_t.start.hpp │ │ │ │ ├── dpc_config_v1_1_t.end.hpp │ │ │ │ ├── dpc_config_v1_1_t.start.hpp │ │ │ │ ├── dpc_config_v1_5_t.end.hpp │ │ │ │ ├── dpc_config_v1_5_t.start.hpp │ │ │ │ ├── dpc_config_v1_7_t.end.hpp │ │ │ │ ├── dpc_config_v1_7_t.start.hpp │ │ │ │ ├── dpc_config_v1_9_t.end.hpp │ │ │ │ ├── dpc_config_v1_9_t.start.hpp │ │ │ │ ├── driver_config_t.end.hpp │ │ │ │ ├── driver_config_t.start.hpp │ │ │ │ ├── driver_config_v1_0_t.end.hpp │ │ │ │ ├── driver_config_v1_0_t.start.hpp │ │ │ │ ├── driver_config_v1_11_t.end.hpp │ │ │ │ ├── driver_config_v1_11_t.start.hpp │ │ │ │ ├── driver_config_v1_13_t.end.hpp │ │ │ │ ├── driver_config_v1_13_t.start.hpp │ │ │ │ ├── driver_config_v1_15_t.end.hpp │ │ │ │ ├── driver_config_v1_15_t.start.hpp │ │ │ │ ├── driver_config_v1_17_t.end.hpp │ │ │ │ ├── driver_config_v1_17_t.start.hpp │ │ │ │ ├── driver_config_v1_1_t.end.hpp │ │ │ │ ├── driver_config_v1_1_t.start.hpp │ │ │ │ ├── driver_config_v1_5_t.end.hpp │ │ │ │ ├── driver_config_v1_5_t.start.hpp │ │ │ │ ├── driver_config_v1_7_t.end.hpp │ │ │ │ ├── driver_config_v1_7_t.start.hpp │ │ │ │ ├── driver_config_v1_9_t.end.hpp │ │ │ │ ├── driver_config_v1_9_t.start.hpp │ │ │ │ ├── driver_globals_t.end.hpp │ │ │ │ ├── driver_globals_t.start.hpp │ │ │ │ ├── driver_globals_v1_0_t.end.hpp │ │ │ │ ├── driver_globals_v1_0_t.start.hpp │ │ │ │ ├── driver_globals_v1_11_t.end.hpp │ │ │ │ ├── driver_globals_v1_11_t.start.hpp │ │ │ │ ├── driver_globals_v1_13_t.end.hpp │ │ │ │ ├── driver_globals_v1_13_t.start.hpp │ │ │ │ ├── driver_globals_v1_15_t.end.hpp │ │ │ │ ├── driver_globals_v1_15_t.start.hpp │ │ │ │ ├── driver_globals_v1_17_t.end.hpp │ │ │ │ ├── driver_globals_v1_17_t.start.hpp │ │ │ │ ├── driver_globals_v1_1_t.end.hpp │ │ │ │ ├── driver_globals_v1_1_t.start.hpp │ │ │ │ ├── driver_globals_v1_5_t.end.hpp │ │ │ │ ├── driver_globals_v1_5_t.start.hpp │ │ │ │ ├── driver_globals_v1_7_t.end.hpp │ │ │ │ ├── driver_globals_v1_7_t.start.hpp │ │ │ │ ├── driver_globals_v1_9_t.end.hpp │ │ │ │ ├── driver_globals_v1_9_t.start.hpp │ │ │ │ ├── driver_version_available_params_t.end.hpp │ │ │ │ ├── driver_version_available_params_t.start.hpp │ │ │ │ ├── driver_version_available_params_v1_0_t.end.hpp │ │ │ │ ├── driver_version_available_params_v1_0_t.start.hpp │ │ │ │ ├── driver_version_available_params_v1_11_t.end.hpp │ │ │ │ ├── driver_version_available_params_v1_11_t.start.hpp │ │ │ │ ├── driver_version_available_params_v1_13_t.end.hpp │ │ │ │ ├── driver_version_available_params_v1_13_t.start.hpp │ │ │ │ ├── driver_version_available_params_v1_15_t.end.hpp │ │ │ │ ├── driver_version_available_params_v1_15_t.start.hpp │ │ │ │ ├── driver_version_available_params_v1_17_t.end.hpp │ │ │ │ ├── driver_version_available_params_v1_17_t.start.hpp │ │ │ │ ├── driver_version_available_params_v1_1_t.end.hpp │ │ │ │ ├── driver_version_available_params_v1_1_t.start.hpp │ │ │ │ ├── driver_version_available_params_v1_5_t.end.hpp │ │ │ │ ├── driver_version_available_params_v1_5_t.start.hpp │ │ │ │ ├── driver_version_available_params_v1_7_t.end.hpp │ │ │ │ ├── driver_version_available_params_v1_7_t.start.hpp │ │ │ │ ├── driver_version_available_params_v1_9_t.end.hpp │ │ │ │ ├── driver_version_available_params_v1_9_t.start.hpp │ │ │ │ ├── dsf_interface_t.end.hpp │ │ │ │ ├── dsf_interface_t.start.hpp │ │ │ │ ├── fdo_event_callbacks_t.end.hpp │ │ │ │ ├── fdo_event_callbacks_t.start.hpp │ │ │ │ ├── fdo_event_callbacks_v1_0_t.end.hpp │ │ │ │ ├── fdo_event_callbacks_v1_0_t.start.hpp │ │ │ │ ├── fdo_event_callbacks_v1_11_t.end.hpp │ │ │ │ ├── fdo_event_callbacks_v1_11_t.start.hpp │ │ │ │ ├── fdo_event_callbacks_v1_13_t.end.hpp │ │ │ │ ├── fdo_event_callbacks_v1_13_t.start.hpp │ │ │ │ ├── fdo_event_callbacks_v1_15_t.end.hpp │ │ │ │ ├── fdo_event_callbacks_v1_15_t.start.hpp │ │ │ │ ├── fdo_event_callbacks_v1_17_t.end.hpp │ │ │ │ ├── fdo_event_callbacks_v1_17_t.start.hpp │ │ │ │ ├── fdo_event_callbacks_v1_1_t.end.hpp │ │ │ │ ├── fdo_event_callbacks_v1_1_t.start.hpp │ │ │ │ ├── fdo_event_callbacks_v1_5_t.end.hpp │ │ │ │ ├── fdo_event_callbacks_v1_5_t.start.hpp │ │ │ │ ├── fdo_event_callbacks_v1_7_t.end.hpp │ │ │ │ ├── fdo_event_callbacks_v1_7_t.start.hpp │ │ │ │ ├── fdo_event_callbacks_v1_9_t.end.hpp │ │ │ │ ├── fdo_event_callbacks_v1_9_t.start.hpp │ │ │ │ ├── fdo_init_t.end.hpp │ │ │ │ ├── fdo_init_t.start.hpp │ │ │ │ ├── file_object_init_t.end.hpp │ │ │ │ ├── file_object_init_t.start.hpp │ │ │ │ ├── fileobject_config_t.end.hpp │ │ │ │ ├── fileobject_config_t.start.hpp │ │ │ │ ├── fileobject_config_v1_0_t.end.hpp │ │ │ │ ├── fileobject_config_v1_0_t.start.hpp │ │ │ │ ├── fileobject_config_v1_11_t.end.hpp │ │ │ │ ├── fileobject_config_v1_11_t.start.hpp │ │ │ │ ├── fileobject_config_v1_13_t.end.hpp │ │ │ │ ├── fileobject_config_v1_13_t.start.hpp │ │ │ │ ├── fileobject_config_v1_15_t.end.hpp │ │ │ │ ├── fileobject_config_v1_15_t.start.hpp │ │ │ │ ├── fileobject_config_v1_17_t.end.hpp │ │ │ │ ├── fileobject_config_v1_17_t.start.hpp │ │ │ │ ├── fileobject_config_v1_1_t.end.hpp │ │ │ │ ├── fileobject_config_v1_1_t.start.hpp │ │ │ │ ├── fileobject_config_v1_5_t.end.hpp │ │ │ │ ├── fileobject_config_v1_5_t.start.hpp │ │ │ │ ├── fileobject_config_v1_7_t.end.hpp │ │ │ │ ├── fileobject_config_v1_7_t.start.hpp │ │ │ │ ├── fileobject_config_v1_9_t.end.hpp │ │ │ │ ├── fileobject_config_v1_9_t.start.hpp │ │ │ │ ├── fpga_control_interface_t.end.hpp │ │ │ │ ├── fpga_control_interface_t.start.hpp │ │ │ │ ├── function_level_device_reset_parameters_t.end.hpp │ │ │ │ ├── function_level_device_reset_parameters_t.start.hpp │ │ │ │ ├── fxio_forward_progress_context_t.end.hpp │ │ │ │ ├── fxio_forward_progress_context_t.start.hpp │ │ │ │ ├── hwprofile_change_notification_t.end.hpp │ │ │ │ ├── hwprofile_change_notification_t.start.hpp │ │ │ │ ├── idle_policy_settings_t.end.hpp │ │ │ │ ├── idle_policy_settings_t.start.hpp │ │ │ │ ├── idle_timeout_management_t.end.hpp │ │ │ │ ├── idle_timeout_management_t.start.hpp │ │ │ │ ├── ifr_header_t.end.hpp │ │ │ │ ├── ifr_header_t.start.hpp │ │ │ │ ├── ifr_offset_t.end.hpp │ │ │ │ ├── ifr_offset_t.start.hpp │ │ │ │ ├── ifr_record_t.end.hpp │ │ │ │ ├── ifr_record_t.start.hpp │ │ │ │ ├── interface_header_t.end.hpp │ │ │ │ ├── interface_header_t.start.hpp │ │ │ │ ├── interrupt_config_t.end.hpp │ │ │ │ ├── interrupt_config_t.start.hpp │ │ │ │ ├── interrupt_config_v1_0_t.end.hpp │ │ │ │ ├── interrupt_config_v1_0_t.start.hpp │ │ │ │ ├── interrupt_config_v1_11_beta_t.end.hpp │ │ │ │ ├── interrupt_config_v1_11_beta_t.start.hpp │ │ │ │ ├── interrupt_config_v1_11_t.end.hpp │ │ │ │ ├── interrupt_config_v1_11_t.start.hpp │ │ │ │ ├── interrupt_config_v1_13_t.end.hpp │ │ │ │ ├── interrupt_config_v1_13_t.start.hpp │ │ │ │ ├── interrupt_config_v1_15_t.end.hpp │ │ │ │ ├── interrupt_config_v1_15_t.start.hpp │ │ │ │ ├── interrupt_config_v1_17_t.end.hpp │ │ │ │ ├── interrupt_config_v1_17_t.start.hpp │ │ │ │ ├── interrupt_config_v1_1_t.end.hpp │ │ │ │ ├── interrupt_config_v1_1_t.start.hpp │ │ │ │ ├── interrupt_config_v1_5_t.end.hpp │ │ │ │ ├── interrupt_config_v1_5_t.start.hpp │ │ │ │ ├── interrupt_config_v1_7_t.end.hpp │ │ │ │ ├── interrupt_config_v1_7_t.start.hpp │ │ │ │ ├── interrupt_config_v1_9_t.end.hpp │ │ │ │ ├── interrupt_config_v1_9_t.start.hpp │ │ │ │ ├── interrupt_extended_policy_t.end.hpp │ │ │ │ ├── interrupt_extended_policy_t.start.hpp │ │ │ │ ├── interrupt_extended_policy_v1_11_t.end.hpp │ │ │ │ ├── interrupt_extended_policy_v1_11_t.start.hpp │ │ │ │ ├── interrupt_extended_policy_v1_13_t.end.hpp │ │ │ │ ├── interrupt_extended_policy_v1_13_t.start.hpp │ │ │ │ ├── interrupt_extended_policy_v1_15_t.end.hpp │ │ │ │ ├── interrupt_extended_policy_v1_15_t.start.hpp │ │ │ │ ├── interrupt_extended_policy_v1_17_t.end.hpp │ │ │ │ ├── interrupt_extended_policy_v1_17_t.start.hpp │ │ │ │ ├── interrupt_extended_policy_v1_9_t.end.hpp │ │ │ │ ├── interrupt_extended_policy_v1_9_t.start.hpp │ │ │ │ ├── interrupt_info_t.end.hpp │ │ │ │ ├── interrupt_info_t.start.hpp │ │ │ │ ├── interrupt_info_v1_0_t.end.hpp │ │ │ │ ├── interrupt_info_v1_0_t.start.hpp │ │ │ │ ├── interrupt_info_v1_11_t.end.hpp │ │ │ │ ├── interrupt_info_v1_11_t.start.hpp │ │ │ │ ├── interrupt_info_v1_13_t.end.hpp │ │ │ │ ├── interrupt_info_v1_13_t.start.hpp │ │ │ │ ├── interrupt_info_v1_15_t.end.hpp │ │ │ │ ├── interrupt_info_v1_15_t.start.hpp │ │ │ │ ├── interrupt_info_v1_17_t.end.hpp │ │ │ │ ├── interrupt_info_v1_17_t.start.hpp │ │ │ │ ├── interrupt_info_v1_1_t.end.hpp │ │ │ │ ├── interrupt_info_v1_1_t.start.hpp │ │ │ │ ├── interrupt_info_v1_5_t.end.hpp │ │ │ │ ├── interrupt_info_v1_5_t.start.hpp │ │ │ │ ├── interrupt_info_v1_7_t.end.hpp │ │ │ │ ├── interrupt_info_v1_7_t.start.hpp │ │ │ │ ├── interrupt_info_v1_9_t.end.hpp │ │ │ │ ├── interrupt_info_v1_9_t.start.hpp │ │ │ │ ├── io_forward_progress_reserved_policy_settings_t.end.hpp │ │ │ │ ├── io_forward_progress_reserved_policy_settings_t.start.hpp │ │ │ │ ├── io_queue_config_t.end.hpp │ │ │ │ ├── io_queue_config_t.start.hpp │ │ │ │ ├── io_queue_config_v1_0_t.end.hpp │ │ │ │ ├── io_queue_config_v1_0_t.start.hpp │ │ │ │ ├── io_queue_config_v1_11_t.end.hpp │ │ │ │ ├── io_queue_config_v1_11_t.start.hpp │ │ │ │ ├── io_queue_config_v1_13_t.end.hpp │ │ │ │ ├── io_queue_config_v1_13_t.start.hpp │ │ │ │ ├── io_queue_config_v1_15_t.end.hpp │ │ │ │ ├── io_queue_config_v1_15_t.start.hpp │ │ │ │ ├── io_queue_config_v1_17_t.end.hpp │ │ │ │ ├── io_queue_config_v1_17_t.start.hpp │ │ │ │ ├── io_queue_config_v1_1_t.end.hpp │ │ │ │ ├── io_queue_config_v1_1_t.start.hpp │ │ │ │ ├── io_queue_config_v1_5_t.end.hpp │ │ │ │ ├── io_queue_config_v1_5_t.start.hpp │ │ │ │ ├── io_queue_config_v1_7_t.end.hpp │ │ │ │ ├── io_queue_config_v1_7_t.start.hpp │ │ │ │ ├── io_queue_config_v1_9_t.end.hpp │ │ │ │ ├── io_queue_config_v1_9_t.start.hpp │ │ │ │ ├── io_queue_forward_progress_policy_t.end.hpp │ │ │ │ ├── io_queue_forward_progress_policy_t.start.hpp │ │ │ │ ├── io_queue_forward_progress_policy_v1_11_t.end.hpp │ │ │ │ ├── io_queue_forward_progress_policy_v1_11_t.start.hpp │ │ │ │ ├── io_queue_forward_progress_policy_v1_13_t.end.hpp │ │ │ │ ├── io_queue_forward_progress_policy_v1_13_t.start.hpp │ │ │ │ ├── io_queue_forward_progress_policy_v1_15_t.end.hpp │ │ │ │ ├── io_queue_forward_progress_policy_v1_15_t.start.hpp │ │ │ │ ├── io_queue_forward_progress_policy_v1_17_t.end.hpp │ │ │ │ ├── io_queue_forward_progress_policy_v1_17_t.start.hpp │ │ │ │ ├── io_queue_forward_progress_policy_v1_9_t.end.hpp │ │ │ │ ├── io_queue_forward_progress_policy_v1_9_t.start.hpp │ │ │ │ ├── io_target_open_params_t.end.hpp │ │ │ │ ├── io_target_open_params_t.start.hpp │ │ │ │ ├── io_target_open_params_v1_0_t.end.hpp │ │ │ │ ├── io_target_open_params_v1_0_t.start.hpp │ │ │ │ ├── io_target_open_params_v1_11_t.end.hpp │ │ │ │ ├── io_target_open_params_v1_11_t.start.hpp │ │ │ │ ├── io_target_open_params_v1_13_t.end.hpp │ │ │ │ ├── io_target_open_params_v1_13_t.start.hpp │ │ │ │ ├── io_target_open_params_v1_15_t.end.hpp │ │ │ │ ├── io_target_open_params_v1_15_t.start.hpp │ │ │ │ ├── io_target_open_params_v1_17_t.end.hpp │ │ │ │ ├── io_target_open_params_v1_17_t.start.hpp │ │ │ │ ├── io_target_open_params_v1_1_t.end.hpp │ │ │ │ ├── io_target_open_params_v1_1_t.start.hpp │ │ │ │ ├── io_target_open_params_v1_5_t.end.hpp │ │ │ │ ├── io_target_open_params_v1_5_t.start.hpp │ │ │ │ ├── io_target_open_params_v1_7_t.end.hpp │ │ │ │ ├── io_target_open_params_v1_7_t.start.hpp │ │ │ │ ├── io_target_open_params_v1_9_t.end.hpp │ │ │ │ ├── io_target_open_params_v1_9_t.start.hpp │ │ │ │ ├── io_type_config_t.end.hpp │ │ │ │ ├── io_type_config_t.start.hpp │ │ │ │ ├── io_type_config_v1_13_t.end.hpp │ │ │ │ ├── io_type_config_v1_13_t.start.hpp │ │ │ │ ├── io_type_config_v1_15_t.end.hpp │ │ │ │ ├── io_type_config_v1_15_t.start.hpp │ │ │ │ ├── io_type_config_v1_17_t.end.hpp │ │ │ │ ├── io_type_config_v1_17_t.start.hpp │ │ │ │ ├── kaddress_range_descriptor_t.end.hpp │ │ │ │ ├── kaddress_range_descriptor_t.start.hpp │ │ │ │ ├── kaddress_range_t.end.hpp │ │ │ │ ├── kaddress_range_t.start.hpp │ │ │ │ ├── kbugcheck_add_pages_t.end.hpp │ │ │ │ ├── kbugcheck_add_pages_t.start.hpp │ │ │ │ ├── kbugcheck_data_t.end.hpp │ │ │ │ ├── kbugcheck_data_t.start.hpp │ │ │ │ ├── kbugcheck_dump_io_t.end.hpp │ │ │ │ ├── kbugcheck_dump_io_t.start.hpp │ │ │ │ ├── kbugcheck_remove_pages_t.end.hpp │ │ │ │ ├── kbugcheck_remove_pages_t.start.hpp │ │ │ │ ├── kbugcheck_secondary_dump_data_ex_t.end.hpp │ │ │ │ ├── kbugcheck_secondary_dump_data_ex_t.start.hpp │ │ │ │ ├── kbugcheck_secondary_dump_data_t.end.hpp │ │ │ │ ├── kbugcheck_secondary_dump_data_t.start.hpp │ │ │ │ ├── kbugcheck_triage_dump_data_t.end.hpp │ │ │ │ ├── kbugcheck_triage_dump_data_t.start.hpp │ │ │ │ ├── kernel_soft_restart_notification_t.end.hpp │ │ │ │ ├── kernel_soft_restart_notification_t.start.hpp │ │ │ │ ├── ktriage_dump_data_array_t.end.hpp │ │ │ │ ├── ktriage_dump_data_array_t.start.hpp │ │ │ │ ├── legacy_bus_information_t.end.hpp │ │ │ │ ├── legacy_bus_information_t.start.hpp │ │ │ │ ├── library_info_t.end.hpp │ │ │ │ ├── library_info_t.start.hpp │ │ │ │ ├── loader_interface_class_bind_t.end.hpp │ │ │ │ ├── loader_interface_class_bind_t.start.hpp │ │ │ │ ├── loader_interface_diagnostic_t.end.hpp │ │ │ │ ├── loader_interface_diagnostic_t.start.hpp │ │ │ │ ├── loader_interface_t.end.hpp │ │ │ │ ├── loader_interface_t.start.hpp │ │ │ │ ├── locale_update_t.end.hpp │ │ │ │ ├── locale_update_t.start.hpp │ │ │ │ ├── mca_driver_info_t.end.hpp │ │ │ │ ├── mca_driver_info_t.start.hpp │ │ │ │ ├── md_timer_t.end.hpp │ │ │ │ ├── md_timer_t.start.hpp │ │ │ │ ├── memory_descriptor_t.end.hpp │ │ │ │ ├── memory_descriptor_t.start.hpp │ │ │ │ ├── memory_descriptor_v1_0_t.end.hpp │ │ │ │ ├── memory_descriptor_v1_0_t.start.hpp │ │ │ │ ├── memory_descriptor_v1_11_t.end.hpp │ │ │ │ ├── memory_descriptor_v1_11_t.start.hpp │ │ │ │ ├── memory_descriptor_v1_13_t.end.hpp │ │ │ │ ├── memory_descriptor_v1_13_t.start.hpp │ │ │ │ ├── memory_descriptor_v1_15_t.end.hpp │ │ │ │ ├── memory_descriptor_v1_15_t.start.hpp │ │ │ │ ├── memory_descriptor_v1_17_t.end.hpp │ │ │ │ ├── memory_descriptor_v1_17_t.start.hpp │ │ │ │ ├── memory_descriptor_v1_1_t.end.hpp │ │ │ │ ├── memory_descriptor_v1_1_t.start.hpp │ │ │ │ ├── memory_descriptor_v1_5_t.end.hpp │ │ │ │ ├── memory_descriptor_v1_5_t.start.hpp │ │ │ │ ├── memory_descriptor_v1_7_t.end.hpp │ │ │ │ ├── memory_descriptor_v1_7_t.start.hpp │ │ │ │ ├── memory_descriptor_v1_9_t.end.hpp │ │ │ │ ├── memory_descriptor_v1_9_t.start.hpp │ │ │ │ ├── microsoft_telemetry_assert_triggered_node_t.end.hpp │ │ │ │ ├── microsoft_telemetry_assert_triggered_node_t.start.hpp │ │ │ │ ├── mu_telemetry_section_t.end.hpp │ │ │ │ ├── mu_telemetry_section_t.start.hpp │ │ │ │ ├── not_power_policy_owner_state_table_t.end.hpp │ │ │ │ ├── not_power_policy_owner_state_table_t.start.hpp │ │ │ │ ├── object_attributes_t.end.hpp │ │ │ │ ├── object_attributes_t.start.hpp │ │ │ │ ├── object_attributes_v1_0_t.end.hpp │ │ │ │ ├── object_attributes_v1_0_t.start.hpp │ │ │ │ ├── object_attributes_v1_11_t.end.hpp │ │ │ │ ├── object_attributes_v1_11_t.start.hpp │ │ │ │ ├── object_attributes_v1_13_t.end.hpp │ │ │ │ ├── object_attributes_v1_13_t.start.hpp │ │ │ │ ├── object_attributes_v1_15_t.end.hpp │ │ │ │ ├── object_attributes_v1_15_t.start.hpp │ │ │ │ ├── object_attributes_v1_17_t.end.hpp │ │ │ │ ├── object_attributes_v1_17_t.start.hpp │ │ │ │ ├── object_attributes_v1_1_t.end.hpp │ │ │ │ ├── object_attributes_v1_1_t.start.hpp │ │ │ │ ├── object_attributes_v1_5_t.end.hpp │ │ │ │ ├── object_attributes_v1_5_t.start.hpp │ │ │ │ ├── object_attributes_v1_7_t.end.hpp │ │ │ │ ├── object_attributes_v1_7_t.start.hpp │ │ │ │ ├── object_attributes_v1_9_t.end.hpp │ │ │ │ ├── object_attributes_v1_9_t.start.hpp │ │ │ │ ├── object_context_type_info_t.end.hpp │ │ │ │ ├── object_context_type_info_t.start.hpp │ │ │ │ ├── object_context_type_info_v1_0_t.end.hpp │ │ │ │ ├── object_context_type_info_v1_0_t.start.hpp │ │ │ │ ├── object_context_type_info_v1_11_t.end.hpp │ │ │ │ ├── object_context_type_info_v1_11_t.start.hpp │ │ │ │ ├── object_context_type_info_v1_13_t.end.hpp │ │ │ │ ├── object_context_type_info_v1_13_t.start.hpp │ │ │ │ ├── object_context_type_info_v1_15_t.end.hpp │ │ │ │ ├── object_context_type_info_v1_15_t.start.hpp │ │ │ │ ├── object_context_type_info_v1_17_t.end.hpp │ │ │ │ ├── object_context_type_info_v1_17_t.start.hpp │ │ │ │ ├── object_context_type_info_v1_1_t.end.hpp │ │ │ │ ├── object_context_type_info_v1_1_t.start.hpp │ │ │ │ ├── object_context_type_info_v1_5_t.end.hpp │ │ │ │ ├── object_context_type_info_v1_5_t.start.hpp │ │ │ │ ├── object_context_type_info_v1_7_t.end.hpp │ │ │ │ ├── object_context_type_info_v1_7_t.start.hpp │ │ │ │ ├── object_context_type_info_v1_9_t.end.hpp │ │ │ │ ├── object_context_type_info_v1_9_t.start.hpp │ │ │ │ ├── object_lock_t.end.hpp │ │ │ │ ├── object_lock_t.start.hpp │ │ │ │ ├── object_t.end.hpp │ │ │ │ ├── object_t.start.hpp │ │ │ │ ├── oplock_key_context_t.end.hpp │ │ │ │ ├── oplock_key_context_t.start.hpp │ │ │ │ ├── os_string_t.end.hpp │ │ │ │ ├── os_string_t.start.hpp │ │ │ │ ├── pcibusdata_t.end.hpp │ │ │ │ ├── pcibusdata_t.start.hpp │ │ │ │ ├── pdo_event_callbacks_t.end.hpp │ │ │ │ ├── pdo_event_callbacks_t.start.hpp │ │ │ │ ├── pdo_event_callbacks_v1_0_t.end.hpp │ │ │ │ ├── pdo_event_callbacks_v1_0_t.start.hpp │ │ │ │ ├── pdo_event_callbacks_v1_11_t.end.hpp │ │ │ │ ├── pdo_event_callbacks_v1_11_t.start.hpp │ │ │ │ ├── pdo_event_callbacks_v1_13_t.end.hpp │ │ │ │ ├── pdo_event_callbacks_v1_13_t.start.hpp │ │ │ │ ├── pdo_event_callbacks_v1_15_t.end.hpp │ │ │ │ ├── pdo_event_callbacks_v1_15_t.start.hpp │ │ │ │ ├── pdo_event_callbacks_v1_17_t.end.hpp │ │ │ │ ├── pdo_event_callbacks_v1_17_t.start.hpp │ │ │ │ ├── pdo_event_callbacks_v1_1_t.end.hpp │ │ │ │ ├── pdo_event_callbacks_v1_1_t.start.hpp │ │ │ │ ├── pdo_event_callbacks_v1_5_t.end.hpp │ │ │ │ ├── pdo_event_callbacks_v1_5_t.start.hpp │ │ │ │ ├── pdo_event_callbacks_v1_7_t.end.hpp │ │ │ │ ├── pdo_event_callbacks_v1_7_t.start.hpp │ │ │ │ ├── pdo_event_callbacks_v1_9_t.end.hpp │ │ │ │ ├── pdo_event_callbacks_v1_9_t.start.hpp │ │ │ │ ├── pdo_init_t.end.hpp │ │ │ │ ├── pdo_init_t.start.hpp │ │ │ │ ├── plugplay_notification_header_t.end.hpp │ │ │ │ ├── plugplay_notification_header_t.start.hpp │ │ │ │ ├── pnppower_event_callbacks_t.end.hpp │ │ │ │ ├── pnppower_event_callbacks_t.start.hpp │ │ │ │ ├── pnppower_event_callbacks_v1_0_t.end.hpp │ │ │ │ ├── pnppower_event_callbacks_v1_0_t.start.hpp │ │ │ │ ├── pnppower_event_callbacks_v1_11_t.end.hpp │ │ │ │ ├── pnppower_event_callbacks_v1_11_t.start.hpp │ │ │ │ ├── pnppower_event_callbacks_v1_13_t.end.hpp │ │ │ │ ├── pnppower_event_callbacks_v1_13_t.start.hpp │ │ │ │ ├── pnppower_event_callbacks_v1_15_t.end.hpp │ │ │ │ ├── pnppower_event_callbacks_v1_15_t.start.hpp │ │ │ │ ├── pnppower_event_callbacks_v1_17_t.end.hpp │ │ │ │ ├── pnppower_event_callbacks_v1_17_t.start.hpp │ │ │ │ ├── pnppower_event_callbacks_v1_1_t.end.hpp │ │ │ │ ├── pnppower_event_callbacks_v1_1_t.start.hpp │ │ │ │ ├── pnppower_event_callbacks_v1_5_t.end.hpp │ │ │ │ ├── pnppower_event_callbacks_v1_5_t.start.hpp │ │ │ │ ├── pnppower_event_callbacks_v1_7_t.end.hpp │ │ │ │ ├── pnppower_event_callbacks_v1_7_t.start.hpp │ │ │ │ ├── pnppower_event_callbacks_v1_9_t.end.hpp │ │ │ │ ├── pnppower_event_callbacks_v1_9_t.start.hpp │ │ │ │ ├── policy_settings_t.end.hpp │ │ │ │ ├── policy_settings_t.start.hpp │ │ │ │ ├── pool_create_extended_params_t.end.hpp │ │ │ │ ├── pool_create_extended_params_t.start.hpp │ │ │ │ ├── power_framework_settings_t.end.hpp │ │ │ │ ├── power_framework_settings_t.start.hpp │ │ │ │ ├── power_framework_settings_v1_11_t.end.hpp │ │ │ │ ├── power_framework_settings_v1_11_t.start.hpp │ │ │ │ ├── power_framework_settings_v1_13_t.end.hpp │ │ │ │ ├── power_framework_settings_v1_13_t.start.hpp │ │ │ │ ├── power_framework_settings_v1_15_t.end.hpp │ │ │ │ ├── power_framework_settings_v1_15_t.start.hpp │ │ │ │ ├── power_framework_settings_v1_17_t.end.hpp │ │ │ │ ├── power_framework_settings_v1_17_t.start.hpp │ │ │ │ ├── power_framework_settings_v1_31_t.end.hpp │ │ │ │ ├── power_framework_settings_v1_31_t.start.hpp │ │ │ │ ├── power_policy_event_callbacks_t.end.hpp │ │ │ │ ├── power_policy_event_callbacks_t.start.hpp │ │ │ │ ├── power_policy_event_callbacks_v1_0_t.end.hpp │ │ │ │ ├── power_policy_event_callbacks_v1_0_t.start.hpp │ │ │ │ ├── power_policy_event_callbacks_v1_11_t.end.hpp │ │ │ │ ├── power_policy_event_callbacks_v1_11_t.start.hpp │ │ │ │ ├── power_policy_event_callbacks_v1_13_t.end.hpp │ │ │ │ ├── power_policy_event_callbacks_v1_13_t.start.hpp │ │ │ │ ├── power_policy_event_callbacks_v1_15_t.end.hpp │ │ │ │ ├── power_policy_event_callbacks_v1_15_t.start.hpp │ │ │ │ ├── power_policy_event_callbacks_v1_17_t.end.hpp │ │ │ │ ├── power_policy_event_callbacks_v1_17_t.start.hpp │ │ │ │ ├── power_policy_event_callbacks_v1_1_t.end.hpp │ │ │ │ ├── power_policy_event_callbacks_v1_1_t.start.hpp │ │ │ │ ├── power_policy_event_callbacks_v1_5_t.end.hpp │ │ │ │ ├── power_policy_event_callbacks_v1_5_t.start.hpp │ │ │ │ ├── power_policy_event_callbacks_v1_7_t.end.hpp │ │ │ │ ├── power_policy_event_callbacks_v1_7_t.start.hpp │ │ │ │ ├── power_policy_event_callbacks_v1_9_t.end.hpp │ │ │ │ ├── power_policy_event_callbacks_v1_9_t.start.hpp │ │ │ │ ├── power_routine_timed_out_data_t.end.hpp │ │ │ │ ├── power_routine_timed_out_data_t.start.hpp │ │ │ │ ├── power_routine_timed_out_data_v1_0_t.end.hpp │ │ │ │ ├── power_routine_timed_out_data_v1_0_t.start.hpp │ │ │ │ ├── power_routine_timed_out_data_v1_11_t.end.hpp │ │ │ │ ├── power_routine_timed_out_data_v1_11_t.start.hpp │ │ │ │ ├── power_routine_timed_out_data_v1_13_t.end.hpp │ │ │ │ ├── power_routine_timed_out_data_v1_13_t.start.hpp │ │ │ │ ├── power_routine_timed_out_data_v1_15_t.end.hpp │ │ │ │ ├── power_routine_timed_out_data_v1_15_t.start.hpp │ │ │ │ ├── power_routine_timed_out_data_v1_17_t.end.hpp │ │ │ │ ├── power_routine_timed_out_data_v1_17_t.start.hpp │ │ │ │ ├── power_routine_timed_out_data_v1_1_t.end.hpp │ │ │ │ ├── power_routine_timed_out_data_v1_1_t.start.hpp │ │ │ │ ├── power_routine_timed_out_data_v1_5_t.end.hpp │ │ │ │ ├── power_routine_timed_out_data_v1_5_t.start.hpp │ │ │ │ ├── power_routine_timed_out_data_v1_7_t.end.hpp │ │ │ │ ├── power_routine_timed_out_data_v1_7_t.start.hpp │ │ │ │ ├── power_routine_timed_out_data_v1_9_t.end.hpp │ │ │ │ ├── power_routine_timed_out_data_v1_9_t.start.hpp │ │ │ │ ├── ptm_control_interface_t.end.hpp │ │ │ │ ├── ptm_control_interface_t.start.hpp │ │ │ │ ├── q_frame_t.end.hpp │ │ │ │ ├── q_frame_t.start.hpp │ │ │ │ ├── query_interface_config_t.end.hpp │ │ │ │ ├── query_interface_config_t.start.hpp │ │ │ │ ├── query_interface_config_v1_0_t.end.hpp │ │ │ │ ├── query_interface_config_v1_0_t.start.hpp │ │ │ │ ├── query_interface_config_v1_11_t.end.hpp │ │ │ │ ├── query_interface_config_v1_11_t.start.hpp │ │ │ │ ├── query_interface_config_v1_13_t.end.hpp │ │ │ │ ├── query_interface_config_v1_13_t.start.hpp │ │ │ │ ├── query_interface_config_v1_15_t.end.hpp │ │ │ │ ├── query_interface_config_v1_15_t.start.hpp │ │ │ │ ├── query_interface_config_v1_17_t.end.hpp │ │ │ │ ├── query_interface_config_v1_17_t.start.hpp │ │ │ │ ├── query_interface_config_v1_1_t.end.hpp │ │ │ │ ├── query_interface_config_v1_1_t.start.hpp │ │ │ │ ├── query_interface_config_v1_5_t.end.hpp │ │ │ │ ├── query_interface_config_v1_5_t.start.hpp │ │ │ │ ├── query_interface_config_v1_7_t.end.hpp │ │ │ │ ├── query_interface_config_v1_7_t.start.hpp │ │ │ │ ├── query_interface_config_v1_9_t.end.hpp │ │ │ │ ├── query_interface_config_v1_9_t.start.hpp │ │ │ │ ├── query_usb_capability_t.end.hpp │ │ │ │ ├── query_usb_capability_t.start.hpp │ │ │ │ ├── queue_fatal_error_data_t.end.hpp │ │ │ │ ├── queue_fatal_error_data_t.start.hpp │ │ │ │ ├── queue_fatal_error_data_v1_0_t.end.hpp │ │ │ │ ├── queue_fatal_error_data_v1_0_t.start.hpp │ │ │ │ ├── queue_fatal_error_data_v1_11_t.end.hpp │ │ │ │ ├── queue_fatal_error_data_v1_11_t.start.hpp │ │ │ │ ├── queue_fatal_error_data_v1_13_t.end.hpp │ │ │ │ ├── queue_fatal_error_data_v1_13_t.start.hpp │ │ │ │ ├── queue_fatal_error_data_v1_15_t.end.hpp │ │ │ │ ├── queue_fatal_error_data_v1_15_t.start.hpp │ │ │ │ ├── queue_fatal_error_data_v1_17_t.end.hpp │ │ │ │ ├── queue_fatal_error_data_v1_17_t.start.hpp │ │ │ │ ├── queue_fatal_error_data_v1_1_t.end.hpp │ │ │ │ ├── queue_fatal_error_data_v1_1_t.start.hpp │ │ │ │ ├── queue_fatal_error_data_v1_5_t.end.hpp │ │ │ │ ├── queue_fatal_error_data_v1_5_t.start.hpp │ │ │ │ ├── queue_fatal_error_data_v1_7_t.end.hpp │ │ │ │ ├── queue_fatal_error_data_v1_7_t.start.hpp │ │ │ │ ├── queue_fatal_error_data_v1_9_t.end.hpp │ │ │ │ ├── queue_fatal_error_data_v1_9_t.start.hpp │ │ │ │ ├── reenumerate_self_interface_standard_t.end.hpp │ │ │ │ ├── reenumerate_self_interface_standard_t.start.hpp │ │ │ │ ├── reg_callback_context_cleanup_information_t.end.hpp │ │ │ │ ├── reg_callback_context_cleanup_information_t.start.hpp │ │ │ │ ├── reg_create_key_information_t.end.hpp │ │ │ │ ├── reg_create_key_information_t.start.hpp │ │ │ │ ├── reg_create_key_information_v1_t.end.hpp │ │ │ │ ├── reg_create_key_information_v1_t.start.hpp │ │ │ │ ├── reg_delete_key_information_t.end.hpp │ │ │ │ ├── reg_delete_key_information_t.start.hpp │ │ │ │ ├── reg_delete_value_key_information_t.end.hpp │ │ │ │ ├── reg_delete_value_key_information_t.start.hpp │ │ │ │ ├── reg_enumerate_key_information_t.end.hpp │ │ │ │ ├── reg_enumerate_key_information_t.start.hpp │ │ │ │ ├── reg_enumerate_value_key_information_t.end.hpp │ │ │ │ ├── reg_enumerate_value_key_information_t.start.hpp │ │ │ │ ├── reg_key_handle_close_information_t.end.hpp │ │ │ │ ├── reg_key_handle_close_information_t.start.hpp │ │ │ │ ├── reg_load_key_information_t.end.hpp │ │ │ │ ├── reg_load_key_information_t.start.hpp │ │ │ │ ├── reg_load_key_information_v2_t.end.hpp │ │ │ │ ├── reg_load_key_information_v2_t.start.hpp │ │ │ │ ├── reg_post_create_key_information_t.end.hpp │ │ │ │ ├── reg_post_create_key_information_t.start.hpp │ │ │ │ ├── reg_post_operation_information_t.end.hpp │ │ │ │ ├── reg_post_operation_information_t.start.hpp │ │ │ │ ├── reg_pre_create_key_information_t.end.hpp │ │ │ │ ├── reg_pre_create_key_information_t.start.hpp │ │ │ │ ├── reg_query_key_information_t.end.hpp │ │ │ │ ├── reg_query_key_information_t.start.hpp │ │ │ │ ├── reg_query_key_name_t.end.hpp │ │ │ │ ├── reg_query_key_name_t.start.hpp │ │ │ │ ├── reg_query_key_security_information_t.end.hpp │ │ │ │ ├── reg_query_key_security_information_t.start.hpp │ │ │ │ ├── reg_query_multiple_value_key_information_t.end.hpp │ │ │ │ ├── reg_query_multiple_value_key_information_t.start.hpp │ │ │ │ ├── reg_query_value_key_information_t.end.hpp │ │ │ │ ├── reg_query_value_key_information_t.start.hpp │ │ │ │ ├── reg_rename_key_information_t.end.hpp │ │ │ │ ├── reg_rename_key_information_t.start.hpp │ │ │ │ ├── reg_replace_key_information_t.end.hpp │ │ │ │ ├── reg_replace_key_information_t.start.hpp │ │ │ │ ├── reg_restore_key_information_t.end.hpp │ │ │ │ ├── reg_restore_key_information_t.start.hpp │ │ │ │ ├── reg_save_key_information_t.end.hpp │ │ │ │ ├── reg_save_key_information_t.start.hpp │ │ │ │ ├── reg_save_merged_key_information_t.end.hpp │ │ │ │ ├── reg_save_merged_key_information_t.start.hpp │ │ │ │ ├── reg_set_information_key_information_t.end.hpp │ │ │ │ ├── reg_set_information_key_information_t.start.hpp │ │ │ │ ├── reg_set_key_security_information_t.end.hpp │ │ │ │ ├── reg_set_key_security_information_t.start.hpp │ │ │ │ ├── reg_set_value_key_information_t.end.hpp │ │ │ │ ├── reg_set_value_key_information_t.start.hpp │ │ │ │ ├── reg_unload_key_information_t.end.hpp │ │ │ │ ├── reg_unload_key_information_t.start.hpp │ │ │ │ ├── register_composite_device_t.end.hpp │ │ │ │ ├── register_composite_device_t.start.hpp │ │ │ │ ├── remove_lock_options_t.end.hpp │ │ │ │ ├── remove_lock_options_t.start.hpp │ │ │ │ ├── remove_lock_options_v1_11_t.end.hpp │ │ │ │ ├── remove_lock_options_v1_11_t.start.hpp │ │ │ │ ├── remove_lock_options_v1_13_t.end.hpp │ │ │ │ ├── remove_lock_options_v1_13_t.start.hpp │ │ │ │ ├── remove_lock_options_v1_15_t.end.hpp │ │ │ │ ├── remove_lock_options_v1_15_t.start.hpp │ │ │ │ ├── remove_lock_options_v1_17_t.end.hpp │ │ │ │ ├── remove_lock_options_v1_17_t.start.hpp │ │ │ │ ├── request_completion_params_t.end.hpp │ │ │ │ ├── request_completion_params_t.start.hpp │ │ │ │ ├── request_completion_params_v1_0_t.end.hpp │ │ │ │ ├── request_completion_params_v1_0_t.start.hpp │ │ │ │ ├── request_completion_params_v1_11_t.end.hpp │ │ │ │ ├── request_completion_params_v1_11_t.start.hpp │ │ │ │ ├── request_completion_params_v1_13_t.end.hpp │ │ │ │ ├── request_completion_params_v1_13_t.start.hpp │ │ │ │ ├── request_completion_params_v1_15_t.end.hpp │ │ │ │ ├── request_completion_params_v1_15_t.start.hpp │ │ │ │ ├── request_completion_params_v1_17_t.end.hpp │ │ │ │ ├── request_completion_params_v1_17_t.start.hpp │ │ │ │ ├── request_completion_params_v1_1_t.end.hpp │ │ │ │ ├── request_completion_params_v1_1_t.start.hpp │ │ │ │ ├── request_completion_params_v1_5_t.end.hpp │ │ │ │ ├── request_completion_params_v1_5_t.start.hpp │ │ │ │ ├── request_completion_params_v1_7_t.end.hpp │ │ │ │ ├── request_completion_params_v1_7_t.start.hpp │ │ │ │ ├── request_completion_params_v1_9_t.end.hpp │ │ │ │ ├── request_completion_params_v1_9_t.start.hpp │ │ │ │ ├── request_fatal_error_information_length_mismatch_data_t.end.hpp │ │ │ │ ├── request_fatal_error_information_length_mismatch_data_t.start.hpp │ │ │ │ ├── request_fatal_error_information_length_mismatch_data_v1_0_t.end.hpp │ │ │ │ ├── request_fatal_error_information_length_mismatch_data_v1_0_t.start.hpp │ │ │ │ ├── request_fatal_error_information_length_mismatch_data_v1_11_t.end.hpp │ │ │ │ ├── request_fatal_error_information_length_mismatch_data_v1_11_t.start.hpp │ │ │ │ ├── request_fatal_error_information_length_mismatch_data_v1_13_t.end.hpp │ │ │ │ ├── request_fatal_error_information_length_mismatch_data_v1_13_t.start.hpp │ │ │ │ ├── request_fatal_error_information_length_mismatch_data_v1_15_t.end.hpp │ │ │ │ ├── request_fatal_error_information_length_mismatch_data_v1_15_t.start.hpp │ │ │ │ ├── request_fatal_error_information_length_mismatch_data_v1_17_t.end.hpp │ │ │ │ ├── request_fatal_error_information_length_mismatch_data_v1_17_t.start.hpp │ │ │ │ ├── request_fatal_error_information_length_mismatch_data_v1_1_t.end.hpp │ │ │ │ ├── request_fatal_error_information_length_mismatch_data_v1_1_t.start.hpp │ │ │ │ ├── request_fatal_error_information_length_mismatch_data_v1_5_t.end.hpp │ │ │ │ ├── request_fatal_error_information_length_mismatch_data_v1_5_t.start.hpp │ │ │ │ ├── request_fatal_error_information_length_mismatch_data_v1_7_t.end.hpp │ │ │ │ ├── request_fatal_error_information_length_mismatch_data_v1_7_t.start.hpp │ │ │ │ ├── request_fatal_error_information_length_mismatch_data_v1_9_t.end.hpp │ │ │ │ ├── request_fatal_error_information_length_mismatch_data_v1_9_t.start.hpp │ │ │ │ ├── request_forward_options_t.end.hpp │ │ │ │ ├── request_forward_options_t.start.hpp │ │ │ │ ├── request_forward_options_v1_11_t.end.hpp │ │ │ │ ├── request_forward_options_v1_11_t.start.hpp │ │ │ │ ├── request_forward_options_v1_13_t.end.hpp │ │ │ │ ├── request_forward_options_v1_13_t.start.hpp │ │ │ │ ├── request_forward_options_v1_15_t.end.hpp │ │ │ │ ├── request_forward_options_v1_15_t.start.hpp │ │ │ │ ├── request_forward_options_v1_17_t.end.hpp │ │ │ │ ├── request_forward_options_v1_17_t.start.hpp │ │ │ │ ├── request_forward_options_v1_9_t.end.hpp │ │ │ │ ├── request_forward_options_v1_9_t.start.hpp │ │ │ │ ├── request_parameters_t.end.hpp │ │ │ │ ├── request_parameters_t.start.hpp │ │ │ │ ├── request_parameters_v1_0_t.end.hpp │ │ │ │ ├── request_parameters_v1_0_t.start.hpp │ │ │ │ ├── request_parameters_v1_11_t.end.hpp │ │ │ │ ├── request_parameters_v1_11_t.start.hpp │ │ │ │ ├── request_parameters_v1_13_t.end.hpp │ │ │ │ ├── request_parameters_v1_13_t.start.hpp │ │ │ │ ├── request_parameters_v1_15_t.end.hpp │ │ │ │ ├── request_parameters_v1_15_t.start.hpp │ │ │ │ ├── request_parameters_v1_17_t.end.hpp │ │ │ │ ├── request_parameters_v1_17_t.start.hpp │ │ │ │ ├── request_parameters_v1_1_t.end.hpp │ │ │ │ ├── request_parameters_v1_1_t.start.hpp │ │ │ │ ├── request_parameters_v1_5_t.end.hpp │ │ │ │ ├── request_parameters_v1_5_t.start.hpp │ │ │ │ ├── request_parameters_v1_7_t.end.hpp │ │ │ │ ├── request_parameters_v1_7_t.start.hpp │ │ │ │ ├── request_parameters_v1_9_t.end.hpp │ │ │ │ ├── request_parameters_v1_9_t.start.hpp │ │ │ │ ├── request_remote_wake_notification_t.end.hpp │ │ │ │ ├── request_remote_wake_notification_t.start.hpp │ │ │ │ ├── request_reuse_params_t.end.hpp │ │ │ │ ├── request_reuse_params_t.start.hpp │ │ │ │ ├── request_reuse_params_v1_0_t.end.hpp │ │ │ │ ├── request_reuse_params_v1_0_t.start.hpp │ │ │ │ ├── request_reuse_params_v1_11_t.end.hpp │ │ │ │ ├── request_reuse_params_v1_11_t.start.hpp │ │ │ │ ├── request_reuse_params_v1_13_t.end.hpp │ │ │ │ ├── request_reuse_params_v1_13_t.start.hpp │ │ │ │ ├── request_reuse_params_v1_15_t.end.hpp │ │ │ │ ├── request_reuse_params_v1_15_t.start.hpp │ │ │ │ ├── request_reuse_params_v1_17_t.end.hpp │ │ │ │ ├── request_reuse_params_v1_17_t.start.hpp │ │ │ │ ├── request_reuse_params_v1_1_t.end.hpp │ │ │ │ ├── request_reuse_params_v1_1_t.start.hpp │ │ │ │ ├── request_reuse_params_v1_5_t.end.hpp │ │ │ │ ├── request_reuse_params_v1_5_t.start.hpp │ │ │ │ ├── request_reuse_params_v1_7_t.end.hpp │ │ │ │ ├── request_reuse_params_v1_7_t.start.hpp │ │ │ │ ├── request_reuse_params_v1_9_t.end.hpp │ │ │ │ ├── request_reuse_params_v1_9_t.start.hpp │ │ │ │ ├── request_send_options_t.end.hpp │ │ │ │ ├── request_send_options_t.start.hpp │ │ │ │ ├── request_send_options_v1_0_t.end.hpp │ │ │ │ ├── request_send_options_v1_0_t.start.hpp │ │ │ │ ├── request_send_options_v1_11_t.end.hpp │ │ │ │ ├── request_send_options_v1_11_t.start.hpp │ │ │ │ ├── request_send_options_v1_13_t.end.hpp │ │ │ │ ├── request_send_options_v1_13_t.start.hpp │ │ │ │ ├── request_send_options_v1_15_t.end.hpp │ │ │ │ ├── request_send_options_v1_15_t.start.hpp │ │ │ │ ├── request_send_options_v1_17_t.end.hpp │ │ │ │ ├── request_send_options_v1_17_t.start.hpp │ │ │ │ ├── request_send_options_v1_1_t.end.hpp │ │ │ │ ├── request_send_options_v1_1_t.start.hpp │ │ │ │ ├── request_send_options_v1_5_t.end.hpp │ │ │ │ ├── request_send_options_v1_5_t.start.hpp │ │ │ │ ├── request_send_options_v1_7_t.end.hpp │ │ │ │ ├── request_send_options_v1_7_t.start.hpp │ │ │ │ ├── request_send_options_v1_9_t.end.hpp │ │ │ │ ├── request_send_options_v1_9_t.start.hpp │ │ │ │ ├── resource_hash_entry_t.end.hpp │ │ │ │ ├── resource_hash_entry_t.start.hpp │ │ │ │ ├── resource_performance_data_t.end.hpp │ │ │ │ ├── resource_performance_data_t.start.hpp │ │ │ │ ├── sdev_identifier_interface_t.end.hpp │ │ │ │ ├── sdev_identifier_interface_t.start.hpp │ │ │ │ ├── secure_driver_interface_t.end.hpp │ │ │ │ ├── secure_driver_interface_t.start.hpp │ │ │ │ ├── shared_power_data_t.end.hpp │ │ │ │ ├── shared_power_data_t.start.hpp │ │ │ │ ├── sleep_study_interface_t.end.hpp │ │ │ │ ├── sleep_study_interface_t.start.hpp │ │ │ │ ├── sleepstudy_blocker_guid_t.end.hpp │ │ │ │ ├── sleepstudy_blocker_guid_t.start.hpp │ │ │ │ ├── sleepstudy_data_entry_t.end.hpp │ │ │ │ ├── sleepstudy_data_entry_t.start.hpp │ │ │ │ ├── sleepstudy_helper_routine_block_t.end.hpp │ │ │ │ ├── sleepstudy_helper_routine_block_t.start.hpp │ │ │ │ ├── soc_subsystem_failure_details_t.end.hpp │ │ │ │ ├── soc_subsystem_failure_details_t.start.hpp │ │ │ │ ├── stack_creation_settings_t.end.hpp │ │ │ │ ├── stack_creation_settings_t.start.hpp │ │ │ │ ├── stack_device_capabilities_t.end.hpp │ │ │ │ ├── stack_device_capabilities_t.start.hpp │ │ │ │ ├── strsd_key_lookup_t.end.hpp │ │ │ │ ├── strsd_key_lookup_t.start.hpp │ │ │ │ ├── strsd_sid_lookup_t.end.hpp │ │ │ │ ├── strsd_sid_lookup_t.start.hpp │ │ │ │ ├── target_device_removal_notification_t.end.hpp │ │ │ │ ├── target_device_removal_notification_t.start.hpp │ │ │ │ ├── task_send_options_t.end.hpp │ │ │ │ ├── task_send_options_t.start.hpp │ │ │ │ ├── timer_config_t.end.hpp │ │ │ │ ├── timer_config_t.start.hpp │ │ │ │ ├── timer_config_v1_0_t.end.hpp │ │ │ │ ├── timer_config_v1_0_t.start.hpp │ │ │ │ ├── timer_config_v1_11_t.end.hpp │ │ │ │ ├── timer_config_v1_11_t.start.hpp │ │ │ │ ├── timer_config_v1_13_t.end.hpp │ │ │ │ ├── timer_config_v1_13_t.start.hpp │ │ │ │ ├── timer_config_v1_15_t.end.hpp │ │ │ │ ├── timer_config_v1_15_t.start.hpp │ │ │ │ ├── timer_config_v1_17_t.end.hpp │ │ │ │ ├── timer_config_v1_17_t.start.hpp │ │ │ │ ├── timer_config_v1_1_t.end.hpp │ │ │ │ ├── timer_config_v1_1_t.start.hpp │ │ │ │ ├── timer_config_v1_5_t.end.hpp │ │ │ │ ├── timer_config_v1_5_t.start.hpp │ │ │ │ ├── timer_config_v1_7_t.end.hpp │ │ │ │ ├── timer_config_v1_7_t.start.hpp │ │ │ │ ├── timer_config_v1_9_t.end.hpp │ │ │ │ ├── timer_config_v1_9_t.start.hpp │ │ │ │ ├── translator_interface_t.end.hpp │ │ │ │ ├── translator_interface_t.start.hpp │ │ │ │ ├── triage_info_t.end.hpp │ │ │ │ ├── triage_info_t.start.hpp │ │ │ │ ├── triage_info_v1_11_t.end.hpp │ │ │ │ ├── triage_info_v1_11_t.start.hpp │ │ │ │ ├── triage_info_v1_13_t.end.hpp │ │ │ │ ├── triage_info_v1_13_t.start.hpp │ │ │ │ ├── triage_info_v1_15_t.end.hpp │ │ │ │ ├── triage_info_v1_15_t.start.hpp │ │ │ │ ├── triage_info_v1_17_t.end.hpp │ │ │ │ ├── triage_info_v1_17_t.start.hpp │ │ │ │ ├── urb_async_notification_request_during_endpoint_offload_t.end.hpp │ │ │ │ ├── urb_async_notification_request_during_endpoint_offload_t.start.hpp │ │ │ │ ├── urb_bulk_or_interrupt_transfer_t.end.hpp │ │ │ │ ├── urb_bulk_or_interrupt_transfer_t.start.hpp │ │ │ │ ├── urb_control_descriptor_request_t.end.hpp │ │ │ │ ├── urb_control_descriptor_request_t.start.hpp │ │ │ │ ├── urb_control_feature_request_t.end.hpp │ │ │ │ ├── urb_control_feature_request_t.start.hpp │ │ │ │ ├── urb_control_get_configuration_request_t.end.hpp │ │ │ │ ├── urb_control_get_configuration_request_t.start.hpp │ │ │ │ ├── urb_control_get_interface_request_t.end.hpp │ │ │ │ ├── urb_control_get_interface_request_t.start.hpp │ │ │ │ ├── urb_control_get_status_request_t.end.hpp │ │ │ │ ├── urb_control_get_status_request_t.start.hpp │ │ │ │ ├── urb_control_transfer_ex_t.end.hpp │ │ │ │ ├── urb_control_transfer_ex_t.start.hpp │ │ │ │ ├── urb_control_transfer_t.end.hpp │ │ │ │ ├── urb_control_transfer_t.start.hpp │ │ │ │ ├── urb_control_vendor_or_class_request_t.end.hpp │ │ │ │ ├── urb_control_vendor_or_class_request_t.start.hpp │ │ │ │ ├── urb_frame_length_control_t.end.hpp │ │ │ │ ├── urb_frame_length_control_t.start.hpp │ │ │ │ ├── urb_get_current_frame_number_t.end.hpp │ │ │ │ ├── urb_get_current_frame_number_t.start.hpp │ │ │ │ ├── urb_get_frame_length_t.end.hpp │ │ │ │ ├── urb_get_frame_length_t.start.hpp │ │ │ │ ├── urb_get_isoch_pipe_transfer_path_delays_t.end.hpp │ │ │ │ ├── urb_get_isoch_pipe_transfer_path_delays_t.start.hpp │ │ │ │ ├── urb_header_t.end.hpp │ │ │ │ ├── urb_header_t.start.hpp │ │ │ │ ├── urb_isoch_transfer_t.end.hpp │ │ │ │ ├── urb_isoch_transfer_t.start.hpp │ │ │ │ ├── urb_open_static_streams_t.end.hpp │ │ │ │ ├── urb_open_static_streams_t.start.hpp │ │ │ │ ├── urb_os_feature_descriptor_request_t.end.hpp │ │ │ │ ├── urb_os_feature_descriptor_request_t.start.hpp │ │ │ │ ├── urb_pipe_request_t.end.hpp │ │ │ │ ├── urb_pipe_request_t.start.hpp │ │ │ │ ├── urb_secure_bulk_or_interrupt_transfer_t.end.hpp │ │ │ │ ├── urb_secure_bulk_or_interrupt_transfer_t.start.hpp │ │ │ │ ├── urb_secure_isoch_transfer_t.end.hpp │ │ │ │ ├── urb_secure_isoch_transfer_t.start.hpp │ │ │ │ ├── urb_select_configuration_t.end.hpp │ │ │ │ ├── urb_select_configuration_t.start.hpp │ │ │ │ ├── urb_select_interface_t.end.hpp │ │ │ │ ├── urb_select_interface_t.start.hpp │ │ │ │ ├── urb_select_interface_with_endpoint_offload_t.end.hpp │ │ │ │ ├── urb_select_interface_with_endpoint_offload_t.start.hpp │ │ │ │ ├── urb_set_frame_length_t.end.hpp │ │ │ │ ├── urb_set_frame_length_t.start.hpp │ │ │ │ ├── urb_t.end.hpp │ │ │ │ ├── urb_t.start.hpp │ │ │ │ ├── usb_20_port_change_t.end.hpp │ │ │ │ ├── usb_20_port_change_t.start.hpp │ │ │ │ ├── usb_20_port_status_t.end.hpp │ │ │ │ ├── usb_20_port_status_t.start.hpp │ │ │ │ ├── usb_30_hub_descriptor_t.end.hpp │ │ │ │ ├── usb_30_hub_descriptor_t.start.hpp │ │ │ │ ├── usb_30_port_change_t.end.hpp │ │ │ │ ├── usb_30_port_change_t.start.hpp │ │ │ │ ├── usb_30_port_status_t.end.hpp │ │ │ │ ├── usb_30_port_status_t.start.hpp │ │ │ │ ├── usb_bos_descriptor_t.end.hpp │ │ │ │ ├── usb_bos_descriptor_t.start.hpp │ │ │ │ ├── usb_bus_information_level_0_t.end.hpp │ │ │ │ ├── usb_bus_information_level_0_t.start.hpp │ │ │ │ ├── usb_bus_information_level_1_t.end.hpp │ │ │ │ ├── usb_bus_information_level_1_t.start.hpp │ │ │ │ ├── usb_bus_interface_usbdi_v0_t.end.hpp │ │ │ │ ├── usb_bus_interface_usbdi_v0_t.start.hpp │ │ │ │ ├── usb_bus_interface_usbdi_v1_t.end.hpp │ │ │ │ ├── usb_bus_interface_usbdi_v1_t.start.hpp │ │ │ │ ├── usb_bus_interface_usbdi_v2_t.end.hpp │ │ │ │ ├── usb_bus_interface_usbdi_v2_t.start.hpp │ │ │ │ ├── usb_bus_interface_usbdi_v3_t.end.hpp │ │ │ │ ├── usb_bus_interface_usbdi_v3_t.start.hpp │ │ │ │ ├── usb_common_descriptor_t.end.hpp │ │ │ │ ├── usb_common_descriptor_t.start.hpp │ │ │ │ ├── usb_configuration_descriptor_t.end.hpp │ │ │ │ ├── usb_configuration_descriptor_t.start.hpp │ │ │ │ ├── usb_configuration_power_descriptor_t.end.hpp │ │ │ │ ├── usb_configuration_power_descriptor_t.start.hpp │ │ │ │ ├── usb_continuous_reader_config_t.end.hpp │ │ │ │ ├── usb_continuous_reader_config_t.start.hpp │ │ │ │ ├── usb_continuous_reader_config_v1_0_t.end.hpp │ │ │ │ ├── usb_continuous_reader_config_v1_0_t.start.hpp │ │ │ │ ├── usb_continuous_reader_config_v1_11_t.end.hpp │ │ │ │ ├── usb_continuous_reader_config_v1_11_t.start.hpp │ │ │ │ ├── usb_continuous_reader_config_v1_13_t.end.hpp │ │ │ │ ├── usb_continuous_reader_config_v1_13_t.start.hpp │ │ │ │ ├── usb_continuous_reader_config_v1_15_t.end.hpp │ │ │ │ ├── usb_continuous_reader_config_v1_15_t.start.hpp │ │ │ │ ├── usb_continuous_reader_config_v1_17_t.end.hpp │ │ │ │ ├── usb_continuous_reader_config_v1_17_t.start.hpp │ │ │ │ ├── usb_continuous_reader_config_v1_1_t.end.hpp │ │ │ │ ├── usb_continuous_reader_config_v1_1_t.start.hpp │ │ │ │ ├── usb_continuous_reader_config_v1_5_t.end.hpp │ │ │ │ ├── usb_continuous_reader_config_v1_5_t.start.hpp │ │ │ │ ├── usb_continuous_reader_config_v1_7_t.end.hpp │ │ │ │ ├── usb_continuous_reader_config_v1_7_t.start.hpp │ │ │ │ ├── usb_continuous_reader_config_v1_9_t.end.hpp │ │ │ │ ├── usb_continuous_reader_config_v1_9_t.start.hpp │ │ │ │ ├── usb_control_setup_packet_t.end.hpp │ │ │ │ ├── usb_control_setup_packet_t.start.hpp │ │ │ │ ├── usb_default_pipe_setup_packet_t.end.hpp │ │ │ │ ├── usb_default_pipe_setup_packet_t.start.hpp │ │ │ │ ├── usb_device_capability_billboard_descriptor_t.end.hpp │ │ │ │ ├── usb_device_capability_billboard_descriptor_t.start.hpp │ │ │ │ ├── usb_device_capability_container_id_descriptor_t.end.hpp │ │ │ │ ├── usb_device_capability_container_id_descriptor_t.start.hpp │ │ │ │ ├── usb_device_capability_descriptor_t.end.hpp │ │ │ │ ├── usb_device_capability_descriptor_t.start.hpp │ │ │ │ ├── usb_device_capability_firmware_status_descriptor_t.end.hpp │ │ │ │ ├── usb_device_capability_firmware_status_descriptor_t.start.hpp │ │ │ │ ├── usb_device_capability_pd_consumer_port_descriptor_t.end.hpp │ │ │ │ ├── usb_device_capability_pd_consumer_port_descriptor_t.start.hpp │ │ │ │ ├── usb_device_capability_platform_descriptor_t.end.hpp │ │ │ │ ├── usb_device_capability_platform_descriptor_t.start.hpp │ │ │ │ ├── usb_device_capability_power_delivery_descriptor_t.end.hpp │ │ │ │ ├── usb_device_capability_power_delivery_descriptor_t.start.hpp │ │ │ │ ├── usb_device_capability_superspeed_usb_descriptor_t.end.hpp │ │ │ │ ├── usb_device_capability_superspeed_usb_descriptor_t.start.hpp │ │ │ │ ├── usb_device_capability_superspeedplus_speed_t.end.hpp │ │ │ │ ├── usb_device_capability_superspeedplus_speed_t.start.hpp │ │ │ │ ├── usb_device_capability_superspeedplus_usb_descriptor_t.end.hpp │ │ │ │ ├── usb_device_capability_superspeedplus_usb_descriptor_t.start.hpp │ │ │ │ ├── usb_device_capability_usb20_extension_descriptor_t.end.hpp │ │ │ │ ├── usb_device_capability_usb20_extension_descriptor_t.start.hpp │ │ │ │ ├── usb_device_characteristics_t.end.hpp │ │ │ │ ├── usb_device_characteristics_t.start.hpp │ │ │ │ ├── usb_device_create_config_t.end.hpp │ │ │ │ ├── usb_device_create_config_t.start.hpp │ │ │ │ ├── usb_device_create_config_v1_11_t.end.hpp │ │ │ │ ├── usb_device_create_config_v1_11_t.start.hpp │ │ │ │ ├── usb_device_create_config_v1_13_t.end.hpp │ │ │ │ ├── usb_device_create_config_v1_13_t.start.hpp │ │ │ │ ├── usb_device_create_config_v1_15_t.end.hpp │ │ │ │ ├── usb_device_create_config_v1_15_t.start.hpp │ │ │ │ ├── usb_device_create_config_v1_17_t.end.hpp │ │ │ │ ├── usb_device_create_config_v1_17_t.start.hpp │ │ │ │ ├── usb_device_descriptor_t.end.hpp │ │ │ │ ├── usb_device_descriptor_t.start.hpp │ │ │ │ ├── usb_device_information_t.end.hpp │ │ │ │ ├── usb_device_information_t.start.hpp │ │ │ │ ├── usb_device_information_v1_0_t.end.hpp │ │ │ │ ├── usb_device_information_v1_0_t.start.hpp │ │ │ │ ├── usb_device_information_v1_11_t.end.hpp │ │ │ │ ├── usb_device_information_v1_11_t.start.hpp │ │ │ │ ├── usb_device_information_v1_13_t.end.hpp │ │ │ │ ├── usb_device_information_v1_13_t.start.hpp │ │ │ │ ├── usb_device_information_v1_15_t.end.hpp │ │ │ │ ├── usb_device_information_v1_15_t.start.hpp │ │ │ │ ├── usb_device_information_v1_17_t.end.hpp │ │ │ │ ├── usb_device_information_v1_17_t.start.hpp │ │ │ │ ├── usb_device_information_v1_1_t.end.hpp │ │ │ │ ├── usb_device_information_v1_1_t.start.hpp │ │ │ │ ├── usb_device_information_v1_5_t.end.hpp │ │ │ │ ├── usb_device_information_v1_5_t.start.hpp │ │ │ │ ├── usb_device_information_v1_7_t.end.hpp │ │ │ │ ├── usb_device_information_v1_7_t.start.hpp │ │ │ │ ├── usb_device_information_v1_9_t.end.hpp │ │ │ │ ├── usb_device_information_v1_9_t.start.hpp │ │ │ │ ├── usb_device_qualifier_descriptor_t.end.hpp │ │ │ │ ├── usb_device_qualifier_descriptor_t.start.hpp │ │ │ │ ├── usb_device_select_config_params_t.end.hpp │ │ │ │ ├── usb_device_select_config_params_t.start.hpp │ │ │ │ ├── usb_device_select_config_params_v1_0_t.end.hpp │ │ │ │ ├── usb_device_select_config_params_v1_0_t.start.hpp │ │ │ │ ├── usb_device_select_config_params_v1_11_t.end.hpp │ │ │ │ ├── usb_device_select_config_params_v1_11_t.start.hpp │ │ │ │ ├── usb_device_select_config_params_v1_13_t.end.hpp │ │ │ │ ├── usb_device_select_config_params_v1_13_t.start.hpp │ │ │ │ ├── usb_device_select_config_params_v1_15_t.end.hpp │ │ │ │ ├── usb_device_select_config_params_v1_15_t.start.hpp │ │ │ │ ├── usb_device_select_config_params_v1_17_t.end.hpp │ │ │ │ ├── usb_device_select_config_params_v1_17_t.start.hpp │ │ │ │ ├── usb_device_select_config_params_v1_1_t.end.hpp │ │ │ │ ├── usb_device_select_config_params_v1_1_t.start.hpp │ │ │ │ ├── usb_device_select_config_params_v1_5_t.end.hpp │ │ │ │ ├── usb_device_select_config_params_v1_5_t.start.hpp │ │ │ │ ├── usb_device_select_config_params_v1_7_t.end.hpp │ │ │ │ ├── usb_device_select_config_params_v1_7_t.start.hpp │ │ │ │ ├── usb_device_select_config_params_v1_9_t.end.hpp │ │ │ │ ├── usb_device_select_config_params_v1_9_t.start.hpp │ │ │ │ ├── usb_device_status_t.end.hpp │ │ │ │ ├── usb_device_status_t.start.hpp │ │ │ │ ├── usb_endpoint_descriptor_t.end.hpp │ │ │ │ ├── usb_endpoint_descriptor_t.start.hpp │ │ │ │ ├── usb_endpoint_status_t.end.hpp │ │ │ │ ├── usb_endpoint_status_t.start.hpp │ │ │ │ ├── usb_frame_number_and_qpc_for_time_sync_information_t.end.hpp │ │ │ │ ├── usb_frame_number_and_qpc_for_time_sync_information_t.start.hpp │ │ │ │ ├── usb_function_suspend_options_t.end.hpp │ │ │ │ ├── usb_function_suspend_options_t.start.hpp │ │ │ │ ├── usb_high_speed_maxpacket_t.end.hpp │ │ │ │ ├── usb_high_speed_maxpacket_t.start.hpp │ │ │ │ ├── usb_hub_30_port_remote_wake_mask_t.end.hpp │ │ │ │ ├── usb_hub_30_port_remote_wake_mask_t.start.hpp │ │ │ │ ├── usb_hub_change_t.end.hpp │ │ │ │ ├── usb_hub_change_t.start.hpp │ │ │ │ ├── usb_hub_descriptor_t.end.hpp │ │ │ │ ├── usb_hub_descriptor_t.start.hpp │ │ │ │ ├── usb_hub_status_and_change_t.end.hpp │ │ │ │ ├── usb_hub_status_and_change_t.start.hpp │ │ │ │ ├── usb_hub_status_t.end.hpp │ │ │ │ ├── usb_hub_status_t.start.hpp │ │ │ │ ├── usb_idle_callback_info_t.end.hpp │ │ │ │ ├── usb_idle_callback_info_t.start.hpp │ │ │ │ ├── usb_interface_association_descriptor_t.end.hpp │ │ │ │ ├── usb_interface_association_descriptor_t.start.hpp │ │ │ │ ├── usb_interface_descriptor_t.end.hpp │ │ │ │ ├── usb_interface_descriptor_t.start.hpp │ │ │ │ ├── usb_interface_power_descriptor_t.end.hpp │ │ │ │ ├── usb_interface_power_descriptor_t.start.hpp │ │ │ │ ├── usb_interface_select_setting_params_t.end.hpp │ │ │ │ ├── usb_interface_select_setting_params_t.start.hpp │ │ │ │ ├── usb_interface_select_setting_params_v1_0_t.end.hpp │ │ │ │ ├── usb_interface_select_setting_params_v1_0_t.start.hpp │ │ │ │ ├── usb_interface_select_setting_params_v1_11_t.end.hpp │ │ │ │ ├── usb_interface_select_setting_params_v1_11_t.start.hpp │ │ │ │ ├── usb_interface_select_setting_params_v1_13_t.end.hpp │ │ │ │ ├── usb_interface_select_setting_params_v1_13_t.start.hpp │ │ │ │ ├── usb_interface_select_setting_params_v1_15_t.end.hpp │ │ │ │ ├── usb_interface_select_setting_params_v1_15_t.start.hpp │ │ │ │ ├── usb_interface_select_setting_params_v1_17_t.end.hpp │ │ │ │ ├── usb_interface_select_setting_params_v1_17_t.start.hpp │ │ │ │ ├── usb_interface_select_setting_params_v1_1_t.end.hpp │ │ │ │ ├── usb_interface_select_setting_params_v1_1_t.start.hpp │ │ │ │ ├── usb_interface_select_setting_params_v1_5_t.end.hpp │ │ │ │ ├── usb_interface_select_setting_params_v1_5_t.start.hpp │ │ │ │ ├── usb_interface_select_setting_params_v1_7_t.end.hpp │ │ │ │ ├── usb_interface_select_setting_params_v1_7_t.start.hpp │ │ │ │ ├── usb_interface_select_setting_params_v1_9_t.end.hpp │ │ │ │ ├── usb_interface_select_setting_params_v1_9_t.start.hpp │ │ │ │ ├── usb_interface_setting_pair_t.end.hpp │ │ │ │ ├── usb_interface_setting_pair_t.start.hpp │ │ │ │ ├── usb_interface_setting_pair_v1_0_t.end.hpp │ │ │ │ ├── usb_interface_setting_pair_v1_0_t.start.hpp │ │ │ │ ├── usb_interface_setting_pair_v1_11_t.end.hpp │ │ │ │ ├── usb_interface_setting_pair_v1_11_t.start.hpp │ │ │ │ ├── usb_interface_setting_pair_v1_13_t.end.hpp │ │ │ │ ├── usb_interface_setting_pair_v1_13_t.start.hpp │ │ │ │ ├── usb_interface_setting_pair_v1_15_t.end.hpp │ │ │ │ ├── usb_interface_setting_pair_v1_15_t.start.hpp │ │ │ │ ├── usb_interface_setting_pair_v1_17_t.end.hpp │ │ │ │ ├── usb_interface_setting_pair_v1_17_t.start.hpp │ │ │ │ ├── usb_interface_setting_pair_v1_1_t.end.hpp │ │ │ │ ├── usb_interface_setting_pair_v1_1_t.start.hpp │ │ │ │ ├── usb_interface_setting_pair_v1_5_t.end.hpp │ │ │ │ ├── usb_interface_setting_pair_v1_5_t.start.hpp │ │ │ │ ├── usb_interface_setting_pair_v1_7_t.end.hpp │ │ │ │ ├── usb_interface_setting_pair_v1_7_t.start.hpp │ │ │ │ ├── usb_interface_setting_pair_v1_9_t.end.hpp │ │ │ │ ├── usb_interface_setting_pair_v1_9_t.start.hpp │ │ │ │ ├── usb_interface_status_t.end.hpp │ │ │ │ ├── usb_interface_status_t.start.hpp │ │ │ │ ├── usb_pipe_information_t.end.hpp │ │ │ │ ├── usb_pipe_information_t.start.hpp │ │ │ │ ├── usb_pipe_information_v1_0_t.end.hpp │ │ │ │ ├── usb_pipe_information_v1_0_t.start.hpp │ │ │ │ ├── usb_pipe_information_v1_11_t.end.hpp │ │ │ │ ├── usb_pipe_information_v1_11_t.start.hpp │ │ │ │ ├── usb_pipe_information_v1_13_t.end.hpp │ │ │ │ ├── usb_pipe_information_v1_13_t.start.hpp │ │ │ │ ├── usb_pipe_information_v1_15_t.end.hpp │ │ │ │ ├── usb_pipe_information_v1_15_t.start.hpp │ │ │ │ ├── usb_pipe_information_v1_17_t.end.hpp │ │ │ │ ├── usb_pipe_information_v1_17_t.start.hpp │ │ │ │ ├── usb_pipe_information_v1_1_t.end.hpp │ │ │ │ ├── usb_pipe_information_v1_1_t.start.hpp │ │ │ │ ├── usb_pipe_information_v1_5_t.end.hpp │ │ │ │ ├── usb_pipe_information_v1_5_t.start.hpp │ │ │ │ ├── usb_pipe_information_v1_7_t.end.hpp │ │ │ │ ├── usb_pipe_information_v1_7_t.start.hpp │ │ │ │ ├── usb_pipe_information_v1_9_t.end.hpp │ │ │ │ ├── usb_pipe_information_v1_9_t.start.hpp │ │ │ │ ├── usb_port_change_t.end.hpp │ │ │ │ ├── usb_port_change_t.start.hpp │ │ │ │ ├── usb_port_ext_status_and_change_t.end.hpp │ │ │ │ ├── usb_port_ext_status_and_change_t.start.hpp │ │ │ │ ├── usb_port_ext_status_t.end.hpp │ │ │ │ ├── usb_port_ext_status_t.start.hpp │ │ │ │ ├── usb_port_status_and_change_t.end.hpp │ │ │ │ ├── usb_port_status_and_change_t.start.hpp │ │ │ │ ├── usb_port_status_t.end.hpp │ │ │ │ ├── usb_port_status_t.start.hpp │ │ │ │ ├── usb_request_completion_params_t.end.hpp │ │ │ │ ├── usb_request_completion_params_t.start.hpp │ │ │ │ ├── usb_request_completion_params_v1_0_t.end.hpp │ │ │ │ ├── usb_request_completion_params_v1_0_t.start.hpp │ │ │ │ ├── usb_request_completion_params_v1_11_t.end.hpp │ │ │ │ ├── usb_request_completion_params_v1_11_t.start.hpp │ │ │ │ ├── usb_request_completion_params_v1_13_t.end.hpp │ │ │ │ ├── usb_request_completion_params_v1_13_t.start.hpp │ │ │ │ ├── usb_request_completion_params_v1_15_t.end.hpp │ │ │ │ ├── usb_request_completion_params_v1_15_t.start.hpp │ │ │ │ ├── usb_request_completion_params_v1_17_t.end.hpp │ │ │ │ ├── usb_request_completion_params_v1_17_t.start.hpp │ │ │ │ ├── usb_request_completion_params_v1_1_t.end.hpp │ │ │ │ ├── usb_request_completion_params_v1_1_t.start.hpp │ │ │ │ ├── usb_request_completion_params_v1_5_t.end.hpp │ │ │ │ ├── usb_request_completion_params_v1_5_t.start.hpp │ │ │ │ ├── usb_request_completion_params_v1_7_t.end.hpp │ │ │ │ ├── usb_request_completion_params_v1_7_t.start.hpp │ │ │ │ ├── usb_request_completion_params_v1_9_t.end.hpp │ │ │ │ ├── usb_request_completion_params_v1_9_t.start.hpp │ │ │ │ ├── usb_start_tracking_for_time_sync_information_t.end.hpp │ │ │ │ ├── usb_start_tracking_for_time_sync_information_t.start.hpp │ │ │ │ ├── usb_stop_tracking_for_time_sync_information_t.end.hpp │ │ │ │ ├── usb_stop_tracking_for_time_sync_information_t.start.hpp │ │ │ │ ├── usb_string_descriptor_t.end.hpp │ │ │ │ ├── usb_string_descriptor_t.start.hpp │ │ │ │ ├── usb_superspeed_endpoint_companion_descriptor_t.end.hpp │ │ │ │ ├── usb_superspeed_endpoint_companion_descriptor_t.start.hpp │ │ │ │ ├── usb_superspeedplus_isoch_endpoint_companion_descriptor_t.end.hpp │ │ │ │ ├── usb_superspeedplus_isoch_endpoint_companion_descriptor_t.start.hpp │ │ │ │ ├── usb_topology_address_t.end.hpp │ │ │ │ ├── usb_topology_address_t.start.hpp │ │ │ │ ├── usb_transport_characteristics_change_notification_t.end.hpp │ │ │ │ ├── usb_transport_characteristics_change_notification_t.start.hpp │ │ │ │ ├── usb_transport_characteristics_change_registration_t.end.hpp │ │ │ │ ├── usb_transport_characteristics_change_registration_t.start.hpp │ │ │ │ ├── usb_transport_characteristics_change_unregistration_t.end.hpp │ │ │ │ ├── usb_transport_characteristics_change_unregistration_t.start.hpp │ │ │ │ ├── usb_transport_characteristics_t.end.hpp │ │ │ │ ├── usb_transport_characteristics_t.start.hpp │ │ │ │ ├── usbc_device_configuration_interface_v1_t.end.hpp │ │ │ │ ├── usbc_device_configuration_interface_v1_t.start.hpp │ │ │ │ ├── usbc_function_descriptor_t.end.hpp │ │ │ │ ├── usbc_function_descriptor_t.start.hpp │ │ │ │ ├── usbd_device_information_t.end.hpp │ │ │ │ ├── usbd_device_information_t.start.hpp │ │ │ │ ├── usbd_endpoint_offload_information_t.end.hpp │ │ │ │ ├── usbd_endpoint_offload_information_t.start.hpp │ │ │ │ ├── usbd_handle_info_t.end.hpp │ │ │ │ ├── usbd_handle_info_t.start.hpp │ │ │ │ ├── usbd_interface_information_t.end.hpp │ │ │ │ ├── usbd_interface_information_t.start.hpp │ │ │ │ ├── usbd_interface_list_entry_t.end.hpp │ │ │ │ ├── usbd_interface_list_entry_t.start.hpp │ │ │ │ ├── usbd_interface_v1_t.end.hpp │ │ │ │ ├── usbd_interface_v1_t.start.hpp │ │ │ │ ├── usbd_interface_v3_t.end.hpp │ │ │ │ ├── usbd_interface_v3_t.start.hpp │ │ │ │ ├── usbd_iso_packet_descriptor_t.end.hpp │ │ │ │ ├── usbd_iso_packet_descriptor_t.start.hpp │ │ │ │ ├── usbd_pipe_information_t.end.hpp │ │ │ │ ├── usbd_pipe_information_t.start.hpp │ │ │ │ ├── usbd_stream_information_t.end.hpp │ │ │ │ ├── usbd_stream_information_t.start.hpp │ │ │ │ ├── usbd_version_information_t.end.hpp │ │ │ │ ├── usbd_version_information_t.start.hpp │ │ │ │ ├── version_t.end.hpp │ │ │ │ ├── version_t.start.hpp │ │ │ │ ├── virtual_channel_capabilities1_t.end.hpp │ │ │ │ ├── virtual_channel_capabilities1_t.start.hpp │ │ │ │ ├── virtual_channel_capabilities2_t.end.hpp │ │ │ │ ├── virtual_channel_capabilities2_t.start.hpp │ │ │ │ ├── virtual_channel_control_t.end.hpp │ │ │ │ ├── virtual_channel_control_t.start.hpp │ │ │ │ ├── virtual_channel_status_t.end.hpp │ │ │ │ ├── virtual_channel_status_t.start.hpp │ │ │ │ ├── virtual_resource_capability_t.end.hpp │ │ │ │ ├── virtual_resource_capability_t.start.hpp │ │ │ │ ├── virtual_resource_control_t.end.hpp │ │ │ │ ├── virtual_resource_control_t.start.hpp │ │ │ │ ├── virtual_resource_status_t.end.hpp │ │ │ │ ├── virtual_resource_status_t.start.hpp │ │ │ │ ├── virtual_resource_t.end.hpp │ │ │ │ ├── virtual_resource_t.start.hpp │ │ │ │ ├── wake_policy_settings_t.end.hpp │ │ │ │ ├── wake_policy_settings_t.start.hpp │ │ │ │ ├── wdfcontext_triage_info_t.end.hpp │ │ │ │ ├── wdfcontext_triage_info_t.start.hpp │ │ │ │ ├── wdfcontext_triage_info_v1_11_t.end.hpp │ │ │ │ ├── wdfcontext_triage_info_v1_11_t.start.hpp │ │ │ │ ├── wdfcontext_triage_info_v1_13_t.end.hpp │ │ │ │ ├── wdfcontext_triage_info_v1_13_t.start.hpp │ │ │ │ ├── wdfcontext_triage_info_v1_15_t.end.hpp │ │ │ │ ├── wdfcontext_triage_info_v1_15_t.start.hpp │ │ │ │ ├── wdfcontext_triage_info_v1_17_t.end.hpp │ │ │ │ ├── wdfcontext_triage_info_v1_17_t.start.hpp │ │ │ │ ├── wdfcontexttype_triage_info_t.end.hpp │ │ │ │ ├── wdfcontexttype_triage_info_t.start.hpp │ │ │ │ ├── wdfcontexttype_triage_info_v1_11_t.end.hpp │ │ │ │ ├── wdfcontexttype_triage_info_v1_11_t.start.hpp │ │ │ │ ├── wdfcontexttype_triage_info_v1_13_t.end.hpp │ │ │ │ ├── wdfcontexttype_triage_info_v1_13_t.start.hpp │ │ │ │ ├── wdfcontexttype_triage_info_v1_15_t.end.hpp │ │ │ │ ├── wdfcontexttype_triage_info_v1_15_t.start.hpp │ │ │ │ ├── wdfcontexttype_triage_info_v1_17_t.end.hpp │ │ │ │ ├── wdfcontexttype_triage_info_v1_17_t.start.hpp │ │ │ │ ├── wdfcx_fileobject_config_t.end.hpp │ │ │ │ ├── wdfcx_fileobject_config_t.start.hpp │ │ │ │ ├── wdfcx_fileobject_config_v1_11_t.end.hpp │ │ │ │ ├── wdfcx_fileobject_config_v1_11_t.start.hpp │ │ │ │ ├── wdfcx_fileobject_config_v1_13_t.end.hpp │ │ │ │ ├── wdfcx_fileobject_config_v1_13_t.start.hpp │ │ │ │ ├── wdfcx_fileobject_config_v1_15_t.end.hpp │ │ │ │ ├── wdfcx_fileobject_config_v1_15_t.start.hpp │ │ │ │ ├── wdfcx_fileobject_config_v1_17_t.end.hpp │ │ │ │ ├── wdfcx_fileobject_config_v1_17_t.start.hpp │ │ │ │ ├── wdfcx_pnppower_event_callbacks_t.end.hpp │ │ │ │ ├── wdfcx_pnppower_event_callbacks_t.start.hpp │ │ │ │ ├── wdfcx_pnppower_event_callbacks_v1_29_t.end.hpp │ │ │ │ ├── wdfcx_pnppower_event_callbacks_v1_29_t.start.hpp │ │ │ │ ├── wdfcx_power_policy_event_callbacks_t.end.hpp │ │ │ │ ├── wdfcx_power_policy_event_callbacks_t.start.hpp │ │ │ │ ├── wdfcxdevice_init_t.end.hpp │ │ │ │ ├── wdfcxdevice_init_t.start.hpp │ │ │ │ ├── wdfdevice_init_t.end.hpp │ │ │ │ ├── wdfdevice_init_t.start.hpp │ │ │ │ ├── wdfdevice_triage_info_t.end.hpp │ │ │ │ ├── wdfdevice_triage_info_t.start.hpp │ │ │ │ ├── wdfdevice_triage_info_v1_11_t.end.hpp │ │ │ │ ├── wdfdevice_triage_info_v1_11_t.start.hpp │ │ │ │ ├── wdfdevice_triage_info_v1_13_t.end.hpp │ │ │ │ ├── wdfdevice_triage_info_v1_13_t.start.hpp │ │ │ │ ├── wdfdevice_triage_info_v1_15_t.end.hpp │ │ │ │ ├── wdfdevice_triage_info_v1_15_t.start.hpp │ │ │ │ ├── wdfdevice_triage_info_v1_17_t.end.hpp │ │ │ │ ├── wdfdevice_triage_info_v1_17_t.start.hpp │ │ │ │ ├── wdffunctions_t.end.hpp │ │ │ │ ├── wdffunctions_t.start.hpp │ │ │ │ ├── wdffwdprogress_triage_info_t.end.hpp │ │ │ │ ├── wdffwdprogress_triage_info_t.start.hpp │ │ │ │ ├── wdffwdprogress_triage_info_v1_11_t.end.hpp │ │ │ │ ├── wdffwdprogress_triage_info_v1_11_t.start.hpp │ │ │ │ ├── wdffwdprogress_triage_info_v1_13_t.end.hpp │ │ │ │ ├── wdffwdprogress_triage_info_v1_13_t.start.hpp │ │ │ │ ├── wdffwdprogress_triage_info_v1_15_t.end.hpp │ │ │ │ ├── wdffwdprogress_triage_info_v1_15_t.start.hpp │ │ │ │ ├── wdffwdprogress_triage_info_v1_17_t.end.hpp │ │ │ │ ├── wdffwdprogress_triage_info_v1_17_t.start.hpp │ │ │ │ ├── wdfirp_triage_info_t.end.hpp │ │ │ │ ├── wdfirp_triage_info_t.start.hpp │ │ │ │ ├── wdfirp_triage_info_v1_11_t.end.hpp │ │ │ │ ├── wdfirp_triage_info_v1_11_t.start.hpp │ │ │ │ ├── wdfirp_triage_info_v1_13_t.end.hpp │ │ │ │ ├── wdfirp_triage_info_v1_13_t.start.hpp │ │ │ │ ├── wdfirp_triage_info_v1_15_t.end.hpp │ │ │ │ ├── wdfirp_triage_info_v1_15_t.start.hpp │ │ │ │ ├── wdfirp_triage_info_v1_17_t.end.hpp │ │ │ │ ├── wdfirp_triage_info_v1_17_t.start.hpp │ │ │ │ ├── wdfirpqueue_triage_info_t.end.hpp │ │ │ │ ├── wdfirpqueue_triage_info_t.start.hpp │ │ │ │ ├── wdfirpqueue_triage_info_v1_11_t.end.hpp │ │ │ │ ├── wdfirpqueue_triage_info_v1_11_t.start.hpp │ │ │ │ ├── wdfirpqueue_triage_info_v1_13_t.end.hpp │ │ │ │ ├── wdfirpqueue_triage_info_v1_13_t.start.hpp │ │ │ │ ├── wdfirpqueue_triage_info_v1_15_t.end.hpp │ │ │ │ ├── wdfirpqueue_triage_info_v1_15_t.start.hpp │ │ │ │ ├── wdfirpqueue_triage_info_v1_17_t.end.hpp │ │ │ │ ├── wdfirpqueue_triage_info_v1_17_t.start.hpp │ │ │ │ ├── wdfmemory_offset_t.end.hpp │ │ │ │ ├── wdfmemory_offset_t.start.hpp │ │ │ │ ├── wdfmemory_offset_v1_0_t.end.hpp │ │ │ │ ├── wdfmemory_offset_v1_0_t.start.hpp │ │ │ │ ├── wdfmemory_offset_v1_11_t.end.hpp │ │ │ │ ├── wdfmemory_offset_v1_11_t.start.hpp │ │ │ │ ├── wdfmemory_offset_v1_13_t.end.hpp │ │ │ │ ├── wdfmemory_offset_v1_13_t.start.hpp │ │ │ │ ├── wdfmemory_offset_v1_15_t.end.hpp │ │ │ │ ├── wdfmemory_offset_v1_15_t.start.hpp │ │ │ │ ├── wdfmemory_offset_v1_17_t.end.hpp │ │ │ │ ├── wdfmemory_offset_v1_17_t.start.hpp │ │ │ │ ├── wdfmemory_offset_v1_1_t.end.hpp │ │ │ │ ├── wdfmemory_offset_v1_1_t.start.hpp │ │ │ │ ├── wdfmemory_offset_v1_5_t.end.hpp │ │ │ │ ├── wdfmemory_offset_v1_5_t.start.hpp │ │ │ │ ├── wdfmemory_offset_v1_7_t.end.hpp │ │ │ │ ├── wdfmemory_offset_v1_7_t.start.hpp │ │ │ │ ├── wdfmemory_offset_v1_9_t.end.hpp │ │ │ │ ├── wdfmemory_offset_v1_9_t.start.hpp │ │ │ │ ├── wdfobject_triage_info_t.end.hpp │ │ │ │ ├── wdfobject_triage_info_t.start.hpp │ │ │ │ ├── wdfobject_triage_info_v1_11_t.end.hpp │ │ │ │ ├── wdfobject_triage_info_v1_11_t.start.hpp │ │ │ │ ├── wdfobject_triage_info_v1_13_t.end.hpp │ │ │ │ ├── wdfobject_triage_info_v1_13_t.start.hpp │ │ │ │ ├── wdfobject_triage_info_v1_15_t.end.hpp │ │ │ │ ├── wdfobject_triage_info_v1_15_t.start.hpp │ │ │ │ ├── wdfobject_triage_info_v1_17_t.end.hpp │ │ │ │ ├── wdfobject_triage_info_v1_17_t.start.hpp │ │ │ │ ├── wdfprocmgmt_message_open_process_reply_t.end.hpp │ │ │ │ ├── wdfprocmgmt_message_open_process_reply_t.start.hpp │ │ │ │ ├── wdfprocmgmt_message_query_process_reply_t.end.hpp │ │ │ │ ├── wdfprocmgmt_message_query_process_reply_t.start.hpp │ │ │ │ ├── wdfqueue_triage_info_t.end.hpp │ │ │ │ ├── wdfqueue_triage_info_t.start.hpp │ │ │ │ ├── wdfqueue_triage_info_v1_11_t.end.hpp │ │ │ │ ├── wdfqueue_triage_info_v1_11_t.start.hpp │ │ │ │ ├── wdfqueue_triage_info_v1_13_t.end.hpp │ │ │ │ ├── wdfqueue_triage_info_v1_13_t.start.hpp │ │ │ │ ├── wdfqueue_triage_info_v1_15_t.end.hpp │ │ │ │ ├── wdfqueue_triage_info_v1_15_t.start.hpp │ │ │ │ ├── wdfqueue_triage_info_v1_17_t.end.hpp │ │ │ │ ├── wdfqueue_triage_info_v1_17_t.start.hpp │ │ │ │ ├── wdfrequest_triage_info_t.end.hpp │ │ │ │ ├── wdfrequest_triage_info_t.start.hpp │ │ │ │ ├── wdfrequest_triage_info_v1_11_t.end.hpp │ │ │ │ ├── wdfrequest_triage_info_v1_11_t.start.hpp │ │ │ │ ├── wdfrequest_triage_info_v1_13_t.end.hpp │ │ │ │ ├── wdfrequest_triage_info_v1_13_t.start.hpp │ │ │ │ ├── wdfrequest_triage_info_v1_15_t.end.hpp │ │ │ │ ├── wdfrequest_triage_info_v1_15_t.start.hpp │ │ │ │ ├── wdfrequest_triage_info_v1_17_t.end.hpp │ │ │ │ ├── wdfrequest_triage_info_v1_17_t.start.hpp │ │ │ │ ├── wdfstructures_t.end.hpp │ │ │ │ ├── wdfstructures_t.start.hpp │ │ │ │ ├── wdfversion_t.end.hpp │ │ │ │ ├── wdfversion_t.start.hpp │ │ │ │ ├── whea128a_t.end.hpp │ │ │ │ ├── whea128a_t.start.hpp │ │ │ │ ├── wmi_instance_config_t.end.hpp │ │ │ │ ├── wmi_instance_config_t.start.hpp │ │ │ │ ├── wmi_instance_config_v1_0_t.end.hpp │ │ │ │ ├── wmi_instance_config_v1_0_t.start.hpp │ │ │ │ ├── wmi_instance_config_v1_11_t.end.hpp │ │ │ │ ├── wmi_instance_config_v1_11_t.start.hpp │ │ │ │ ├── wmi_instance_config_v1_13_t.end.hpp │ │ │ │ ├── wmi_instance_config_v1_13_t.start.hpp │ │ │ │ ├── wmi_instance_config_v1_15_t.end.hpp │ │ │ │ ├── wmi_instance_config_v1_15_t.start.hpp │ │ │ │ ├── wmi_instance_config_v1_17_t.end.hpp │ │ │ │ ├── wmi_instance_config_v1_17_t.start.hpp │ │ │ │ ├── wmi_instance_config_v1_1_t.end.hpp │ │ │ │ ├── wmi_instance_config_v1_1_t.start.hpp │ │ │ │ ├── wmi_instance_config_v1_5_t.end.hpp │ │ │ │ ├── wmi_instance_config_v1_5_t.start.hpp │ │ │ │ ├── wmi_instance_config_v1_7_t.end.hpp │ │ │ │ ├── wmi_instance_config_v1_7_t.start.hpp │ │ │ │ ├── wmi_instance_config_v1_9_t.end.hpp │ │ │ │ ├── wmi_instance_config_v1_9_t.start.hpp │ │ │ │ ├── wmi_provider_config_t.end.hpp │ │ │ │ ├── wmi_provider_config_t.start.hpp │ │ │ │ ├── wmi_provider_config_v1_0_t.end.hpp │ │ │ │ ├── wmi_provider_config_v1_0_t.start.hpp │ │ │ │ ├── wmi_provider_config_v1_11_t.end.hpp │ │ │ │ ├── wmi_provider_config_v1_11_t.start.hpp │ │ │ │ ├── wmi_provider_config_v1_13_t.end.hpp │ │ │ │ ├── wmi_provider_config_v1_13_t.start.hpp │ │ │ │ ├── wmi_provider_config_v1_15_t.end.hpp │ │ │ │ ├── wmi_provider_config_v1_15_t.start.hpp │ │ │ │ ├── wmi_provider_config_v1_17_t.end.hpp │ │ │ │ ├── wmi_provider_config_v1_17_t.start.hpp │ │ │ │ ├── wmi_provider_config_v1_1_t.end.hpp │ │ │ │ ├── wmi_provider_config_v1_1_t.start.hpp │ │ │ │ ├── wmi_provider_config_v1_5_t.end.hpp │ │ │ │ ├── wmi_provider_config_v1_5_t.start.hpp │ │ │ │ ├── wmi_provider_config_v1_7_t.end.hpp │ │ │ │ ├── wmi_provider_config_v1_7_t.start.hpp │ │ │ │ ├── wmi_provider_config_v1_9_t.end.hpp │ │ │ │ ├── wmi_provider_config_v1_9_t.start.hpp │ │ │ │ ├── workitem_config_t.end.hpp │ │ │ │ ├── workitem_config_t.start.hpp │ │ │ │ ├── workitem_config_v1_0_t.end.hpp │ │ │ │ ├── workitem_config_v1_0_t.start.hpp │ │ │ │ ├── workitem_config_v1_11_t.end.hpp │ │ │ │ ├── workitem_config_v1_11_t.start.hpp │ │ │ │ ├── workitem_config_v1_13_t.end.hpp │ │ │ │ ├── workitem_config_v1_13_t.start.hpp │ │ │ │ ├── workitem_config_v1_15_t.end.hpp │ │ │ │ ├── workitem_config_v1_15_t.start.hpp │ │ │ │ ├── workitem_config_v1_17_t.end.hpp │ │ │ │ ├── workitem_config_v1_17_t.start.hpp │ │ │ │ ├── workitem_config_v1_1_t.end.hpp │ │ │ │ ├── workitem_config_v1_1_t.start.hpp │ │ │ │ ├── workitem_config_v1_5_t.end.hpp │ │ │ │ ├── workitem_config_v1_5_t.start.hpp │ │ │ │ ├── workitem_config_v1_7_t.end.hpp │ │ │ │ ├── workitem_config_v1_7_t.start.hpp │ │ │ │ ├── workitem_config_v1_9_t.end.hpp │ │ │ │ ├── workitem_config_v1_9_t.start.hpp │ │ │ │ ├── wpp_registration_block_t.end.hpp │ │ │ │ ├── wpp_registration_block_t.start.hpp │ │ │ │ ├── wudf_event_t.end.hpp │ │ │ │ ├── wudf_event_t.start.hpp │ │ │ │ ├── wudf_lock_t.end.hpp │ │ │ │ ├── wudf_lock_t.start.hpp │ │ │ │ ├── wudf_problem_t.end.hpp │ │ │ │ ├── wudf_problem_t.start.hpp │ │ │ │ ├── wudf_semaphore_t.end.hpp │ │ │ │ ├── wudf_semaphore_t.start.hpp │ │ │ │ ├── wudf_timer_t.end.hpp │ │ │ │ ├── wudf_timer_t.start.hpp │ │ │ │ ├── wudfmessage_add_device_t.end.hpp │ │ │ │ ├── wudfmessage_add_device_t.start.hpp │ │ │ │ ├── wudfmessage_create_t.end.hpp │ │ │ │ ├── wudfmessage_create_t.start.hpp │ │ │ │ ├── wudfmessage_header_t.end.hpp │ │ │ │ ├── wudfmessage_header_t.start.hpp │ │ │ │ ├── wudfmessage_io_header_t.end.hpp │ │ │ │ ├── wudfmessage_io_header_t.start.hpp │ │ │ │ ├── wudfmessage_io_reply_t.end.hpp │ │ │ │ ├── wudfmessage_io_reply_t.start.hpp │ │ │ │ ├── wudfmessage_remote_interface_arrival_t.end.hpp │ │ │ │ ├── wudfmessage_remote_interface_arrival_t.start.hpp │ │ │ │ ├── wudfmessage_reply_header_t.end.hpp │ │ │ │ ├── wudfmessage_reply_header_t.start.hpp │ │ │ │ ├── wudfmessage_target_device_notification_t.end.hpp │ │ │ │ ├── wudfmessage_target_device_notification_t.start.hpp │ │ │ │ ├── wudfmessage_transport_query_id_t.end.hpp │ │ │ │ ├── wudfmessage_transport_query_id_t.start.hpp │ │ │ │ ├── zone_segment_header_t.end.hpp │ │ │ │ └── zone_segment_header_t.start.hpp │ │ │ ├── marker_type_t.hpp │ │ │ ├── mca_driver_info_t.hpp │ │ │ ├── mcgen_eventregister_definition_must_be_an_unqualified_identifier_etw_register_t.hpp │ │ │ ├── mcgen_eventsetinformation_definition_must_be_an_unqualified_identifier_etw_set_information_t.hpp │ │ │ ├── mcgen_eventunregister_definition_must_be_an_unqualified_identifier_etw_unregister_t.hpp │ │ │ ├── mcgen_eventwritetransfer_definition_must_be_an_unqualified_identifier_etw_write_transfer_t.hpp │ │ │ ├── md_timer_t.hpp │ │ │ ├── memory_descriptor_t.hpp │ │ │ ├── memory_descriptor_type_t.hpp │ │ │ ├── memory_descriptor_v1_0_t.hpp │ │ │ ├── memory_descriptor_v1_11_t.hpp │ │ │ ├── memory_descriptor_v1_13_t.hpp │ │ │ ├── memory_descriptor_v1_15_t.hpp │ │ │ ├── memory_descriptor_v1_17_t.hpp │ │ │ ├── memory_descriptor_v1_1_t.hpp │ │ │ ├── memory_descriptor_v1_5_t.hpp │ │ │ ├── memory_descriptor_v1_7_t.hpp │ │ │ ├── memory_descriptor_v1_9_t.hpp │ │ │ ├── microsoft_telemetry_assert_triggered_node_t.hpp │ │ │ ├── module_info_change_type_t.hpp │ │ │ ├── mu_telemetry_section_t.hpp │ │ │ ├── mx_t.hpp │ │ │ ├── not_power_policy_owner_state_table_t.hpp │ │ │ ├── notify_resources_flags_t.hpp │ │ │ ├── object_attributes_t.hpp │ │ │ ├── object_attributes_v1_0_t.hpp │ │ │ ├── object_attributes_v1_11_t.hpp │ │ │ ├── object_attributes_v1_13_t.hpp │ │ │ ├── object_attributes_v1_15_t.hpp │ │ │ ├── object_attributes_v1_17_t.hpp │ │ │ ├── object_attributes_v1_1_t.hpp │ │ │ ├── object_attributes_v1_5_t.hpp │ │ │ ├── object_attributes_v1_7_t.hpp │ │ │ ├── object_attributes_v1_9_t.hpp │ │ │ ├── object_context_type_info_t.hpp │ │ │ ├── object_context_type_info_v1_0_t.hpp │ │ │ ├── object_context_type_info_v1_11_t.hpp │ │ │ ├── object_context_type_info_v1_13_t.hpp │ │ │ ├── object_context_type_info_v1_15_t.hpp │ │ │ ├── object_context_type_info_v1_17_t.hpp │ │ │ ├── object_context_type_info_v1_1_t.hpp │ │ │ ├── object_context_type_info_v1_5_t.hpp │ │ │ ├── object_context_type_info_v1_7_t.hpp │ │ │ ├── object_context_type_info_v1_9_t.hpp │ │ │ ├── object_lock_t.hpp │ │ │ ├── object_t.hpp │ │ │ ├── oplock_key_context_t.hpp │ │ │ ├── os_sid_ver_t.hpp │ │ │ ├── os_string_t.hpp │ │ │ ├── pcibusdata_t.hpp │ │ │ ├── pdo_event_callbacks_t.hpp │ │ │ ├── pdo_event_callbacks_v1_0_t.hpp │ │ │ ├── pdo_event_callbacks_v1_11_t.hpp │ │ │ ├── pdo_event_callbacks_v1_13_t.hpp │ │ │ ├── pdo_event_callbacks_v1_15_t.hpp │ │ │ ├── pdo_event_callbacks_v1_17_t.hpp │ │ │ ├── pdo_event_callbacks_v1_1_t.hpp │ │ │ ├── pdo_event_callbacks_v1_5_t.hpp │ │ │ ├── pdo_event_callbacks_v1_7_t.hpp │ │ │ ├── pdo_event_callbacks_v1_9_t.hpp │ │ │ ├── pdo_init_t.hpp │ │ │ ├── pidescriptor_state_t.hpp │ │ │ ├── platform_event_t.hpp │ │ │ ├── platform_lock_t.hpp │ │ │ ├── platform_security_t.hpp │ │ │ ├── platform_semaphore_t.hpp │ │ │ ├── platform_t.hpp │ │ │ ├── platform_timer_t.hpp │ │ │ ├── platform_wait_t.hpp │ │ │ ├── plugplay_notification_header_t.hpp │ │ │ ├── pnppower_event_callbacks_t.hpp │ │ │ ├── pnppower_event_callbacks_v1_0_t.hpp │ │ │ ├── pnppower_event_callbacks_v1_11_t.hpp │ │ │ ├── pnppower_event_callbacks_v1_13_t.hpp │ │ │ ├── pnppower_event_callbacks_v1_15_t.hpp │ │ │ ├── pnppower_event_callbacks_v1_17_t.hpp │ │ │ ├── pnppower_event_callbacks_v1_1_t.hpp │ │ │ ├── pnppower_event_callbacks_v1_5_t.hpp │ │ │ ├── pnppower_event_callbacks_v1_7_t.hpp │ │ │ ├── pnppower_event_callbacks_v1_9_t.hpp │ │ │ ├── policy_settings_t.hpp │ │ │ ├── pool_create_extended_params_t.hpp │ │ │ ├── power_device_state_t.hpp │ │ │ ├── power_framework_settings_t.hpp │ │ │ ├── power_framework_settings_v1_11_t.hpp │ │ │ ├── power_framework_settings_v1_13_t.hpp │ │ │ ├── power_framework_settings_v1_15_t.hpp │ │ │ ├── power_framework_settings_v1_17_t.hpp │ │ │ ├── power_framework_settings_v1_31_t.hpp │ │ │ ├── power_policy_event_callbacks_t.hpp │ │ │ ├── power_policy_event_callbacks_v1_0_t.hpp │ │ │ ├── power_policy_event_callbacks_v1_11_t.hpp │ │ │ ├── power_policy_event_callbacks_v1_13_t.hpp │ │ │ ├── power_policy_event_callbacks_v1_15_t.hpp │ │ │ ├── power_policy_event_callbacks_v1_17_t.hpp │ │ │ ├── power_policy_event_callbacks_v1_1_t.hpp │ │ │ ├── power_policy_event_callbacks_v1_5_t.hpp │ │ │ ├── power_policy_event_callbacks_v1_7_t.hpp │ │ │ ├── power_policy_event_callbacks_v1_9_t.hpp │ │ │ ├── power_policy_idle_timeout_constants_t.hpp │ │ │ ├── power_policy_idle_timeout_type_t.hpp │ │ │ ├── power_policy_s0_idle_capabilities_t.hpp │ │ │ ├── power_policy_s0_idle_user_control_t.hpp │ │ │ ├── power_policy_sx_wake_user_control_t.hpp │ │ │ ├── power_routine_timed_out_data_t.hpp │ │ │ ├── power_routine_timed_out_data_v1_0_t.hpp │ │ │ ├── power_routine_timed_out_data_v1_11_t.hpp │ │ │ ├── power_routine_timed_out_data_v1_13_t.hpp │ │ │ ├── power_routine_timed_out_data_v1_15_t.hpp │ │ │ ├── power_routine_timed_out_data_v1_17_t.hpp │ │ │ ├── power_routine_timed_out_data_v1_1_t.hpp │ │ │ ├── power_routine_timed_out_data_v1_5_t.hpp │ │ │ ├── power_routine_timed_out_data_v1_7_t.hpp │ │ │ ├── power_routine_timed_out_data_v1_9_t.hpp │ │ │ ├── property_store_retrieve_flags_t.hpp │ │ │ ├── ptm_control_interface_t.hpp │ │ │ ├── q_frame_t.hpp │ │ │ ├── query_interface_config_t.hpp │ │ │ ├── query_interface_config_v1_0_t.hpp │ │ │ ├── query_interface_config_v1_11_t.hpp │ │ │ ├── query_interface_config_v1_13_t.hpp │ │ │ ├── query_interface_config_v1_15_t.hpp │ │ │ ├── query_interface_config_v1_17_t.hpp │ │ │ ├── query_interface_config_v1_1_t.hpp │ │ │ ├── query_interface_config_v1_5_t.hpp │ │ │ ├── query_interface_config_v1_7_t.hpp │ │ │ ├── query_interface_config_v1_9_t.hpp │ │ │ ├── query_usb_capability_t.hpp │ │ │ ├── queue_fatal_error_data_t.hpp │ │ │ ├── queue_fatal_error_data_v1_0_t.hpp │ │ │ ├── queue_fatal_error_data_v1_11_t.hpp │ │ │ ├── queue_fatal_error_data_v1_13_t.hpp │ │ │ ├── queue_fatal_error_data_v1_15_t.hpp │ │ │ ├── queue_fatal_error_data_v1_17_t.hpp │ │ │ ├── queue_fatal_error_data_v1_1_t.hpp │ │ │ ├── queue_fatal_error_data_v1_5_t.hpp │ │ │ ├── queue_fatal_error_data_v1_7_t.hpp │ │ │ ├── queue_fatal_error_data_v1_9_t.hpp │ │ │ ├── rd_file_object_context_t.hpp │ │ │ ├── rd_type_bases_t.hpp │ │ │ ├── rd_type_t.hpp │ │ │ ├── reenumerate_self_interface_standard_t.hpp │ │ │ ├── reg_callback_context_cleanup_information_t.hpp │ │ │ ├── reg_create_key_information_t.hpp │ │ │ ├── reg_create_key_information_v1_t.hpp │ │ │ ├── reg_delete_key_information_t.hpp │ │ │ ├── reg_delete_value_key_information_t.hpp │ │ │ ├── reg_enumerate_key_information_t.hpp │ │ │ ├── reg_enumerate_value_key_information_t.hpp │ │ │ ├── reg_key_handle_close_information_t.hpp │ │ │ ├── reg_load_key_information_t.hpp │ │ │ ├── reg_load_key_information_v2_t.hpp │ │ │ ├── reg_post_create_key_information_t.hpp │ │ │ ├── reg_post_operation_information_t.hpp │ │ │ ├── reg_pre_create_key_information_t.hpp │ │ │ ├── reg_query_key_information_t.hpp │ │ │ ├── reg_query_key_name_t.hpp │ │ │ ├── reg_query_key_security_information_t.hpp │ │ │ ├── reg_query_multiple_value_key_information_t.hpp │ │ │ ├── reg_query_value_key_information_t.hpp │ │ │ ├── reg_rename_key_information_t.hpp │ │ │ ├── reg_replace_key_information_t.hpp │ │ │ ├── reg_restore_key_information_t.hpp │ │ │ ├── reg_save_key_information_t.hpp │ │ │ ├── reg_save_merged_key_information_t.hpp │ │ │ ├── reg_set_information_key_information_t.hpp │ │ │ ├── reg_set_key_security_information_t.hpp │ │ │ ├── reg_set_value_key_information_t.hpp │ │ │ ├── reg_unload_key_information_t.hpp │ │ │ ├── register_composite_device_t.hpp │ │ │ ├── registry_read_result_t.hpp │ │ │ ├── release_hardware_order_on_failure_t.hpp │ │ │ ├── remove_lock_options_flags_t.hpp │ │ │ ├── remove_lock_options_t.hpp │ │ │ ├── remove_lock_options_v1_11_t.hpp │ │ │ ├── remove_lock_options_v1_13_t.hpp │ │ │ ├── remove_lock_options_v1_15_t.hpp │ │ │ ├── remove_lock_options_v1_17_t.hpp │ │ │ ├── request_completion_params_t.hpp │ │ │ ├── request_completion_params_v1_0_t.hpp │ │ │ ├── request_completion_params_v1_11_t.hpp │ │ │ ├── request_completion_params_v1_13_t.hpp │ │ │ ├── request_completion_params_v1_15_t.hpp │ │ │ ├── request_completion_params_v1_17_t.hpp │ │ │ ├── request_completion_params_v1_1_t.hpp │ │ │ ├── request_completion_params_v1_5_t.hpp │ │ │ ├── request_completion_params_v1_7_t.hpp │ │ │ ├── request_completion_params_v1_9_t.hpp │ │ │ ├── request_d_irp_reason_t.hpp │ │ │ ├── request_fatal_error_codes_t.hpp │ │ │ ├── request_fatal_error_information_length_mismatch_data_t.hpp │ │ │ ├── request_fatal_error_information_length_mismatch_data_v1_0_t.hpp │ │ │ ├── request_fatal_error_information_length_mismatch_data_v1_11_t.hpp │ │ │ ├── request_fatal_error_information_length_mismatch_data_v1_13_t.hpp │ │ │ ├── request_fatal_error_information_length_mismatch_data_v1_15_t.hpp │ │ │ ├── request_fatal_error_information_length_mismatch_data_v1_17_t.hpp │ │ │ ├── request_fatal_error_information_length_mismatch_data_v1_1_t.hpp │ │ │ ├── request_fatal_error_information_length_mismatch_data_v1_5_t.hpp │ │ │ ├── request_fatal_error_information_length_mismatch_data_v1_7_t.hpp │ │ │ ├── request_fatal_error_information_length_mismatch_data_v1_9_t.hpp │ │ │ ├── request_forward_options_flags_t.hpp │ │ │ ├── request_forward_options_t.hpp │ │ │ ├── request_forward_options_v1_11_t.hpp │ │ │ ├── request_forward_options_v1_13_t.hpp │ │ │ ├── request_forward_options_v1_15_t.hpp │ │ │ ├── request_forward_options_v1_17_t.hpp │ │ │ ├── request_forward_options_v1_9_t.hpp │ │ │ ├── request_parameters_t.hpp │ │ │ ├── request_parameters_v1_0_t.hpp │ │ │ ├── request_parameters_v1_11_t.hpp │ │ │ ├── request_parameters_v1_13_t.hpp │ │ │ ├── request_parameters_v1_15_t.hpp │ │ │ ├── request_parameters_v1_17_t.hpp │ │ │ ├── request_parameters_v1_1_t.hpp │ │ │ ├── request_parameters_v1_5_t.hpp │ │ │ ├── request_parameters_v1_7_t.hpp │ │ │ ├── request_parameters_v1_9_t.hpp │ │ │ ├── request_remote_wake_notification_t.hpp │ │ │ ├── request_reuse_flags_t.hpp │ │ │ ├── request_reuse_params_t.hpp │ │ │ ├── request_reuse_params_v1_0_t.hpp │ │ │ ├── request_reuse_params_v1_11_t.hpp │ │ │ ├── request_reuse_params_v1_13_t.hpp │ │ │ ├── request_reuse_params_v1_15_t.hpp │ │ │ ├── request_reuse_params_v1_17_t.hpp │ │ │ ├── request_reuse_params_v1_1_t.hpp │ │ │ ├── request_reuse_params_v1_5_t.hpp │ │ │ ├── request_reuse_params_v1_7_t.hpp │ │ │ ├── request_reuse_params_v1_9_t.hpp │ │ │ ├── request_send_options_flags_t.hpp │ │ │ ├── request_send_options_t.hpp │ │ │ ├── request_send_options_v1_0_t.hpp │ │ │ ├── request_send_options_v1_11_t.hpp │ │ │ ├── request_send_options_v1_13_t.hpp │ │ │ ├── request_send_options_v1_15_t.hpp │ │ │ ├── request_send_options_v1_17_t.hpp │ │ │ ├── request_send_options_v1_1_t.hpp │ │ │ ├── request_send_options_v1_5_t.hpp │ │ │ ├── request_send_options_v1_7_t.hpp │ │ │ ├── request_send_options_v1_9_t.hpp │ │ │ ├── request_stop_action_flags_t.hpp │ │ │ ├── request_type_t.hpp │ │ │ ├── resource_hash_entry_t.hpp │ │ │ ├── resource_performance_data_t.hpp │ │ │ ├── resource_translation_direction_t.hpp │ │ │ ├── retrieve_child_flags_t.hpp │ │ │ ├── sdev_identifier_interface_t.hpp │ │ │ ├── secure_driver_interface_t.hpp │ │ │ ├── send_device_request_action_t.hpp │ │ │ ├── shared_power_data_t.hpp │ │ │ ├── sig_t.hpp │ │ │ ├── silo_monitor_t.hpp │ │ │ ├── sleep_study_interface_t.hpp │ │ │ ├── sleepstudy_blocker_builder_t.hpp │ │ │ ├── sleepstudy_blocker_data_t.hpp │ │ │ ├── sleepstudy_blocker_guid_t.hpp │ │ │ ├── sleepstudy_blocker_type_t.hpp │ │ │ ├── sleepstudy_data_entry_t.hpp │ │ │ ├── sleepstudy_helper_namespace_t.hpp │ │ │ ├── sleepstudy_helper_routine_block_t.hpp │ │ │ ├── sleepstudy_library_t.hpp │ │ │ ├── soc_subsystem_failure_details_t.hpp │ │ │ ├── soc_subsystem_type_t.hpp │ │ │ ├── special_file_type_t.hpp │ │ │ ├── ss_library_t.hpp │ │ │ ├── stack_creation_settings_t.hpp │ │ │ ├── stack_device_capabilities_t.hpp │ │ │ ├── state_notification_type_t.hpp │ │ │ ├── state_t.hpp │ │ │ ├── strsd_key_lookup_t.hpp │ │ │ ├── strsd_sid_lookup_t.hpp │ │ │ ├── submit_action_flags_t.hpp │ │ │ ├── synchronization_scope_t.hpp │ │ │ ├── target_device_removal_notification_t.hpp │ │ │ ├── task_send_options_flags_t.hpp │ │ │ ├── task_send_options_t.hpp │ │ │ ├── timer_config_t.hpp │ │ │ ├── timer_config_v1_0_t.hpp │ │ │ ├── timer_config_v1_11_t.hpp │ │ │ ├── timer_config_v1_13_t.hpp │ │ │ ├── timer_config_v1_15_t.hpp │ │ │ ├── timer_config_v1_17_t.hpp │ │ │ ├── timer_config_v1_1_t.hpp │ │ │ ├── timer_config_v1_5_t.hpp │ │ │ ├── timer_config_v1_7_t.hpp │ │ │ ├── timer_config_v1_9_t.hpp │ │ │ ├── translator_interface_t.hpp │ │ │ ├── tri_state_t.hpp │ │ │ ├── triage_info_t.hpp │ │ │ ├── triage_info_v1_11_t.hpp │ │ │ ├── triage_info_v1_13_t.hpp │ │ │ ├── triage_info_v1_15_t.hpp │ │ │ ├── triage_info_v1_17_t.hpp │ │ │ ├── urb_async_notification_request_during_endpoint_offload_t.hpp │ │ │ ├── urb_bulk_or_interrupt_transfer_t.hpp │ │ │ ├── urb_control_descriptor_request_t.hpp │ │ │ ├── urb_control_feature_request_t.hpp │ │ │ ├── urb_control_get_configuration_request_t.hpp │ │ │ ├── urb_control_get_interface_request_t.hpp │ │ │ ├── urb_control_get_status_request_t.hpp │ │ │ ├── urb_control_transfer_ex_t.hpp │ │ │ ├── urb_control_transfer_t.hpp │ │ │ ├── urb_control_vendor_or_class_request_t.hpp │ │ │ ├── urb_frame_length_control_t.hpp │ │ │ ├── urb_get_current_frame_number_t.hpp │ │ │ ├── urb_get_frame_length_t.hpp │ │ │ ├── urb_get_isoch_pipe_transfer_path_delays_t.hpp │ │ │ ├── urb_hcd_area_t.hpp │ │ │ ├── urb_header_t.hpp │ │ │ ├── urb_isoch_transfer_t.hpp │ │ │ ├── urb_open_static_streams_t.hpp │ │ │ ├── urb_os_feature_descriptor_request_t.hpp │ │ │ ├── urb_pipe_request_t.hpp │ │ │ ├── urb_secure_bulk_or_interrupt_transfer_t.hpp │ │ │ ├── urb_secure_isoch_transfer_t.hpp │ │ │ ├── urb_select_configuration_t.hpp │ │ │ ├── urb_select_interface_t.hpp │ │ │ ├── urb_select_interface_with_endpoint_offload_t.hpp │ │ │ ├── urb_set_frame_length_t.hpp │ │ │ ├── urb_t.hpp │ │ │ ├── usb_20_port_change_t.hpp │ │ │ ├── usb_20_port_status_t.hpp │ │ │ ├── usb_30_hub_descriptor_t.hpp │ │ │ ├── usb_30_port_change_t.hpp │ │ │ ├── usb_30_port_status_t.hpp │ │ │ ├── usb_bmrequest_direction_t.hpp │ │ │ ├── usb_bmrequest_recipient_t.hpp │ │ │ ├── usb_bmrequest_type_t.hpp │ │ │ ├── usb_bos_descriptor_t.hpp │ │ │ ├── usb_bus_information_level_0_t.hpp │ │ │ ├── usb_bus_information_level_1_t.hpp │ │ │ ├── usb_bus_interface_usbdi_v0_t.hpp │ │ │ ├── usb_bus_interface_usbdi_v1_t.hpp │ │ │ ├── usb_bus_interface_usbdi_v2_t.hpp │ │ │ ├── usb_bus_interface_usbdi_v3_t.hpp │ │ │ ├── usb_change_registration_handle_t.hpp │ │ │ ├── usb_common_descriptor_t.hpp │ │ │ ├── usb_configuration_descriptor_t.hpp │ │ │ ├── usb_configuration_power_descriptor_t.hpp │ │ │ ├── usb_continuous_reader_config_t.hpp │ │ │ ├── usb_continuous_reader_config_v1_0_t.hpp │ │ │ ├── usb_continuous_reader_config_v1_11_t.hpp │ │ │ ├── usb_continuous_reader_config_v1_13_t.hpp │ │ │ ├── usb_continuous_reader_config_v1_15_t.hpp │ │ │ ├── usb_continuous_reader_config_v1_17_t.hpp │ │ │ ├── usb_continuous_reader_config_v1_1_t.hpp │ │ │ ├── usb_continuous_reader_config_v1_5_t.hpp │ │ │ ├── usb_continuous_reader_config_v1_7_t.hpp │ │ │ ├── usb_continuous_reader_config_v1_9_t.hpp │ │ │ ├── usb_control_setup_packet_t.hpp │ │ │ ├── usb_controller_flavor_t.hpp │ │ │ ├── usb_default_pipe_setup_packet_t.hpp │ │ │ ├── usb_device_capability_billboard_descriptor_t.hpp │ │ │ ├── usb_device_capability_container_id_descriptor_t.hpp │ │ │ ├── usb_device_capability_descriptor_t.hpp │ │ │ ├── usb_device_capability_firmware_status_descriptor_t.hpp │ │ │ ├── usb_device_capability_pd_consumer_port_descriptor_t.hpp │ │ │ ├── usb_device_capability_platform_descriptor_t.hpp │ │ │ ├── usb_device_capability_power_delivery_descriptor_t.hpp │ │ │ ├── usb_device_capability_superspeed_usb_descriptor_t.hpp │ │ │ ├── usb_device_capability_superspeedplus_speed_t.hpp │ │ │ ├── usb_device_capability_superspeedplus_usb_descriptor_t.hpp │ │ │ ├── usb_device_capability_usb20_extension_descriptor_t.hpp │ │ │ ├── usb_device_characteristics_t.hpp │ │ │ ├── usb_device_create_config_t.hpp │ │ │ ├── usb_device_create_config_v1_11_t.hpp │ │ │ ├── usb_device_create_config_v1_13_t.hpp │ │ │ ├── usb_device_create_config_v1_15_t.hpp │ │ │ ├── usb_device_create_config_v1_17_t.hpp │ │ │ ├── usb_device_descriptor_t.hpp │ │ │ ├── usb_device_information_t.hpp │ │ │ ├── usb_device_information_v1_0_t.hpp │ │ │ ├── usb_device_information_v1_11_t.hpp │ │ │ ├── usb_device_information_v1_13_t.hpp │ │ │ ├── usb_device_information_v1_15_t.hpp │ │ │ ├── usb_device_information_v1_17_t.hpp │ │ │ ├── usb_device_information_v1_1_t.hpp │ │ │ ├── usb_device_information_v1_5_t.hpp │ │ │ ├── usb_device_information_v1_7_t.hpp │ │ │ ├── usb_device_information_v1_9_t.hpp │ │ │ ├── usb_device_qualifier_descriptor_t.hpp │ │ │ ├── usb_device_select_config_params_t.hpp │ │ │ ├── usb_device_select_config_params_v1_0_t.hpp │ │ │ ├── usb_device_select_config_params_v1_11_t.hpp │ │ │ ├── usb_device_select_config_params_v1_13_t.hpp │ │ │ ├── usb_device_select_config_params_v1_15_t.hpp │ │ │ ├── usb_device_select_config_params_v1_17_t.hpp │ │ │ ├── usb_device_select_config_params_v1_1_t.hpp │ │ │ ├── usb_device_select_config_params_v1_5_t.hpp │ │ │ ├── usb_device_select_config_params_v1_7_t.hpp │ │ │ ├── usb_device_select_config_params_v1_9_t.hpp │ │ │ ├── usb_device_speed_t.hpp │ │ │ ├── usb_device_status_t.hpp │ │ │ ├── usb_device_traits_t.hpp │ │ │ ├── usb_device_type_t.hpp │ │ │ ├── usb_endpoint_descriptor_t.hpp │ │ │ ├── usb_endpoint_status_t.hpp │ │ │ ├── usb_frame_number_and_qpc_for_time_sync_information_t.hpp │ │ │ ├── usb_function_suspend_options_t.hpp │ │ │ ├── usb_high_speed_maxpacket_t.hpp │ │ │ ├── usb_hub_30_port_remote_wake_mask_t.hpp │ │ │ ├── usb_hub_change_t.hpp │ │ │ ├── usb_hub_descriptor_t.hpp │ │ │ ├── usb_hub_status_and_change_t.hpp │ │ │ ├── usb_hub_status_t.hpp │ │ │ ├── usb_idle_callback_info_t.hpp │ │ │ ├── usb_interface_association_descriptor_t.hpp │ │ │ ├── usb_interface_descriptor_t.hpp │ │ │ ├── usb_interface_power_descriptor_t.hpp │ │ │ ├── usb_interface_select_setting_params_t.hpp │ │ │ ├── usb_interface_select_setting_params_v1_0_t.hpp │ │ │ ├── usb_interface_select_setting_params_v1_11_t.hpp │ │ │ ├── usb_interface_select_setting_params_v1_13_t.hpp │ │ │ ├── usb_interface_select_setting_params_v1_15_t.hpp │ │ │ ├── usb_interface_select_setting_params_v1_17_t.hpp │ │ │ ├── usb_interface_select_setting_params_v1_1_t.hpp │ │ │ ├── usb_interface_select_setting_params_v1_5_t.hpp │ │ │ ├── usb_interface_select_setting_params_v1_7_t.hpp │ │ │ ├── usb_interface_select_setting_params_v1_9_t.hpp │ │ │ ├── usb_interface_setting_pair_t.hpp │ │ │ ├── usb_interface_setting_pair_v1_0_t.hpp │ │ │ ├── usb_interface_setting_pair_v1_11_t.hpp │ │ │ ├── usb_interface_setting_pair_v1_13_t.hpp │ │ │ ├── usb_interface_setting_pair_v1_15_t.hpp │ │ │ ├── usb_interface_setting_pair_v1_17_t.hpp │ │ │ ├── usb_interface_setting_pair_v1_1_t.hpp │ │ │ ├── usb_interface_setting_pair_v1_5_t.hpp │ │ │ ├── usb_interface_setting_pair_v1_7_t.hpp │ │ │ ├── usb_interface_setting_pair_v1_9_t.hpp │ │ │ ├── usb_interface_status_t.hpp │ │ │ ├── usb_pipe_information_t.hpp │ │ │ ├── usb_pipe_information_v1_0_t.hpp │ │ │ ├── usb_pipe_information_v1_11_t.hpp │ │ │ ├── usb_pipe_information_v1_13_t.hpp │ │ │ ├── usb_pipe_information_v1_15_t.hpp │ │ │ ├── usb_pipe_information_v1_17_t.hpp │ │ │ ├── usb_pipe_information_v1_1_t.hpp │ │ │ ├── usb_pipe_information_v1_5_t.hpp │ │ │ ├── usb_pipe_information_v1_7_t.hpp │ │ │ ├── usb_pipe_information_v1_9_t.hpp │ │ │ ├── usb_pipe_type_t.hpp │ │ │ ├── usb_port_change_t.hpp │ │ │ ├── usb_port_ext_status_and_change_t.hpp │ │ │ ├── usb_port_ext_status_t.hpp │ │ │ ├── usb_port_status_and_change_t.hpp │ │ │ ├── usb_port_status_t.hpp │ │ │ ├── usb_request_completion_params_t.hpp │ │ │ ├── usb_request_completion_params_v1_0_t.hpp │ │ │ ├── usb_request_completion_params_v1_11_t.hpp │ │ │ ├── usb_request_completion_params_v1_13_t.hpp │ │ │ ├── usb_request_completion_params_v1_15_t.hpp │ │ │ ├── usb_request_completion_params_v1_17_t.hpp │ │ │ ├── usb_request_completion_params_v1_1_t.hpp │ │ │ ├── usb_request_completion_params_v1_5_t.hpp │ │ │ ├── usb_request_completion_params_v1_7_t.hpp │ │ │ ├── usb_request_completion_params_v1_9_t.hpp │ │ │ ├── usb_request_type_t.hpp │ │ │ ├── usb_start_tracking_for_time_sync_information_t.hpp │ │ │ ├── usb_stop_tracking_for_time_sync_information_t.hpp │ │ │ ├── usb_string_descriptor_t.hpp │ │ │ ├── usb_superspeed_endpoint_companion_descriptor_t.hpp │ │ │ ├── usb_superspeedplus_isoch_endpoint_companion_descriptor_t.hpp │ │ │ ├── usb_target_device_select_config_type_t.hpp │ │ │ ├── usb_target_device_select_setting_type_t.hpp │ │ │ ├── usb_topology_address_t.hpp │ │ │ ├── usb_transport_characteristics_change_notification_t.hpp │ │ │ ├── usb_transport_characteristics_change_registration_t.hpp │ │ │ ├── usb_transport_characteristics_change_unregistration_t.hpp │ │ │ ├── usb_transport_characteristics_t.hpp │ │ │ ├── usbc_device_configuration_interface_v1_t.hpp │ │ │ ├── usbc_function_descriptor_t.hpp │ │ │ ├── usbd_device_information_t.hpp │ │ │ ├── usbd_endpoint_offload_information_t.hpp │ │ │ ├── usbd_endpoint_offload_mode_t.hpp │ │ │ ├── usbd_function_handle_t.hpp │ │ │ ├── usbd_handle_info_t.hpp │ │ │ ├── usbd_handle_t.hpp │ │ │ ├── usbd_interface_information_t.hpp │ │ │ ├── usbd_interface_list_entry_t.hpp │ │ │ ├── usbd_interface_v1_t.hpp │ │ │ ├── usbd_interface_v3_t.hpp │ │ │ ├── usbd_iso_packet_descriptor_t.hpp │ │ │ ├── usbd_pipe_information_t.hpp │ │ │ ├── usbd_pipe_type_t.hpp │ │ │ ├── usbd_stream_information_t.hpp │ │ │ ├── usbd_version_information_t.hpp │ │ │ ├── usbdi_handle_t.hpp │ │ │ ├── version_t.hpp │ │ │ ├── virtual_channel_capabilities1_t.hpp │ │ │ ├── virtual_channel_capabilities2_t.hpp │ │ │ ├── virtual_channel_control_t.hpp │ │ │ ├── virtual_channel_status_t.hpp │ │ │ ├── virtual_resource_capability_t.hpp │ │ │ ├── virtual_resource_control_t.hpp │ │ │ ├── virtual_resource_status_t.hpp │ │ │ ├── virtual_resource_t.hpp │ │ │ ├── wait_signal_flags_t.hpp │ │ │ ├── wake_policy_settings_t.hpp │ │ │ ├── wdfchildlist_t.hpp │ │ │ ├── wdfcmreslist_t.hpp │ │ │ ├── wdfcollection_t.hpp │ │ │ ├── wdfcommonbuffer_t.hpp │ │ │ ├── wdfcompaniontarget_t.hpp │ │ │ ├── wdfcontext_triage_info_t.hpp │ │ │ ├── wdfcontext_triage_info_v1_11_t.hpp │ │ │ ├── wdfcontext_triage_info_v1_13_t.hpp │ │ │ ├── wdfcontext_triage_info_v1_15_t.hpp │ │ │ ├── wdfcontext_triage_info_v1_17_t.hpp │ │ │ ├── wdfcontexttype_triage_info_t.hpp │ │ │ ├── wdfcontexttype_triage_info_v1_11_t.hpp │ │ │ ├── wdfcontexttype_triage_info_v1_13_t.hpp │ │ │ ├── wdfcontexttype_triage_info_v1_15_t.hpp │ │ │ ├── wdfcontexttype_triage_info_v1_17_t.hpp │ │ │ ├── wdfcx_fileobject_config_t.hpp │ │ │ ├── wdfcx_fileobject_config_v1_11_t.hpp │ │ │ ├── wdfcx_fileobject_config_v1_13_t.hpp │ │ │ ├── wdfcx_fileobject_config_v1_15_t.hpp │ │ │ ├── wdfcx_fileobject_config_v1_17_t.hpp │ │ │ ├── wdfcx_pnppower_event_callbacks_t.hpp │ │ │ ├── wdfcx_pnppower_event_callbacks_v1_29_t.hpp │ │ │ ├── wdfcx_power_policy_event_callbacks_t.hpp │ │ │ ├── wdfcxdevice_init_t.hpp │ │ │ ├── wdfdevice_init_t.hpp │ │ │ ├── wdfdevice_t.hpp │ │ │ ├── wdfdevice_triage_info_t.hpp │ │ │ ├── wdfdevice_triage_info_v1_11_t.hpp │ │ │ ├── wdfdevice_triage_info_v1_13_t.hpp │ │ │ ├── wdfdevice_triage_info_v1_15_t.hpp │ │ │ ├── wdfdevice_triage_info_v1_17_t.hpp │ │ │ ├── wdfdmaenabler_t.hpp │ │ │ ├── wdfdmatransaction_t.hpp │ │ │ ├── wdfdpc_t.hpp │ │ │ ├── wdfdriver_t.hpp │ │ │ ├── wdffileobject_t.hpp │ │ │ ├── wdffuncenum_numentries_t.hpp │ │ │ ├── wdffuncenum_t.hpp │ │ │ ├── wdffuncenum_v1_0_t.hpp │ │ │ ├── wdffuncenum_v1_11_t.hpp │ │ │ ├── wdffuncenum_v1_13_t.hpp │ │ │ ├── wdffuncenum_v1_15_t.hpp │ │ │ ├── wdffuncenum_v1_17_t.hpp │ │ │ ├── wdffuncenum_v1_1_t.hpp │ │ │ ├── wdffuncenum_v1_5_t.hpp │ │ │ ├── wdffuncenum_v1_7_t.hpp │ │ │ ├── wdffuncenum_v1_9_t.hpp │ │ │ ├── wdffunctions_t.hpp │ │ │ ├── wdffwdprogress_triage_info_t.hpp │ │ │ ├── wdffwdprogress_triage_info_v1_11_t.hpp │ │ │ ├── wdffwdprogress_triage_info_v1_13_t.hpp │ │ │ ├── wdffwdprogress_triage_info_v1_15_t.hpp │ │ │ ├── wdffwdprogress_triage_info_v1_17_t.hpp │ │ │ ├── wdfinterrupt_t.hpp │ │ │ ├── wdfioreslist_t.hpp │ │ │ ├── wdfioresreqlist_t.hpp │ │ │ ├── wdfiotarget_t.hpp │ │ │ ├── wdfirp_triage_info_t.hpp │ │ │ ├── wdfirp_triage_info_v1_11_t.hpp │ │ │ ├── wdfirp_triage_info_v1_13_t.hpp │ │ │ ├── wdfirp_triage_info_v1_15_t.hpp │ │ │ ├── wdfirp_triage_info_v1_17_t.hpp │ │ │ ├── wdfirpqueue_triage_info_t.hpp │ │ │ ├── wdfirpqueue_triage_info_v1_11_t.hpp │ │ │ ├── wdfirpqueue_triage_info_v1_13_t.hpp │ │ │ ├── wdfirpqueue_triage_info_v1_15_t.hpp │ │ │ ├── wdfirpqueue_triage_info_v1_17_t.hpp │ │ │ ├── wdfkey_t.hpp │ │ │ ├── wdflookaside_t.hpp │ │ │ ├── wdfmemory_offset_t.hpp │ │ │ ├── wdfmemory_offset_v1_0_t.hpp │ │ │ ├── wdfmemory_offset_v1_11_t.hpp │ │ │ ├── wdfmemory_offset_v1_13_t.hpp │ │ │ ├── wdfmemory_offset_v1_15_t.hpp │ │ │ ├── wdfmemory_offset_v1_17_t.hpp │ │ │ ├── wdfmemory_offset_v1_1_t.hpp │ │ │ ├── wdfmemory_offset_v1_5_t.hpp │ │ │ ├── wdfmemory_offset_v1_7_t.hpp │ │ │ ├── wdfmemory_offset_v1_9_t.hpp │ │ │ ├── wdfmemory_t.hpp │ │ │ ├── wdfobject_triage_info_t.hpp │ │ │ ├── wdfobject_triage_info_v1_11_t.hpp │ │ │ ├── wdfobject_triage_info_v1_13_t.hpp │ │ │ ├── wdfobject_triage_info_v1_15_t.hpp │ │ │ ├── wdfobject_triage_info_v1_17_t.hpp │ │ │ ├── wdfprocmgmt_message_open_process_reply_t.hpp │ │ │ ├── wdfprocmgmt_message_query_process_reply_t.hpp │ │ │ ├── wdfqueue_t.hpp │ │ │ ├── wdfqueue_triage_info_t.hpp │ │ │ ├── wdfqueue_triage_info_v1_11_t.hpp │ │ │ ├── wdfqueue_triage_info_v1_13_t.hpp │ │ │ ├── wdfqueue_triage_info_v1_15_t.hpp │ │ │ ├── wdfqueue_triage_info_v1_17_t.hpp │ │ │ ├── wdfrequest_t.hpp │ │ │ ├── wdfrequest_triage_info_t.hpp │ │ │ ├── wdfrequest_triage_info_v1_11_t.hpp │ │ │ ├── wdfrequest_triage_info_v1_13_t.hpp │ │ │ ├── wdfrequest_triage_info_v1_15_t.hpp │ │ │ ├── wdfrequest_triage_info_v1_17_t.hpp │ │ │ ├── wdfspinlock_t.hpp │ │ │ ├── wdfstring_t.hpp │ │ │ ├── wdfstructenum_t.hpp │ │ │ ├── wdfstructures_t.hpp │ │ │ ├── wdftimer_t.hpp │ │ │ ├── wdfusbdevice_t.hpp │ │ │ ├── wdfusbinterface_t.hpp │ │ │ ├── wdfusbpipe_t.hpp │ │ │ ├── wdfversion_t.hpp │ │ │ ├── wdfwaitlock_t.hpp │ │ │ ├── wdfwmiinstance_t.hpp │ │ │ ├── wdfwmiprovider_t.hpp │ │ │ ├── wdfworkitem_t.hpp │ │ │ ├── whea128a_t.hpp │ │ │ ├── wmi_instance_config_t.hpp │ │ │ ├── wmi_instance_config_v1_0_t.hpp │ │ │ ├── wmi_instance_config_v1_11_t.hpp │ │ │ ├── wmi_instance_config_v1_13_t.hpp │ │ │ ├── wmi_instance_config_v1_15_t.hpp │ │ │ ├── wmi_instance_config_v1_17_t.hpp │ │ │ ├── wmi_instance_config_v1_1_t.hpp │ │ │ ├── wmi_instance_config_v1_5_t.hpp │ │ │ ├── wmi_instance_config_v1_7_t.hpp │ │ │ ├── wmi_instance_config_v1_9_t.hpp │ │ │ ├── wmi_provider_config_t.hpp │ │ │ ├── wmi_provider_config_v1_0_t.hpp │ │ │ ├── wmi_provider_config_v1_11_t.hpp │ │ │ ├── wmi_provider_config_v1_13_t.hpp │ │ │ ├── wmi_provider_config_v1_15_t.hpp │ │ │ ├── wmi_provider_config_v1_17_t.hpp │ │ │ ├── wmi_provider_config_v1_1_t.hpp │ │ │ ├── wmi_provider_config_v1_5_t.hpp │ │ │ ├── wmi_provider_config_v1_7_t.hpp │ │ │ ├── wmi_provider_config_v1_9_t.hpp │ │ │ ├── wmi_provider_control_t.hpp │ │ │ ├── wmi_provider_flags_t.hpp │ │ │ ├── workitem_config_t.hpp │ │ │ ├── workitem_config_v1_0_t.hpp │ │ │ ├── workitem_config_v1_11_t.hpp │ │ │ ├── workitem_config_v1_13_t.hpp │ │ │ ├── workitem_config_v1_15_t.hpp │ │ │ ├── workitem_config_v1_17_t.hpp │ │ │ ├── workitem_config_v1_1_t.hpp │ │ │ ├── workitem_config_v1_5_t.hpp │ │ │ ├── workitem_config_v1_7_t.hpp │ │ │ ├── workitem_config_v1_9_t.hpp │ │ │ ├── wpp_registration_block_t.hpp │ │ │ ├── wudf_break_point_type_t.hpp │ │ │ ├── wudf_control_obj_ref_string_t.hpp │ │ │ ├── wudf_create_context_t.hpp │ │ │ ├── wudf_debugger_type_t.hpp │ │ │ ├── wudf_device_context_t.hpp │ │ │ ├── wudf_devnode_context_t.hpp │ │ │ ├── wudf_event_t.hpp │ │ │ ├── wudf_irp_buffer_index_t.hpp │ │ │ ├── wudf_lock_t.hpp │ │ │ ├── wudf_operation_type_t.hpp │ │ │ ├── wudf_problem_t.hpp │ │ │ ├── wudf_semaphore_t.hpp │ │ │ ├── wudf_timer_t.hpp │ │ │ ├── wudfmessage_add_device_t.hpp │ │ │ ├── wudfmessage_create_t.hpp │ │ │ ├── wudfmessage_header_t.hpp │ │ │ ├── wudfmessage_io_header_t.hpp │ │ │ ├── wudfmessage_io_reply_t.hpp │ │ │ ├── wudfmessage_remote_interface_arrival_t.hpp │ │ │ ├── wudfmessage_reply_header_t.hpp │ │ │ ├── wudfmessage_t.hpp │ │ │ ├── wudfmessage_target_device_notification_t.hpp │ │ │ ├── wudfmessage_transport_query_id_t.hpp │ │ │ └── zone_segment_header_t.hpp │ │ ├── wdi/ │ │ │ ├── api.hpp │ │ │ └── magic/ │ │ │ ├── api.end.hpp │ │ │ └── api.start.hpp │ │ ├── wdip/ │ │ │ ├── api.hpp │ │ │ └── magic/ │ │ │ ├── api.end.hpp │ │ │ └── api.start.hpp │ │ ├── whea/ │ │ │ ├── aer_bridge_descriptor_t.hpp │ │ │ ├── aer_endpoint_descriptor_t.hpp │ │ │ ├── aer_rootport_descriptor_t.hpp │ │ │ ├── amd_extended_registers_t.hpp │ │ │ ├── api.hpp │ │ │ ├── arm_aarch32_el1_csr_t.hpp │ │ │ ├── arm_aarch32_el2_csr_t.hpp │ │ │ ├── arm_aarch32_secure_csr_t.hpp │ │ │ ├── arm_aarch64_el1_csr_t.hpp │ │ │ ├── arm_aarch64_el2_csr_t.hpp │ │ │ ├── arm_bus_error_t.hpp │ │ │ ├── arm_bus_error_valid_bits_t.hpp │ │ │ ├── arm_cache_error_t.hpp │ │ │ ├── arm_cache_error_valid_bits_t.hpp │ │ │ ├── arm_misc_csr_t.hpp │ │ │ ├── arm_processor_error_context_information_header_flags_t.hpp │ │ │ ├── arm_processor_error_context_information_header_t.hpp │ │ │ ├── arm_processor_error_information_t.hpp │ │ │ ├── arm_processor_error_information_valid_bits_t.hpp │ │ │ ├── arm_processor_error_section_t.hpp │ │ │ ├── arm_processor_error_section_valid_bits_t.hpp │ │ │ ├── arm_processor_error_t.hpp │ │ │ ├── arm_tlb_error_t.hpp │ │ │ ├── arm_tlb_error_valid_bits_t.hpp │ │ │ ├── armv8_aarch32_gprs_t.hpp │ │ │ ├── armv8_aarch64_el3_csr_t.hpp │ │ │ ├── armv8_aarch64_gprs_t.hpp │ │ │ ├── azcc_root_bus_err_event_t.hpp │ │ │ ├── azcc_root_bus_list_event_t.hpp │ │ │ ├── azcc_set_poison_event_t.hpp │ │ │ ├── bugcheck_recovery_log_type_t.hpp │ │ │ ├── cpu_vendor_t.hpp │ │ │ ├── device_driver_descriptor_t.hpp │ │ │ ├── driver_buffer_set_t.hpp │ │ │ ├── drs_object_t.hpp │ │ │ ├── error_injection_capabilities_t.hpp │ │ │ ├── error_packet_data_format_t.hpp │ │ │ ├── error_packet_flags_t.hpp │ │ │ ├── error_packet_v1_t.hpp │ │ │ ├── error_packet_v2_t.hpp │ │ │ ├── error_record_header_flags_t.hpp │ │ │ ├── error_record_header_t.hpp │ │ │ ├── error_record_header_validbits_t.hpp │ │ │ ├── error_record_section_descriptor_flags_t.hpp │ │ │ ├── error_record_section_descriptor_t.hpp │ │ │ ├── error_record_section_descriptor_validbits_t.hpp │ │ │ ├── error_record_t.hpp │ │ │ ├── error_recovery_info_section_t.hpp │ │ │ ├── error_severity_t.hpp │ │ │ ├── error_source_configuration_dd_t.hpp │ │ │ ├── error_source_configuration_device_driver_t.hpp │ │ │ ├── error_source_configuration_device_driver_v1_t.hpp │ │ │ ├── error_source_configuration_t.hpp │ │ │ ├── error_source_descriptor_t.hpp │ │ │ ├── error_source_state_t.hpp │ │ │ ├── error_source_type_t.hpp │ │ │ ├── error_status_t.hpp │ │ │ ├── error_type_t.hpp │ │ │ ├── etw_overflow_event_t.hpp │ │ │ ├── event_log_entry_flags_t.hpp │ │ │ ├── event_log_entry_header_t.hpp │ │ │ ├── event_log_entry_id_t.hpp │ │ │ ├── event_log_entry_t.hpp │ │ │ ├── event_log_entry_type_t.hpp │ │ │ ├── firmware_error_record_reference_t.hpp │ │ │ ├── generic_error_blockstatus_t.hpp │ │ │ ├── generic_error_data_entry_v1_t.hpp │ │ │ ├── generic_error_data_entry_v2_t.hpp │ │ │ ├── generic_error_descriptor_t.hpp │ │ │ ├── generic_error_descriptor_v2_t.hpp │ │ │ ├── generic_error_t.hpp │ │ │ ├── in_use_page_notify_flags_t.hpp │ │ │ ├── ipf_cmc_descriptor_t.hpp │ │ │ ├── ipf_cpe_descriptor_t.hpp │ │ │ ├── ipf_mca_descriptor_t.hpp │ │ │ ├── magic/ │ │ │ │ ├── aer_bridge_descriptor_t.end.hpp │ │ │ │ ├── aer_bridge_descriptor_t.start.hpp │ │ │ │ ├── aer_endpoint_descriptor_t.end.hpp │ │ │ │ ├── aer_endpoint_descriptor_t.start.hpp │ │ │ │ ├── aer_rootport_descriptor_t.end.hpp │ │ │ │ ├── aer_rootport_descriptor_t.start.hpp │ │ │ │ ├── amd_extended_registers_t.end.hpp │ │ │ │ ├── amd_extended_registers_t.start.hpp │ │ │ │ ├── api.end.hpp │ │ │ │ ├── api.start.hpp │ │ │ │ ├── arm_aarch32_el1_csr_t.end.hpp │ │ │ │ ├── arm_aarch32_el1_csr_t.start.hpp │ │ │ │ ├── arm_aarch32_el2_csr_t.end.hpp │ │ │ │ ├── arm_aarch32_el2_csr_t.start.hpp │ │ │ │ ├── arm_aarch32_secure_csr_t.end.hpp │ │ │ │ ├── arm_aarch32_secure_csr_t.start.hpp │ │ │ │ ├── arm_aarch64_el1_csr_t.end.hpp │ │ │ │ ├── arm_aarch64_el1_csr_t.start.hpp │ │ │ │ ├── arm_aarch64_el2_csr_t.end.hpp │ │ │ │ ├── arm_aarch64_el2_csr_t.start.hpp │ │ │ │ ├── arm_bus_error_t.end.hpp │ │ │ │ ├── arm_bus_error_t.start.hpp │ │ │ │ ├── arm_bus_error_valid_bits_t.end.hpp │ │ │ │ ├── arm_bus_error_valid_bits_t.start.hpp │ │ │ │ ├── arm_cache_error_t.end.hpp │ │ │ │ ├── arm_cache_error_t.start.hpp │ │ │ │ ├── arm_cache_error_valid_bits_t.end.hpp │ │ │ │ ├── arm_cache_error_valid_bits_t.start.hpp │ │ │ │ ├── arm_misc_csr_t.end.hpp │ │ │ │ ├── arm_misc_csr_t.start.hpp │ │ │ │ ├── arm_processor_error_context_information_header_flags_t.end.hpp │ │ │ │ ├── arm_processor_error_context_information_header_flags_t.start.hpp │ │ │ │ ├── arm_processor_error_context_information_header_t.end.hpp │ │ │ │ ├── arm_processor_error_context_information_header_t.start.hpp │ │ │ │ ├── arm_processor_error_information_t.end.hpp │ │ │ │ ├── arm_processor_error_information_t.start.hpp │ │ │ │ ├── arm_processor_error_information_valid_bits_t.end.hpp │ │ │ │ ├── arm_processor_error_information_valid_bits_t.start.hpp │ │ │ │ ├── arm_processor_error_section_t.end.hpp │ │ │ │ ├── arm_processor_error_section_t.start.hpp │ │ │ │ ├── arm_processor_error_section_valid_bits_t.end.hpp │ │ │ │ ├── arm_processor_error_section_valid_bits_t.start.hpp │ │ │ │ ├── arm_processor_error_t.end.hpp │ │ │ │ ├── arm_processor_error_t.start.hpp │ │ │ │ ├── arm_tlb_error_t.end.hpp │ │ │ │ ├── arm_tlb_error_t.start.hpp │ │ │ │ ├── arm_tlb_error_valid_bits_t.end.hpp │ │ │ │ ├── arm_tlb_error_valid_bits_t.start.hpp │ │ │ │ ├── armv8_aarch32_gprs_t.end.hpp │ │ │ │ ├── armv8_aarch32_gprs_t.start.hpp │ │ │ │ ├── armv8_aarch64_el3_csr_t.end.hpp │ │ │ │ ├── armv8_aarch64_el3_csr_t.start.hpp │ │ │ │ ├── armv8_aarch64_gprs_t.end.hpp │ │ │ │ ├── armv8_aarch64_gprs_t.start.hpp │ │ │ │ ├── azcc_root_bus_err_event_t.end.hpp │ │ │ │ ├── azcc_root_bus_err_event_t.start.hpp │ │ │ │ ├── azcc_root_bus_list_event_t.end.hpp │ │ │ │ ├── azcc_root_bus_list_event_t.start.hpp │ │ │ │ ├── azcc_set_poison_event_t.end.hpp │ │ │ │ ├── azcc_set_poison_event_t.start.hpp │ │ │ │ ├── device_driver_descriptor_t.end.hpp │ │ │ │ ├── device_driver_descriptor_t.start.hpp │ │ │ │ ├── driver_buffer_set_t.end.hpp │ │ │ │ ├── driver_buffer_set_t.start.hpp │ │ │ │ ├── error_injection_capabilities_t.end.hpp │ │ │ │ ├── error_injection_capabilities_t.start.hpp │ │ │ │ ├── error_packet_flags_t.end.hpp │ │ │ │ ├── error_packet_flags_t.start.hpp │ │ │ │ ├── error_packet_v1_t.end.hpp │ │ │ │ ├── error_packet_v1_t.start.hpp │ │ │ │ ├── error_packet_v2_t.end.hpp │ │ │ │ ├── error_packet_v2_t.start.hpp │ │ │ │ ├── error_record_header_flags_t.end.hpp │ │ │ │ ├── error_record_header_flags_t.start.hpp │ │ │ │ ├── error_record_header_t.end.hpp │ │ │ │ ├── error_record_header_t.start.hpp │ │ │ │ ├── error_record_header_validbits_t.end.hpp │ │ │ │ ├── error_record_header_validbits_t.start.hpp │ │ │ │ ├── error_record_section_descriptor_flags_t.end.hpp │ │ │ │ ├── error_record_section_descriptor_flags_t.start.hpp │ │ │ │ ├── error_record_section_descriptor_t.end.hpp │ │ │ │ ├── error_record_section_descriptor_t.start.hpp │ │ │ │ ├── error_record_section_descriptor_validbits_t.end.hpp │ │ │ │ ├── error_record_section_descriptor_validbits_t.start.hpp │ │ │ │ ├── error_record_t.end.hpp │ │ │ │ ├── error_record_t.start.hpp │ │ │ │ ├── error_recovery_info_section_t.end.hpp │ │ │ │ ├── error_recovery_info_section_t.start.hpp │ │ │ │ ├── error_source_configuration_dd_t.end.hpp │ │ │ │ ├── error_source_configuration_dd_t.start.hpp │ │ │ │ ├── error_source_configuration_device_driver_t.end.hpp │ │ │ │ ├── error_source_configuration_device_driver_t.start.hpp │ │ │ │ ├── error_source_configuration_device_driver_v1_t.end.hpp │ │ │ │ ├── error_source_configuration_device_driver_v1_t.start.hpp │ │ │ │ ├── error_source_configuration_t.end.hpp │ │ │ │ ├── error_source_configuration_t.start.hpp │ │ │ │ ├── error_source_descriptor_t.end.hpp │ │ │ │ ├── error_source_descriptor_t.start.hpp │ │ │ │ ├── error_status_t.end.hpp │ │ │ │ ├── error_status_t.start.hpp │ │ │ │ ├── etw_overflow_event_t.end.hpp │ │ │ │ ├── etw_overflow_event_t.start.hpp │ │ │ │ ├── event_log_entry_flags_t.end.hpp │ │ │ │ ├── event_log_entry_flags_t.start.hpp │ │ │ │ ├── event_log_entry_header_t.end.hpp │ │ │ │ ├── event_log_entry_header_t.start.hpp │ │ │ │ ├── event_log_entry_t.end.hpp │ │ │ │ ├── event_log_entry_t.start.hpp │ │ │ │ ├── firmware_error_record_reference_t.end.hpp │ │ │ │ ├── firmware_error_record_reference_t.start.hpp │ │ │ │ ├── generic_error_blockstatus_t.end.hpp │ │ │ │ ├── generic_error_blockstatus_t.start.hpp │ │ │ │ ├── generic_error_data_entry_v1_t.end.hpp │ │ │ │ ├── generic_error_data_entry_v1_t.start.hpp │ │ │ │ ├── generic_error_data_entry_v2_t.end.hpp │ │ │ │ ├── generic_error_data_entry_v2_t.start.hpp │ │ │ │ ├── generic_error_descriptor_t.end.hpp │ │ │ │ ├── generic_error_descriptor_t.start.hpp │ │ │ │ ├── generic_error_descriptor_v2_t.end.hpp │ │ │ │ ├── generic_error_descriptor_v2_t.start.hpp │ │ │ │ ├── generic_error_t.end.hpp │ │ │ │ ├── generic_error_t.start.hpp │ │ │ │ ├── in_use_page_notify_flags_t.end.hpp │ │ │ │ ├── in_use_page_notify_flags_t.start.hpp │ │ │ │ ├── ipf_cmc_descriptor_t.end.hpp │ │ │ │ ├── ipf_cmc_descriptor_t.start.hpp │ │ │ │ ├── ipf_cpe_descriptor_t.end.hpp │ │ │ │ ├── ipf_cpe_descriptor_t.start.hpp │ │ │ │ ├── ipf_mca_descriptor_t.end.hpp │ │ │ │ ├── ipf_mca_descriptor_t.start.hpp │ │ │ │ ├── memory_correctable_error_data_t.end.hpp │ │ │ │ ├── memory_correctable_error_data_t.start.hpp │ │ │ │ ├── memory_correctable_error_header_t.end.hpp │ │ │ │ ├── memory_correctable_error_header_t.start.hpp │ │ │ │ ├── memory_correctable_error_section_t.end.hpp │ │ │ │ ├── memory_correctable_error_section_t.start.hpp │ │ │ │ ├── memory_correctable_error_section_validbits_t.end.hpp │ │ │ │ ├── memory_correctable_error_section_validbits_t.start.hpp │ │ │ │ ├── memory_error_section_t.end.hpp │ │ │ │ ├── memory_error_section_t.start.hpp │ │ │ │ ├── memory_error_section_validbits_t.end.hpp │ │ │ │ ├── memory_error_section_validbits_t.start.hpp │ │ │ │ ├── memory_throttle_summary_failed_event_t.end.hpp │ │ │ │ ├── memory_throttle_summary_failed_event_t.start.hpp │ │ │ │ ├── msr_dump_section_t.end.hpp │ │ │ │ ├── msr_dump_section_t.start.hpp │ │ │ │ ├── nmi_error_section_flags_t.end.hpp │ │ │ │ ├── nmi_error_section_flags_t.start.hpp │ │ │ │ ├── nmi_error_section_t.end.hpp │ │ │ │ ├── nmi_error_section_t.start.hpp │ │ │ │ ├── notification_descriptor_t.end.hpp │ │ │ │ ├── notification_descriptor_t.start.hpp │ │ │ │ ├── notification_flags_t.end.hpp │ │ │ │ ├── notification_flags_t.start.hpp │ │ │ │ ├── offline_done_event_t.end.hpp │ │ │ │ ├── offline_done_event_t.start.hpp │ │ │ │ ├── packet_log_data_t.end.hpp │ │ │ │ ├── packet_log_data_t.start.hpp │ │ │ │ ├── pci_slot_number_t.end.hpp │ │ │ │ ├── pci_slot_number_t.start.hpp │ │ │ │ ├── pcie_address_t.end.hpp │ │ │ │ ├── pcie_address_t.start.hpp │ │ │ │ ├── pcie_correctable_error_devices_t.end.hpp │ │ │ │ ├── pcie_correctable_error_devices_t.start.hpp │ │ │ │ ├── pcie_correctable_error_devices_validbits_t.end.hpp │ │ │ │ ├── pcie_correctable_error_devices_validbits_t.start.hpp │ │ │ │ ├── pcie_correctable_error_section_header_t.end.hpp │ │ │ │ ├── pcie_correctable_error_section_header_t.start.hpp │ │ │ │ ├── pcie_correctable_error_section_t.end.hpp │ │ │ │ ├── pcie_correctable_error_section_t.start.hpp │ │ │ │ ├── pciexpress_bridge_control_status_t.end.hpp │ │ │ │ ├── pciexpress_bridge_control_status_t.start.hpp │ │ │ │ ├── pciexpress_command_status_t.end.hpp │ │ │ │ ├── pciexpress_command_status_t.start.hpp │ │ │ │ ├── pciexpress_device_id_t.end.hpp │ │ │ │ ├── pciexpress_device_id_t.start.hpp │ │ │ │ ├── pciexpress_error_section_t.end.hpp │ │ │ │ ├── pciexpress_error_section_t.start.hpp │ │ │ │ ├── pciexpress_error_section_validbits_t.end.hpp │ │ │ │ ├── pciexpress_error_section_validbits_t.start.hpp │ │ │ │ ├── pciexpress_version_t.end.hpp │ │ │ │ ├── pciexpress_version_t.start.hpp │ │ │ │ ├── pcixbus_command_t.end.hpp │ │ │ │ ├── pcixbus_command_t.start.hpp │ │ │ │ ├── pcixbus_error_section_t.end.hpp │ │ │ │ ├── pcixbus_error_section_t.start.hpp │ │ │ │ ├── pcixbus_error_section_validbits_t.end.hpp │ │ │ │ ├── pcixbus_error_section_validbits_t.start.hpp │ │ │ │ ├── pcixbus_id_t.end.hpp │ │ │ │ ├── pcixbus_id_t.start.hpp │ │ │ │ ├── pcixdevice_error_section_t.end.hpp │ │ │ │ ├── pcixdevice_error_section_t.start.hpp │ │ │ │ ├── pcixdevice_error_section_validbits_t.end.hpp │ │ │ │ ├── pcixdevice_error_section_validbits_t.start.hpp │ │ │ │ ├── pcixdevice_id_t.end.hpp │ │ │ │ ├── pcixdevice_id_t.start.hpp │ │ │ │ ├── pcixdevice_register_pair_t.end.hpp │ │ │ │ ├── pcixdevice_register_pair_t.start.hpp │ │ │ │ ├── persistence_info_t.end.hpp │ │ │ │ ├── persistence_info_t.start.hpp │ │ │ │ ├── pmem_error_section_t.end.hpp │ │ │ │ ├── pmem_error_section_t.start.hpp │ │ │ │ ├── pmem_error_section_validbits_t.end.hpp │ │ │ │ ├── pmem_error_section_validbits_t.start.hpp │ │ │ │ ├── pmem_page_range_t.end.hpp │ │ │ │ ├── pmem_page_range_t.start.hpp │ │ │ │ ├── processor_family_info_t.end.hpp │ │ │ │ ├── processor_family_info_t.start.hpp │ │ │ │ ├── processor_generic_error_section_t.end.hpp │ │ │ │ ├── processor_generic_error_section_t.start.hpp │ │ │ │ ├── processor_generic_error_section_validbits_t.end.hpp │ │ │ │ ├── processor_generic_error_section_validbits_t.start.hpp │ │ │ │ ├── pshed_pi_trace_event_t.end.hpp │ │ │ │ ├── pshed_pi_trace_event_t.start.hpp │ │ │ │ ├── pshed_plugin_callbacks_t.end.hpp │ │ │ │ ├── pshed_plugin_callbacks_t.start.hpp │ │ │ │ ├── pshed_plugin_dimm_mismatch_t.end.hpp │ │ │ │ ├── pshed_plugin_dimm_mismatch_t.start.hpp │ │ │ │ ├── pshed_plugin_enable_notify_failed_event_t.end.hpp │ │ │ │ ├── pshed_plugin_enable_notify_failed_event_t.start.hpp │ │ │ │ ├── pshed_plugin_heartbeat_t.end.hpp │ │ │ │ ├── pshed_plugin_heartbeat_t.start.hpp │ │ │ │ ├── pshed_plugin_load_event_t.end.hpp │ │ │ │ ├── pshed_plugin_load_event_t.start.hpp │ │ │ │ ├── pshed_plugin_platform_support_event_t.end.hpp │ │ │ │ ├── pshed_plugin_platform_support_event_t.start.hpp │ │ │ │ ├── pshed_plugin_registration_packet_t.end.hpp │ │ │ │ ├── pshed_plugin_registration_packet_t.start.hpp │ │ │ │ ├── pshed_plugin_registration_packet_v1_t.end.hpp │ │ │ │ ├── pshed_plugin_registration_packet_v1_t.start.hpp │ │ │ │ ├── pshed_plugin_registration_packet_v2_t.end.hpp │ │ │ │ ├── pshed_plugin_registration_packet_v2_t.start.hpp │ │ │ │ ├── pshed_plugin_unload_event_t.end.hpp │ │ │ │ ├── pshed_plugin_unload_event_t.start.hpp │ │ │ │ ├── recovery_action_t.end.hpp │ │ │ │ ├── recovery_action_t.start.hpp │ │ │ │ ├── recovery_context_t.end.hpp │ │ │ │ ├── recovery_context_t.start.hpp │ │ │ │ ├── register_key_notification_failed_event_t.end.hpp │ │ │ │ ├── register_key_notification_failed_event_t.start.hpp │ │ │ │ ├── report_hw_error_device_driver_flags_t.end.hpp │ │ │ │ ├── report_hw_error_device_driver_flags_t.start.hpp │ │ │ │ ├── revision_t.end.hpp │ │ │ │ ├── revision_t.start.hpp │ │ │ │ ├── sel_bugcheck_progress_t.end.hpp │ │ │ │ ├── sel_bugcheck_progress_t.start.hpp │ │ │ │ ├── sel_bugcheck_recovery_status_multiple_bugcheck_event_t.end.hpp │ │ │ │ ├── sel_bugcheck_recovery_status_multiple_bugcheck_event_t.start.hpp │ │ │ │ ├── sel_bugcheck_recovery_status_phase1_event_t.end.hpp │ │ │ │ ├── sel_bugcheck_recovery_status_phase1_event_t.start.hpp │ │ │ │ ├── sel_bugcheck_recovery_status_phase2_event_t.end.hpp │ │ │ │ ├── sel_bugcheck_recovery_status_phase2_event_t.start.hpp │ │ │ │ ├── sel_bugcheck_recovery_status_start_event_t.end.hpp │ │ │ │ ├── sel_bugcheck_recovery_status_start_event_t.start.hpp │ │ │ │ ├── srar_detail_event_t.end.hpp │ │ │ │ ├── srar_detail_event_t.start.hpp │ │ │ │ ├── throttle_add_err_src_failed_event_t.end.hpp │ │ │ │ ├── throttle_add_err_src_failed_event_t.start.hpp │ │ │ │ ├── throttle_memory_add_or_remove_event_t.end.hpp │ │ │ │ ├── throttle_memory_add_or_remove_event_t.start.hpp │ │ │ │ ├── throttle_pcie_add_event_t.end.hpp │ │ │ │ ├── throttle_pcie_add_event_t.start.hpp │ │ │ │ ├── throttle_pcie_remove_event_t.end.hpp │ │ │ │ ├── throttle_pcie_remove_event_t.start.hpp │ │ │ │ ├── throttle_reg_data_ignored_event_t.end.hpp │ │ │ │ ├── throttle_reg_data_ignored_event_t.start.hpp │ │ │ │ ├── throttle_registry_corrupt_event_t.end.hpp │ │ │ │ ├── throttle_registry_corrupt_event_t.start.hpp │ │ │ │ ├── timestamp_t.end.hpp │ │ │ │ ├── timestamp_t.start.hpp │ │ │ │ ├── x64_register_state_t.end.hpp │ │ │ │ ├── x64_register_state_t.start.hpp │ │ │ │ ├── x86_register_state_t.end.hpp │ │ │ │ ├── x86_register_state_t.start.hpp │ │ │ │ ├── xpf_bus_check_t.end.hpp │ │ │ │ ├── xpf_bus_check_t.start.hpp │ │ │ │ ├── xpf_cache_check_t.end.hpp │ │ │ │ ├── xpf_cache_check_t.start.hpp │ │ │ │ ├── xpf_cmc_descriptor_t.end.hpp │ │ │ │ ├── xpf_cmc_descriptor_t.start.hpp │ │ │ │ ├── xpf_context_info_t.end.hpp │ │ │ │ ├── xpf_context_info_t.start.hpp │ │ │ │ ├── xpf_mc_bank_descriptor_t.end.hpp │ │ │ │ ├── xpf_mc_bank_descriptor_t.start.hpp │ │ │ │ ├── xpf_mca_section_t.end.hpp │ │ │ │ ├── xpf_mca_section_t.start.hpp │ │ │ │ ├── xpf_mce_descriptor_t.end.hpp │ │ │ │ ├── xpf_mce_descriptor_t.start.hpp │ │ │ │ ├── xpf_ms_check_t.end.hpp │ │ │ │ ├── xpf_ms_check_t.start.hpp │ │ │ │ ├── xpf_nmi_descriptor_t.end.hpp │ │ │ │ ├── xpf_nmi_descriptor_t.start.hpp │ │ │ │ ├── xpf_processor_error_section_t.end.hpp │ │ │ │ ├── xpf_processor_error_section_t.start.hpp │ │ │ │ ├── xpf_processor_error_section_validbits_t.end.hpp │ │ │ │ ├── xpf_processor_error_section_validbits_t.start.hpp │ │ │ │ ├── xpf_procinfo_t.end.hpp │ │ │ │ ├── xpf_procinfo_t.start.hpp │ │ │ │ ├── xpf_procinfo_validbits_t.end.hpp │ │ │ │ ├── xpf_procinfo_validbits_t.start.hpp │ │ │ │ ├── xpf_tlb_check_t.end.hpp │ │ │ │ └── xpf_tlb_check_t.start.hpp │ │ │ ├── memory_correctable_error_data_t.hpp │ │ │ ├── memory_correctable_error_header_t.hpp │ │ │ ├── memory_correctable_error_section_t.hpp │ │ │ ├── memory_correctable_error_section_validbits_t.hpp │ │ │ ├── memory_error_section_t.hpp │ │ │ ├── memory_error_section_validbits_t.hpp │ │ │ ├── memory_throttle_summary_failed_event_t.hpp │ │ │ ├── msr_dump_section_t.hpp │ │ │ ├── nmi_error_section_flags_t.hpp │ │ │ ├── nmi_error_section_t.hpp │ │ │ ├── notification_descriptor_t.hpp │ │ │ ├── notification_flags_t.hpp │ │ │ ├── offline_done_event_t.hpp │ │ │ ├── packet_log_data_t.hpp │ │ │ ├── pci_slot_number_t.hpp │ │ │ ├── pcie_address_t.hpp │ │ │ ├── pcie_correctable_error_devices_t.hpp │ │ │ ├── pcie_correctable_error_devices_validbits_t.hpp │ │ │ ├── pcie_correctable_error_section_header_t.hpp │ │ │ ├── pcie_correctable_error_section_t.hpp │ │ │ ├── pciexpress_bridge_control_status_t.hpp │ │ │ ├── pciexpress_command_status_t.hpp │ │ │ ├── pciexpress_device_id_t.hpp │ │ │ ├── pciexpress_device_type_t.hpp │ │ │ ├── pciexpress_error_section_t.hpp │ │ │ ├── pciexpress_error_section_validbits_t.hpp │ │ │ ├── pciexpress_version_t.hpp │ │ │ ├── pcixbus_command_t.hpp │ │ │ ├── pcixbus_error_section_t.hpp │ │ │ ├── pcixbus_error_section_validbits_t.hpp │ │ │ ├── pcixbus_id_t.hpp │ │ │ ├── pcixdevice_error_section_t.hpp │ │ │ ├── pcixdevice_error_section_validbits_t.hpp │ │ │ ├── pcixdevice_id_t.hpp │ │ │ ├── pcixdevice_register_pair_t.hpp │ │ │ ├── persistence_info_t.hpp │ │ │ ├── pfa_remove_trigger_t.hpp │ │ │ ├── pmem_error_section_t.hpp │ │ │ ├── pmem_error_section_validbits_t.hpp │ │ │ ├── pmem_page_range_t.hpp │ │ │ ├── processor_family_info_t.hpp │ │ │ ├── processor_generic_error_section_t.hpp │ │ │ ├── processor_generic_error_section_validbits_t.hpp │ │ │ ├── pshed_pi_trace_event_t.hpp │ │ │ ├── pshed_plugin_callbacks_t.hpp │ │ │ ├── pshed_plugin_dimm_mismatch_t.hpp │ │ │ ├── pshed_plugin_enable_notify_errors_t.hpp │ │ │ ├── pshed_plugin_enable_notify_failed_event_t.hpp │ │ │ ├── pshed_plugin_heartbeat_t.hpp │ │ │ ├── pshed_plugin_load_event_t.hpp │ │ │ ├── pshed_plugin_platform_support_event_t.hpp │ │ │ ├── pshed_plugin_registration_packet_t.hpp │ │ │ ├── pshed_plugin_registration_packet_v1_t.hpp │ │ │ ├── pshed_plugin_registration_packet_v2_t.hpp │ │ │ ├── pshed_plugin_unload_event_t.hpp │ │ │ ├── raw_data_format_t.hpp │ │ │ ├── recovery_action_t.hpp │ │ │ ├── recovery_context_error_type_t.hpp │ │ │ ├── recovery_context_t.hpp │ │ │ ├── recovery_failure_reason_t.hpp │ │ │ ├── recovery_type_t.hpp │ │ │ ├── register_key_notification_failed_event_t.hpp │ │ │ ├── report_hw_error_device_driver_flags_t.hpp │ │ │ ├── revision_t.hpp │ │ │ ├── sel_bugcheck_progress_t.hpp │ │ │ ├── sel_bugcheck_recovery_status_multiple_bugcheck_event_t.hpp │ │ │ ├── sel_bugcheck_recovery_status_phase1_event_t.hpp │ │ │ ├── sel_bugcheck_recovery_status_phase2_event_t.hpp │ │ │ ├── sel_bugcheck_recovery_status_start_event_t.hpp │ │ │ ├── srar_detail_event_t.hpp │ │ │ ├── throttle_add_err_src_failed_event_t.hpp │ │ │ ├── throttle_memory_add_or_remove_event_t.hpp │ │ │ ├── throttle_pcie_add_event_t.hpp │ │ │ ├── throttle_pcie_remove_event_t.hpp │ │ │ ├── throttle_reg_data_ignored_event_t.hpp │ │ │ ├── throttle_registry_corrupt_event_t.hpp │ │ │ ├── throttle_type_t.hpp │ │ │ ├── timestamp_t.hpp │ │ │ ├── x64_register_state_t.hpp │ │ │ ├── x86_register_state_t.hpp │ │ │ ├── xpf_bus_check_t.hpp │ │ │ ├── xpf_cache_check_t.hpp │ │ │ ├── xpf_cmc_descriptor_t.hpp │ │ │ ├── xpf_context_info_t.hpp │ │ │ ├── xpf_mc_bank_descriptor_t.hpp │ │ │ ├── xpf_mca_section_t.hpp │ │ │ ├── xpf_mce_descriptor_t.hpp │ │ │ ├── xpf_ms_check_t.hpp │ │ │ ├── xpf_nmi_descriptor_t.hpp │ │ │ ├── xpf_processor_error_section_t.hpp │ │ │ ├── xpf_processor_error_section_validbits_t.hpp │ │ │ ├── xpf_procinfo_t.hpp │ │ │ ├── xpf_procinfo_validbits_t.hpp │ │ │ └── xpf_tlb_check_t.hpp │ │ ├── wheap/ │ │ │ ├── acpi_timeout_event_t.hpp │ │ │ ├── add_remove_error_source_event_t.hpp │ │ │ ├── api.hpp │ │ │ ├── attempt_recovery_event_t.hpp │ │ │ ├── cleared_poison_event_t.hpp │ │ │ ├── cmci_implemented_event_t.hpp │ │ │ ├── cmci_initerr_event_t.hpp │ │ │ ├── cmci_restart_event_t.hpp │ │ │ ├── create_generic_record_event_t.hpp │ │ │ ├── deferred_event_t.hpp │ │ │ ├── device_drv_event_t.hpp │ │ │ ├── dropped_corrected_error_event_t.hpp │ │ │ ├── edpc_enabled_event_t.hpp │ │ │ ├── err_src_array_invalid_event_t.hpp │ │ │ ├── err_src_invalid_event_t.hpp │ │ │ ├── error_cleared_event_t.hpp │ │ │ ├── error_record_event_t.hpp │ │ │ ├── error_record_wrapper_flags_t.hpp │ │ │ ├── error_record_wrapper_t.hpp │ │ │ ├── error_source_t.hpp │ │ │ ├── error_source_table_t.hpp │ │ │ ├── found_error_in_bank_event_t.hpp │ │ │ ├── generic_err_mem_map_event_t.hpp │ │ │ ├── info_block_t.hpp │ │ │ ├── magic/ │ │ │ │ ├── acpi_timeout_event_t.end.hpp │ │ │ │ ├── acpi_timeout_event_t.start.hpp │ │ │ │ ├── add_remove_error_source_event_t.end.hpp │ │ │ │ ├── add_remove_error_source_event_t.start.hpp │ │ │ │ ├── api.end.hpp │ │ │ │ ├── api.start.hpp │ │ │ │ ├── attempt_recovery_event_t.end.hpp │ │ │ │ ├── attempt_recovery_event_t.start.hpp │ │ │ │ ├── cleared_poison_event_t.end.hpp │ │ │ │ ├── cleared_poison_event_t.start.hpp │ │ │ │ ├── cmci_implemented_event_t.end.hpp │ │ │ │ ├── cmci_implemented_event_t.start.hpp │ │ │ │ ├── cmci_initerr_event_t.end.hpp │ │ │ │ ├── cmci_initerr_event_t.start.hpp │ │ │ │ ├── cmci_restart_event_t.end.hpp │ │ │ │ ├── cmci_restart_event_t.start.hpp │ │ │ │ ├── create_generic_record_event_t.end.hpp │ │ │ │ ├── create_generic_record_event_t.start.hpp │ │ │ │ ├── deferred_event_t.end.hpp │ │ │ │ ├── deferred_event_t.start.hpp │ │ │ │ ├── device_drv_event_t.end.hpp │ │ │ │ ├── device_drv_event_t.start.hpp │ │ │ │ ├── dropped_corrected_error_event_t.end.hpp │ │ │ │ ├── dropped_corrected_error_event_t.start.hpp │ │ │ │ ├── edpc_enabled_event_t.end.hpp │ │ │ │ ├── edpc_enabled_event_t.start.hpp │ │ │ │ ├── err_src_array_invalid_event_t.end.hpp │ │ │ │ ├── err_src_array_invalid_event_t.start.hpp │ │ │ │ ├── err_src_invalid_event_t.end.hpp │ │ │ │ ├── err_src_invalid_event_t.start.hpp │ │ │ │ ├── error_cleared_event_t.end.hpp │ │ │ │ ├── error_cleared_event_t.start.hpp │ │ │ │ ├── error_record_event_t.end.hpp │ │ │ │ ├── error_record_event_t.start.hpp │ │ │ │ ├── error_record_wrapper_flags_t.end.hpp │ │ │ │ ├── error_record_wrapper_flags_t.start.hpp │ │ │ │ ├── error_record_wrapper_t.end.hpp │ │ │ │ ├── error_record_wrapper_t.start.hpp │ │ │ │ ├── error_source_t.end.hpp │ │ │ │ ├── error_source_t.start.hpp │ │ │ │ ├── error_source_table_t.end.hpp │ │ │ │ ├── error_source_table_t.start.hpp │ │ │ │ ├── found_error_in_bank_event_t.end.hpp │ │ │ │ ├── found_error_in_bank_event_t.start.hpp │ │ │ │ ├── generic_err_mem_map_event_t.end.hpp │ │ │ │ ├── generic_err_mem_map_event_t.start.hpp │ │ │ │ ├── info_block_t.end.hpp │ │ │ │ ├── info_block_t.start.hpp │ │ │ │ ├── osc_implemented_t.end.hpp │ │ │ │ ├── osc_implemented_t.start.hpp │ │ │ │ ├── pcie_config_info_t.end.hpp │ │ │ │ ├── pcie_config_info_t.start.hpp │ │ │ │ ├── pcie_override_info_t.end.hpp │ │ │ │ ├── pcie_override_info_t.start.hpp │ │ │ │ ├── pcie_read_overrides_err_t.end.hpp │ │ │ │ ├── pcie_read_overrides_err_t.start.hpp │ │ │ │ ├── pfa_memory_offlined_t.end.hpp │ │ │ │ ├── pfa_memory_offlined_t.start.hpp │ │ │ │ ├── pfa_memory_policy_t.end.hpp │ │ │ │ ├── pfa_memory_policy_t.start.hpp │ │ │ │ ├── pfa_memory_remove_monitor_t.end.hpp │ │ │ │ ├── pfa_memory_remove_monitor_t.start.hpp │ │ │ │ ├── plugin_pfa_event_t.end.hpp │ │ │ │ ├── plugin_pfa_event_t.start.hpp │ │ │ │ ├── process_einj_event_t.end.hpp │ │ │ │ ├── process_einj_event_t.start.hpp │ │ │ │ ├── process_hest_event_t.end.hpp │ │ │ │ ├── process_hest_event_t.start.hpp │ │ │ │ ├── pshed_inject_error_t.end.hpp │ │ │ │ ├── pshed_inject_error_t.start.hpp │ │ │ │ ├── pshed_plugin_register_t.end.hpp │ │ │ │ ├── pshed_plugin_register_t.start.hpp │ │ │ │ ├── spurious_aer_event_t.end.hpp │ │ │ │ ├── spurious_aer_event_t.start.hpp │ │ │ │ ├── started_report_hw_error_t.end.hpp │ │ │ │ ├── started_report_hw_error_t.start.hpp │ │ │ │ ├── stuck_error_event_t.end.hpp │ │ │ │ ├── stuck_error_event_t.start.hpp │ │ │ │ ├── work_queue_t.end.hpp │ │ │ │ └── work_queue_t.start.hpp │ │ │ ├── osc_implemented_t.hpp │ │ │ ├── pcie_config_info_t.hpp │ │ │ ├── pcie_override_info_t.hpp │ │ │ ├── pcie_read_overrides_err_t.hpp │ │ │ ├── pfa_memory_offlined_t.hpp │ │ │ ├── pfa_memory_policy_t.hpp │ │ │ ├── pfa_memory_remove_monitor_t.hpp │ │ │ ├── pfa_offline_decision_type_t.hpp │ │ │ ├── plugin_pfa_event_t.hpp │ │ │ ├── process_einj_event_t.hpp │ │ │ ├── process_hest_event_t.hpp │ │ │ ├── pshed_inject_error_t.hpp │ │ │ ├── pshed_plugin_register_t.hpp │ │ │ ├── spurious_aer_event_t.hpp │ │ │ ├── started_report_hw_error_t.hpp │ │ │ ├── stuck_error_event_t.hpp │ │ │ └── work_queue_t.hpp │ │ ├── wil/ │ │ │ ├── api.hpp │ │ │ ├── details_feature_descriptor_t.hpp │ │ │ ├── details_feature_reporting_cache_t.hpp │ │ │ ├── details_feature_state_cache_t.hpp │ │ │ ├── details_feature_test_state_kind_t.hpp │ │ │ ├── details_feature_test_state_t.hpp │ │ │ ├── details_feature_usage_srum_t.hpp │ │ │ ├── details_record_usage_result_t.hpp │ │ │ ├── details_recorded_state_t.hpp │ │ │ ├── details_reported_state_t.hpp │ │ │ ├── details_service_reporting_kind_t.hpp │ │ │ ├── details_service_reporting_options_t.hpp │ │ │ ├── details_staging_config_feature_fields_t.hpp │ │ │ ├── details_staging_config_feature_t.hpp │ │ │ ├── details_staging_config_header_properties_t.hpp │ │ │ ├── details_staging_config_header_t.hpp │ │ │ ├── details_staging_config_t.hpp │ │ │ ├── details_staging_config_usage_trigger_t.hpp │ │ │ ├── details_staging_config_wnf_state_name_t.hpp │ │ │ ├── details_usage_subscription_data_t.hpp │ │ │ ├── feature_change_time_t.hpp │ │ │ ├── feature_enabled_state_kind_t.hpp │ │ │ ├── feature_enabled_state_options_t.hpp │ │ │ ├── feature_enabled_state_t.hpp │ │ │ ├── feature_stage_t.hpp │ │ │ ├── feature_state_t.hpp │ │ │ ├── feature_store_t.hpp │ │ │ ├── feature_test_state_t.hpp │ │ │ ├── feature_traits_feature_19h2_settings_search_updates_t.hpp │ │ │ ├── feature_traits_feature_20h2_enablement_t.hpp │ │ │ ├── feature_traits_feature_20h2_rollback_t.hpp │ │ │ ├── feature_traits_feature_acrylic_share_picker_t.hpp │ │ │ ├── feature_traits_feature_acrylic_task_view_timeline_t.hpp │ │ │ ├── feature_traits_feature_acrylic_taskbar_t.hpp │ │ │ ├── feature_traits_feature_activities_in_shell_t.hpp │ │ │ ├── feature_traits_feature_activities_in_task_view_t.hpp │ │ │ ├── feature_traits_feature_activities_local_background_image_t.hpp │ │ │ ├── feature_traits_feature_activity_history_settings_on_and_t.hpp │ │ │ ├── feature_traits_feature_activity_suggestions_api_t.hpp │ │ │ ├── feature_traits_feature_add_activation_value_set_to_hints_system_t.hpp │ │ │ ├── feature_traits_feature_additional_com_debug_output_t.hpp │ │ │ ├── feature_traits_feature_allow_full_trust_uwp_t.hpp │ │ │ ├── feature_traits_feature_allow_null_user_app_services_t.hpp │ │ │ ├── feature_traits_feature_allow_people_rearrange_in_bar_and_flyout_t.hpp │ │ │ ├── feature_traits_feature_allow_relevance_cloud_fallback_t.hpp │ │ │ ├── feature_traits_feature_allow_single_view_apps_for_assigned_access_t.hpp │ │ │ ├── feature_traits_feature_always_fail_fast_on_xaml_failure_t.hpp │ │ │ ├── feature_traits_feature_always_show_activation_error_t.hpp │ │ │ ├── feature_traits_feature_anaheim_promotion_post_install_post_unlock_delayed_trigger_event_t.hpp │ │ │ ├── feature_traits_feature_anaheim_promotion_pre_install_post_unlock_delayed_trigger_event_for_anaheim_insiders_t.hpp │ │ │ ├── feature_traits_feature_anaheim_promotion_pre_install_post_unlock_delayed_trigger_event_for_non_anaheim_insiders_t.hpp │ │ │ ├── feature_traits_feature_app2_app_launch_work_t.hpp │ │ │ ├── feature_traits_feature_app_defaults_are_restricted_t.hpp │ │ │ ├── feature_traits_feature_app_defaults_browser_enlightenment_dialog_t.hpp │ │ │ ├── feature_traits_feature_app_defaults_cloud_edition_t.hpp │ │ │ ├── feature_traits_feature_app_defaults_cloud_file_launch_content_uri_t.hpp │ │ │ ├── feature_traits_feature_app_defaults_cloud_file_launch_content_uri_wcos_t.hpp │ │ │ ├── feature_traits_feature_app_defaults_deep_link_removal_t.hpp │ │ │ ├── feature_traits_feature_app_defaults_desktop_t.hpp │ │ │ ├── feature_traits_feature_app_defaults_domain_joined_aad_devices_t.hpp │ │ │ ├── feature_traits_feature_app_defaults_edge_campaign_testing_t.hpp │ │ │ ├── feature_traits_feature_app_defaults_edge_coin_campaign_t.hpp │ │ │ ├── feature_traits_feature_app_defaults_enlightenment_dialog_t.hpp │ │ │ ├── feature_traits_feature_app_defaults_mdm_t.hpp │ │ │ ├── feature_traits_feature_app_defaults_open_with_any_t.hpp │ │ │ ├── feature_traits_feature_app_defaults_page_performance_t.hpp │ │ │ ├── feature_traits_feature_app_defaults_phone_t.hpp │ │ │ ├── feature_traits_feature_app_defaults_recommend_new_edge_t.hpp │ │ │ ├── feature_traits_feature_app_defaults_s_mode_t.hpp │ │ │ ├── feature_traits_feature_app_defaults_set_app_as_default_t.hpp │ │ │ ├── feature_traits_feature_app_defaults_set_new_edge_as_default_t.hpp │ │ │ ├── feature_traits_feature_app_defaults_word_pad_safelist_t.hpp │ │ │ ├── feature_traits_feature_app_execution_alias_using_packaged_create_process_t.hpp │ │ │ ├── feature_traits_feature_app_frame_com_rundown_t.hpp │ │ │ ├── feature_traits_feature_app_uri_handler_wildcard_support_t.hpp │ │ │ ├── feature_traits_feature_app_uri_path_support_t.hpp │ │ │ ├── feature_traits_feature_apps_folder_taskbar_icon_loading_t.hpp │ │ │ ├── feature_traits_feature_appx_deployment_redirection_trust_mitigation_t.hpp │ │ │ ├── feature_traits_feature_appx_svc_managed_installer_support_t.hpp │ │ │ ├── feature_traits_feature_auto_recover_edge_after_crash_t.hpp │ │ │ ├── feature_traits_feature_automatic_sign_on_lock_setting_t.hpp │ │ │ ├── feature_traits_feature_bind_filter_app_data_redirection_t.hpp │ │ │ ├── feature_traits_feature_bind_filter_optional_package_vfs_redirection_t.hpp │ │ │ ├── feature_traits_feature_bind_filter_single_package_vfs_redirection_t.hpp │ │ │ ├── feature_traits_feature_bing_search_lockscreen_t.hpp │ │ │ ├── feature_traits_feature_bonus_bar_service_content_t.hpp │ │ │ ├── feature_traits_feature_bonus_bar_t.hpp │ │ │ ├── feature_traits_feature_browser_apps_for_websites_t.hpp │ │ │ ├── feature_traits_feature_browser_replacement_assoc_handlers_t.hpp │ │ │ ├── feature_traits_feature_browser_replacement_t.hpp │ │ │ ├── feature_traits_feature_bsp_catalog_t.hpp │ │ │ ├── feature_traits_feature_bugcheck_on_rpcss_corruption_t.hpp │ │ │ ├── feature_traits_feature_bypass_ping_sets_for_machine_local_oids_t.hpp │ │ │ ├── feature_traits_feature_cache_high_contrast_state_in_dwm_t.hpp │ │ │ ├── feature_traits_feature_cache_spotlight_lock_screen_image_t.hpp │ │ │ ├── feature_traits_feature_centennial_ui_access_t.hpp │ │ │ ├── feature_traits_feature_clipboard_signals_for_activities_t.hpp │ │ │ ├── feature_traits_feature_colorized_bar_t.hpp │ │ │ ├── feature_traits_feature_compare_gp_wallpaper_modified_time_against_cache_t.hpp │ │ │ ├── feature_traits_feature_control_panel_telemetry_t.hpp │ │ │ ├── feature_traits_feature_converged_window_drag_t.hpp │ │ │ ├── feature_traits_feature_core_window_resize_event_desktop_t.hpp │ │ │ ├── feature_traits_feature_cred_ui_always_broker_t.hpp │ │ │ ├── feature_traits_feature_cred_ui_console_mode_t.hpp │ │ │ ├── feature_traits_feature_cred_ui_disconnect_t.hpp │ │ │ ├── feature_traits_feature_cred_ui_enable_test_hooks_development_t.hpp │ │ │ ├── feature_traits_feature_cred_ui_force_console_mode_development_t.hpp │ │ │ ├── feature_traits_feature_cred_ui_no_ui_testhook_t.hpp │ │ │ ├── feature_traits_feature_cui_popup_helper_t.hpp │ │ │ ├── feature_traits_feature_custom_actions_for_msix_t.hpp │ │ │ ├── feature_traits_feature_dcom_container_protocol_t.hpp │ │ │ ├── feature_traits_feature_default_app_updates_t.hpp │ │ │ ├── feature_traits_feature_delay_xaml_view_activity_t.hpp │ │ │ ├── feature_traits_feature_desktop_screen_clipping_t.hpp │ │ │ ├── feature_traits_feature_desktop_splash_screen_suppression_all_apps_t.hpp │ │ │ ├── feature_traits_feature_desktop_splash_screen_suppression_t.hpp │ │ │ ├── feature_traits_feature_desktop_splash_screen_suppression_when_window_exists_t.hpp │ │ │ ├── feature_traits_feature_desktop_switcher_data_model_t.hpp │ │ │ ├── feature_traits_feature_desktop_touch_improvement_default_change_t.hpp │ │ │ ├── feature_traits_feature_desktop_touch_improvement_for_tablet_posture_t.hpp │ │ │ ├── feature_traits_feature_devices_collection_t.hpp │ │ │ ├── feature_traits_feature_devices_flow_settings_device_discovery_t.hpp │ │ │ ├── feature_traits_feature_disable_tdl_caching_non_mobile_t.hpp │ │ │ ├── feature_traits_feature_dismiss_when_not_in_foreground_during_register_t.hpp │ │ │ ├── feature_traits_feature_do_not_activate_lock_app_with_screen_off_t.hpp │ │ │ ├── feature_traits_feature_docking_service_connection_manager_t.hpp │ │ │ ├── feature_traits_feature_drag_between_view_modes_t.hpp │ │ │ ├── feature_traits_feature_drag_drop_with_component_ui_t.hpp │ │ │ ├── feature_traits_feature_draggable_thumbnail_wcos_t.hpp │ │ │ ├── feature_traits_feature_dynamic_prog_id_support_t.hpp │ │ │ ├── feature_traits_feature_edge_desktop_shortcut_t.hpp │ │ │ ├── feature_traits_feature_edge_pinned_secondary_tiles_t.hpp │ │ │ ├── feature_traits_feature_edp_open_with_t.hpp │ │ │ ├── feature_traits_feature_education_cloud_default_pins_t.hpp │ │ │ ├── feature_traits_feature_enable_aam_early_return_t.hpp │ │ │ ├── feature_traits_feature_enable_acrylic_host_backdrop_win32_t.hpp │ │ │ ├── feature_traits_feature_enable_animation_designer_t.hpp │ │ │ ├── feature_traits_feature_enable_capture_picker_t.hpp │ │ │ ├── feature_traits_feature_enable_control_of_show_window_behavior_t.hpp │ │ │ ├── feature_traits_feature_enable_edge_multi_instance_t.hpp │ │ │ ├── feature_traits_feature_enable_edge_redirection_for_multi_instance_t.hpp │ │ │ ├── feature_traits_feature_enable_h2ui_versioning_t.hpp │ │ │ ├── feature_traits_feature_enable_multi_instance_t.hpp │ │ │ ├── feature_traits_feature_enable_personalization_link_t.hpp │ │ │ ├── feature_traits_feature_encode_lock_screen_to_bitmap_t.hpp │ │ │ ├── feature_traits_feature_enlightenment_dialog_for_s_mode_browser_t.hpp │ │ │ ├── feature_traits_feature_expand_reparse_points_t.hpp │ │ │ ├── feature_traits_feature_explorer_usage_tracking_t.hpp │ │ │ ├── feature_traits_feature_face_client_enrollment_experience_t.hpp │ │ │ ├── feature_traits_feature_fail_fast_for_handler_intialization_failure_t.hpp │ │ │ ├── feature_traits_feature_fail_fast_on_incorrect_service_ref_counting_t.hpp │ │ │ ├── feature_traits_feature_fail_fast_on_wrong_thread_context_t.hpp │ │ │ ├── feature_traits_feature_failfast_on_hstring_overrelease_t.hpp │ │ │ ├── feature_traits_feature_fake_cross_container_caller_identity_t.hpp │ │ │ ├── feature_traits_feature_fido_logon_without_device_auth_t.hpp │ │ │ ├── feature_traits_feature_find_my_pen_t.hpp │ │ │ ├── feature_traits_feature_force_update_from_any_version_t.hpp │ │ │ ├── feature_traits_feature_full_screen_animation_t.hpp │ │ │ ├── feature_traits_feature_full_screen_lightweight_default_t.hpp │ │ │ ├── feature_traits_feature_handwriting_panel_settings_t.hpp │ │ │ ├── feature_traits_feature_hello_settings_improvements_t.hpp │ │ │ ├── feature_traits_feature_hide_day_view_in_timeline_t.hpp │ │ │ ├── feature_traits_feature_hide_uwp_edge_from_app_list_if_win32_edge_present_t.hpp │ │ │ ├── feature_traits_feature_host_ail_positioner_in_rdp_init_t.hpp │ │ │ ├── feature_traits_feature_hub_20h2_is_network_metered_crash_t.hpp │ │ │ ├── feature_traits_feature_hub_20h2_narratorbug_t.hpp │ │ │ ├── feature_traits_feature_hub_20h2_qoscsp_t.hpp │ │ │ ├── feature_traits_feature_hub_20h2_read_only_license_terms_t.hpp │ │ │ ├── feature_traits_feature_hub_20h2_shell_crash_t.hpp │ │ │ ├── feature_traits_feature_hub_20h2_spartan_t.hpp │ │ │ ├── feature_traits_feature_hub_20h2_volume_half_cut_t.hpp │ │ │ ├── feature_traits_feature_hub_20h2_wldp_t.hpp │ │ │ ├── feature_traits_feature_in_market_app_defaults_t.hpp │ │ │ ├── feature_traits_feature_in_place_update_for_medium_packages_t.hpp │ │ │ ├── feature_traits_feature_in_place_update_for_small_packages_t.hpp │ │ │ ├── feature_traits_feature_in_place_update_t.hpp │ │ │ ├── feature_traits_feature_include_wab_os_app_t.hpp │ │ │ ├── feature_traits_feature_include_wab_system_app_t.hpp │ │ │ ├── feature_traits_feature_initialize_start_layout_from_logon_framework_t.hpp │ │ │ ├── feature_traits_feature_integrate_whiteboard_app_t.hpp │ │ │ ├── feature_traits_feature_invoke_ui_updates_via_try_run_async_t.hpp │ │ │ ├── feature_traits_feature_jump_list_optimize_auto_dest_list_read_writes_t.hpp │ │ │ ├── feature_traits_feature_launch_anaheim_download_page_at_login_for_anaheim_insiders_t.hpp │ │ │ ├── feature_traits_feature_launch_anaheim_download_page_at_login_for_non_anaheim_insiders_t.hpp │ │ │ ├── feature_traits_feature_lazy_apply_window_group_template_t.hpp │ │ │ ├── feature_traits_feature_limited_access_features_t.hpp │ │ │ ├── feature_traits_feature_live_preview_for_tabs_t.hpp │ │ │ ├── feature_traits_feature_local_users_and_groups_t.hpp │ │ │ ├── feature_traits_feature_lock_app_test_hooks_show_watermark_development_t.hpp │ │ │ ├── feature_traits_feature_lock_bug_fix_non_accent_backstop_color_t.hpp │ │ │ ├── feature_traits_feature_lock_bug_fix_test_hooks_break_on_cache_folder_deletion_t.hpp │ │ │ ├── feature_traits_feature_lock_exp_mgr_app_hosting_model_t.hpp │ │ │ ├── feature_traits_feature_lock_exp_mgr_assigned_access_t.hpp │ │ │ ├── feature_traits_feature_lock_exp_mgr_test_hooks_allow_occlusions_on_desktop_development_t.hpp │ │ │ ├── feature_traits_feature_lock_reliability_freeze_message_pump_upon_display_off_t.hpp │ │ │ ├── feature_traits_feature_lock_reliability_long_live_lock_app_t.hpp │ │ │ ├── feature_traits_feature_lock_reliability_pdc_activator_t.hpp │ │ │ ├── feature_traits_feature_lock_reliability_performance_boost_t.hpp │ │ │ ├── feature_traits_feature_lock_reliability_pre_launch_long_live_lock_app_t.hpp │ │ │ ├── feature_traits_feature_lock_reliability_process_on_unlocking_async_t.hpp │ │ │ ├── feature_traits_feature_lock_reliability_synchronize_shutdown_with_broker_endpoint_calls_t.hpp │ │ │ ├── feature_traits_feature_lock_reliability_unlock_if_lock_app_didnt_show_t.hpp │ │ │ ├── feature_traits_feature_lock_reliability_wake_frame_thread_on_application_state_changes_t.hpp │ │ │ ├── feature_traits_feature_log_tdl_t.hpp │ │ │ ├── feature_traits_feature_logon_ui_break_on_start_development_t.hpp │ │ │ ├── feature_traits_feature_logon_ui_enable_test_hooks_development_t.hpp │ │ │ ├── feature_traits_feature_logon_ui_force_console_mode_development_t.hpp │ │ │ ├── feature_traits_feature_low_conf_pwilo_soft_landing_t.hpp │ │ │ ├── feature_traits_feature_low_priority_vail_prelaunch_t.hpp │ │ │ ├── feature_traits_feature_make_powershell_the_default_console_t.hpp │ │ │ ├── feature_traits_feature_marshal_by_value_t.hpp │ │ │ ├── feature_traits_feature_marshal_restricted_error_from_rpcss_t.hpp │ │ │ ├── feature_traits_feature_material_properties_api_t.hpp │ │ │ ├── feature_traits_feature_media_controls_on_lock_t.hpp │ │ │ ├── feature_traits_feature_meet_now_selfhost_t.hpp │ │ │ ├── feature_traits_feature_meet_now_t.hpp │ │ │ ├── feature_traits_feature_migrate_app_defaults_t.hpp │ │ │ ├── feature_traits_feature_modal_window_helper_cui_host_lookup_t.hpp │ │ │ ├── feature_traits_feature_msix_app_compat_support_t.hpp │ │ │ ├── feature_traits_feature_msix_flexible_containers_t.hpp │ │ │ ├── feature_traits_feature_msrc46479_18517844_t.hpp │ │ │ ├── feature_traits_feature_msrc46856_19163095_t.hpp │ │ │ ├── feature_traits_feature_msrc46856_19616319_t.hpp │ │ │ ├── feature_traits_feature_msrc46866_19016884_t.hpp │ │ │ ├── feature_traits_feature_msrc47459_18671508_t.hpp │ │ │ ├── feature_traits_feature_msrc47461_18851231_t.hpp │ │ │ ├── feature_traits_feature_msrc47497_19067730_t.hpp │ │ │ ├── feature_traits_feature_msrc47720_19049162_t.hpp │ │ │ ├── feature_traits_feature_msrc48103_19356432_t.hpp │ │ │ ├── feature_traits_feature_msrc48328_19499934_t.hpp │ │ │ ├── feature_traits_feature_msrc48868_19908122_t.hpp │ │ │ ├── feature_traits_feature_msrc48931_19733394_t.hpp │ │ │ ├── feature_traits_feature_msrc49018_19944898_t.hpp │ │ │ ├── feature_traits_feature_msrc49392_20066163_t.hpp │ │ │ ├── feature_traits_feature_msrc49488_20106387_t.hpp │ │ │ ├── feature_traits_feature_msrc49489_20107494_t.hpp │ │ │ ├── feature_traits_feature_msrc49492_20108028_t.hpp │ │ │ ├── feature_traits_feature_msrc49661_20224862_t.hpp │ │ │ ├── feature_traits_feature_msrc49890_20309196_t.hpp │ │ │ ├── feature_traits_feature_msrc49893_20309898_t.hpp │ │ │ ├── feature_traits_feature_msrc49894_20310019_t.hpp │ │ │ ├── feature_traits_feature_msrc49895_20310073_t.hpp │ │ │ ├── feature_traits_feature_msrc49896_20310121_t.hpp │ │ │ ├── feature_traits_feature_msrc49897_20310146_t.hpp │ │ │ ├── feature_traits_feature_msrc49908_20311175_t.hpp │ │ │ ├── feature_traits_feature_msrc49933_20369702_t.hpp │ │ │ ├── feature_traits_feature_msrc49960_20370815_t.hpp │ │ │ ├── feature_traits_feature_msrc49988_20387640_t.hpp │ │ │ ├── feature_traits_feature_msrc50126_20461088_t.hpp │ │ │ ├── feature_traits_feature_msrc50819_21542341_t.hpp │ │ │ ├── feature_traits_feature_msrc50851_20873218_t.hpp │ │ │ ├── feature_traits_feature_msrc50960_20920684_t.hpp │ │ │ ├── feature_traits_feature_msrc50979_21537952_t.hpp │ │ │ ├── feature_traits_feature_msrc51181_21045850_t.hpp │ │ │ ├── feature_traits_feature_msrc51205_21058145_t.hpp │ │ │ ├── feature_traits_feature_msrc51459_21226085_t.hpp │ │ │ ├── feature_traits_feature_msrc51569_21326875_t.hpp │ │ │ ├── feature_traits_feature_msrc51700_21409766_t.hpp │ │ │ ├── feature_traits_feature_msrc51764_21458820_t.hpp │ │ │ ├── feature_traits_feature_msrc51792_21506819_t.hpp │ │ │ ├── feature_traits_feature_msrc52101_21708469_t.hpp │ │ │ ├── feature_traits_feature_msrc52192_21842263_t.hpp │ │ │ ├── feature_traits_feature_msrc52365_21395503_t.hpp │ │ │ ├── feature_traits_feature_msrc52443_22097612_t.hpp │ │ │ ├── feature_traits_feature_msrc52712_22363214_t.hpp │ │ │ ├── feature_traits_feature_msrc52839_22488156_t.hpp │ │ │ ├── feature_traits_feature_msrc53128_23296237_t.hpp │ │ │ ├── feature_traits_feature_msrc53249_23061662_t.hpp │ │ │ ├── feature_traits_feature_msrc53287_23088721_t.hpp │ │ │ ├── feature_traits_feature_msrc53758_23340265_t.hpp │ │ │ ├── feature_traits_feature_msrc53969_23896785_t.hpp │ │ │ ├── feature_traits_feature_msrc54524_23792275_t.hpp │ │ │ ├── feature_traits_feature_msrc54554_23810758_t.hpp │ │ │ ├── feature_traits_feature_msrc54581_23775006_t.hpp │ │ │ ├── feature_traits_feature_msrc54643_23866277_t.hpp │ │ │ ├── feature_traits_feature_msrc54733_23928498_t.hpp │ │ │ ├── feature_traits_feature_msrc54976_24089711_t.hpp │ │ │ ├── feature_traits_feature_msrc54977_24089739_t.hpp │ │ │ ├── feature_traits_feature_msrc55118_24188022_t.hpp │ │ │ ├── feature_traits_feature_msrc55193_24242481_t.hpp │ │ │ ├── feature_traits_feature_msrc55531_25276811_t.hpp │ │ │ ├── feature_traits_feature_msrc55536_24446153_t.hpp │ │ │ ├── feature_traits_feature_msrc55574_24462219_t.hpp │ │ │ ├── feature_traits_feature_msrc55610_24475151_t.hpp │ │ │ ├── feature_traits_feature_msrc55635_24819047_t.hpp │ │ │ ├── feature_traits_feature_msrc55643_24485507_t.hpp │ │ │ ├── feature_traits_feature_msrc55644_24486065_t.hpp │ │ │ ├── feature_traits_feature_msrc55823_24581832_t.hpp │ │ │ ├── feature_traits_feature_msrc55840_24587418_t.hpp │ │ │ ├── feature_traits_feature_msrc55930_24596121_t.hpp │ │ │ ├── feature_traits_feature_msrc55942_25772602_t.hpp │ │ │ ├── feature_traits_feature_msrc56121_24672827_t.hpp │ │ │ ├── feature_traits_feature_msrc56125_24673962_t.hpp │ │ │ ├── feature_traits_feature_msrc56147_24705114_t.hpp │ │ │ ├── feature_traits_feature_msrc56207_24743076_t.hpp │ │ │ ├── feature_traits_feature_msrc56288_24805201_t.hpp │ │ │ ├── feature_traits_feature_msrc56454_24922760_t.hpp │ │ │ ├── feature_traits_feature_msrc56582_25185823_t.hpp │ │ │ ├── feature_traits_feature_msrc56583_25185841_t.hpp │ │ │ ├── feature_traits_feature_msrc56623_25201347_t.hpp │ │ │ ├── feature_traits_feature_msrc56839_25338013_t.hpp │ │ │ ├── feature_traits_feature_msrc56874_25360497_t.hpp │ │ │ ├── feature_traits_feature_msrc56881_25370303_t.hpp │ │ │ ├── feature_traits_feature_msrc56896_26193673_t.hpp │ │ │ ├── feature_traits_feature_msrc56933_26340645_t.hpp │ │ │ ├── feature_traits_feature_msrc56951_26340639_t.hpp │ │ │ ├── feature_traits_feature_msrc57031_25504921_t.hpp │ │ │ ├── feature_traits_feature_msrc57037_25504960_t.hpp │ │ │ ├── feature_traits_feature_msrc57038_25504556_t.hpp │ │ │ ├── feature_traits_feature_msrc57039_25504538_t.hpp │ │ │ ├── feature_traits_feature_msrc57045_25504571_t.hpp │ │ │ ├── feature_traits_feature_msrc57056_25504694_t.hpp │ │ │ ├── feature_traits_feature_msrc57105_25509444_t.hpp │ │ │ ├── feature_traits_feature_msrc57129_25520433_t.hpp │ │ │ ├── feature_traits_feature_msrc57141_25523403_t.hpp │ │ │ ├── feature_traits_feature_msrc57294_25622863_t.hpp │ │ │ ├── feature_traits_feature_msrc57333_25652608_t.hpp │ │ │ ├── feature_traits_feature_msrc57358_25674532_t.hpp │ │ │ ├── feature_traits_feature_msrc57360_25674670_t.hpp │ │ │ ├── feature_traits_feature_msrc57429_25692297_t.hpp │ │ │ ├── feature_traits_feature_msrc57498_25723431_t.hpp │ │ │ ├── feature_traits_feature_msrc57503_25726631_t.hpp │ │ │ ├── feature_traits_feature_msrc57524_25743201_t.hpp │ │ │ ├── feature_traits_feature_msrc57568_25783926_t.hpp │ │ │ ├── feature_traits_feature_msrc57570_25798721_t.hpp │ │ │ ├── feature_traits_feature_msrc57585_25806212_t.hpp │ │ │ ├── feature_traits_feature_msrc57671_25839967_t.hpp │ │ │ ├── feature_traits_feature_msrc57681_25840971_t.hpp │ │ │ ├── feature_traits_feature_msrc57712_27682885_t.hpp │ │ │ ├── feature_traits_feature_msrc57739_25880205_t.hpp │ │ │ ├── feature_traits_feature_msrc57795_25894289_t.hpp │ │ │ ├── feature_traits_feature_msrc57892_25937517_t.hpp │ │ │ ├── feature_traits_feature_msrc57968_26505869_t.hpp │ │ │ ├── feature_traits_feature_msrc58111_26091697_t.hpp │ │ │ ├── feature_traits_feature_msrc58188_26105299_t.hpp │ │ │ ├── feature_traits_feature_msrc58278_26164425_t.hpp │ │ │ ├── feature_traits_feature_msrc58295_26172760_t.hpp │ │ │ ├── feature_traits_feature_msrc58296_26173880_t.hpp │ │ │ ├── feature_traits_feature_msrc58584_26503263_t.hpp │ │ │ ├── feature_traits_feature_msrc58622_26366617_t.hpp │ │ │ ├── feature_traits_feature_msrc58631_26367419_t.hpp │ │ │ ├── feature_traits_feature_msrc58872_26503340_t.hpp │ │ │ ├── feature_traits_feature_msrc58999_26599509_t.hpp │ │ │ ├── feature_traits_feature_msrc59025_26620618_t.hpp │ │ │ ├── feature_traits_feature_msrc59101_26702985_t.hpp │ │ │ ├── feature_traits_feature_msrc59279_26844027_t.hpp │ │ │ ├── feature_traits_feature_msrc59313_26884496_t.hpp │ │ │ ├── feature_traits_feature_msrc59348_26932890_t.hpp │ │ │ ├── feature_traits_feature_msrc59479_27075268_t.hpp │ │ │ ├── feature_traits_feature_msrc59496_27094934_t.hpp │ │ │ ├── feature_traits_feature_msrc59635_27285389_t.hpp │ │ │ ├── feature_traits_feature_msrc59684_27301574_t.hpp │ │ │ ├── feature_traits_feature_msrc59810_27476162_t.hpp │ │ │ ├── feature_traits_feature_msrc59898_27565828_t.hpp │ │ │ ├── feature_traits_feature_msrc59924_27617310_t.hpp │ │ │ ├── feature_traits_feature_msrc59936_31011409_t.hpp │ │ │ ├── feature_traits_feature_msrc59963_27690723_t.hpp │ │ │ ├── feature_traits_feature_msrc60011_27746974_t.hpp │ │ │ ├── feature_traits_feature_msrc60304_28145664_t.hpp │ │ │ ├── feature_traits_feature_msrc60304_29558828_t.hpp │ │ │ ├── feature_traits_feature_msrc60518_28390170_t.hpp │ │ │ ├── feature_traits_feature_msrc60611_28521788_t.hpp │ │ │ ├── feature_traits_feature_msrc60706_29882708_t.hpp │ │ │ ├── feature_traits_feature_msrc60880_29246065_t.hpp │ │ │ ├── feature_traits_feature_msrc60940_29882697_t.hpp │ │ │ ├── feature_traits_feature_msrc61498_29882397_t.hpp │ │ │ ├── feature_traits_feature_msrc61699_29922275_t.hpp │ │ │ ├── feature_traits_feature_msrc61710_29928883_t.hpp │ │ │ ├── feature_traits_feature_msrc61817_30012712_t.hpp │ │ │ ├── feature_traits_feature_msrc61979_30166763_t.hpp │ │ │ ├── feature_traits_feature_msrc61980_30177949_t.hpp │ │ │ ├── feature_traits_feature_msrc61991_30190627_t.hpp │ │ │ ├── feature_traits_feature_msrc62074_30377023_t.hpp │ │ │ ├── feature_traits_feature_msrc62103_30555260_t.hpp │ │ │ ├── feature_traits_feature_msrc62154_30735374_t.hpp │ │ │ ├── feature_traits_feature_msrc62188_30784573_t.hpp │ │ │ ├── feature_traits_feature_msrc62190_30829971_t.hpp │ │ │ ├── feature_traits_feature_msrc62306_30898517_t.hpp │ │ │ ├── feature_traits_feature_msrc62359_30915667_t.hpp │ │ │ ├── feature_traits_feature_msrc62360_30915721_t.hpp │ │ │ ├── feature_traits_feature_msrc62497_31002625_t.hpp │ │ │ ├── feature_traits_feature_msrc62504_31373709_t.hpp │ │ │ ├── feature_traits_feature_msrc62553_31027277_t.hpp │ │ │ ├── feature_traits_feature_msrc62685_27631800_t.hpp │ │ │ ├── feature_traits_feature_msrc62788_31150637_t.hpp │ │ │ ├── feature_traits_feature_msrc62828_31190098_t.hpp │ │ │ ├── feature_traits_feature_msrc62942_31254234_t.hpp │ │ │ ├── feature_traits_feature_msrc62946_31236997_t.hpp │ │ │ ├── feature_traits_feature_msrc62981_31273995_t.hpp │ │ │ ├── feature_traits_feature_msrc63042_31335087_t.hpp │ │ │ ├── feature_traits_feature_msrc63125_31367483_t.hpp │ │ │ ├── feature_traits_feature_msrc63154_31397731_t.hpp │ │ │ ├── feature_traits_feature_msrc63159_31399106_t.hpp │ │ │ ├── feature_traits_feature_msrc63245_31433215_t.hpp │ │ │ ├── feature_traits_feature_msrc63298_31464184_t.hpp │ │ │ ├── feature_traits_feature_msrc63304_31466076_t.hpp │ │ │ ├── feature_traits_feature_msrc63361_32291786_t.hpp │ │ │ ├── feature_traits_feature_msrc63368_32291794_t.hpp │ │ │ ├── feature_traits_feature_msrc63391_32291778_t.hpp │ │ │ ├── feature_traits_feature_msrc63405_31499650_t.hpp │ │ │ ├── feature_traits_feature_msrc63412_31512155_t.hpp │ │ │ ├── feature_traits_feature_msrc63447_31534097_t.hpp │ │ │ ├── feature_traits_feature_msrc63449_31534184_t.hpp │ │ │ ├── feature_traits_feature_msrc63459_31559664_t.hpp │ │ │ ├── feature_traits_feature_msrc63460_32291783_t.hpp │ │ │ ├── feature_traits_feature_msrc63567_31613541_t.hpp │ │ │ ├── feature_traits_feature_msrc63572_31624009_t.hpp │ │ │ ├── feature_traits_feature_msrc63672_31648931_t.hpp │ │ │ ├── feature_traits_feature_msrc63675_31649970_t.hpp │ │ │ ├── feature_traits_feature_msrc63676_31650030_t.hpp │ │ │ ├── feature_traits_feature_msrc63677_31650103_t.hpp │ │ │ ├── feature_traits_feature_msrc63770_31707689_t.hpp │ │ │ ├── feature_traits_feature_msrc63783_31710090_t.hpp │ │ │ ├── feature_traits_feature_msrc63821_31753551_t.hpp │ │ │ ├── feature_traits_feature_msrc63823_31753986_t.hpp │ │ │ ├── feature_traits_feature_msrc63845_31768335_t.hpp │ │ │ ├── feature_traits_feature_msrc63868_31808102_t.hpp │ │ │ ├── feature_traits_feature_msrc63913_31860193_t.hpp │ │ │ ├── feature_traits_feature_msrc64044_31934337_t.hpp │ │ │ ├── feature_traits_feature_msrc64090_31966490_t.hpp │ │ │ ├── feature_traits_feature_msrc64092_31966791_t.hpp │ │ │ ├── feature_traits_feature_msrc64186_32057820_t.hpp │ │ │ ├── feature_traits_feature_msrc64205_32072023_t.hpp │ │ │ ├── feature_traits_feature_msrc64226_32094340_t.hpp │ │ │ ├── feature_traits_feature_msrc64273_32106102_t.hpp │ │ │ ├── feature_traits_feature_msrc64287_32291720_t.hpp │ │ │ ├── feature_traits_feature_msrc64371_32291671_t.hpp │ │ │ ├── feature_traits_feature_msrc64400_32191236_t.hpp │ │ │ ├── feature_traits_feature_msrc64413_32193132_t.hpp │ │ │ ├── feature_traits_feature_msrc64435_32767078_t.hpp │ │ │ ├── feature_traits_feature_msrc64489_32237716_t.hpp │ │ │ ├── feature_traits_feature_msrc64721_32391376_t.hpp │ │ │ ├── feature_traits_feature_msrc64746_32425728_t.hpp │ │ │ ├── feature_traits_feature_msrc64834_32474822_t.hpp │ │ │ ├── feature_traits_feature_msrc64842_32484196_t.hpp │ │ │ ├── feature_traits_feature_msrc64898_32537371_t.hpp │ │ │ ├── feature_traits_feature_msrc64899_32537439_t.hpp │ │ │ ├── feature_traits_feature_msrc64960_32657825_t.hpp │ │ │ ├── feature_traits_feature_msrc65305_33279484_t.hpp │ │ │ ├── feature_traits_feature_msrc65306_33279547_t.hpp │ │ │ ├── feature_traits_feature_my_people_deprecation_tip_t.hpp │ │ │ ├── feature_traits_feature_normalize_titlebar_height_t.hpp │ │ │ ├── feature_traits_feature_ntp_soft_landing_t.hpp │ │ │ ├── feature_traits_feature_oem_website_pinning_t.hpp │ │ │ ├── feature_traits_feature_offline_capable_start_menu_migration_plugin_t.hpp │ │ │ ├── feature_traits_feature_offline_capable_user_assoc_migration_plugin_t.hpp │ │ │ ├── feature_traits_feature_offline_capable_user_lock_screen_settings_migration_plugin_t.hpp │ │ │ ├── feature_traits_feature_one_line_clock_t.hpp │ │ │ ├── feature_traits_feature_oobe_esim_bootstrap_t.hpp │ │ │ ├── feature_traits_feature_optional_packages_merged_view_and_file_override_t.hpp │ │ │ ├── feature_traits_feature_package_status_in_state_repository_t.hpp │ │ │ ├── feature_traits_feature_packaged_services_t.hpp │ │ │ ├── feature_traits_feature_pen_settings_font_switcher_t.hpp │ │ │ ├── feature_traits_feature_pen_settings_pen_pressure_t.hpp │ │ │ ├── feature_traits_feature_pen_settings_selective_display_t.hpp │ │ │ ├── feature_traits_feature_people_app_upsell_t.hpp │ │ │ ├── feature_traits_feature_people_bar_capacity_setting_t.hpp │ │ │ ├── feature_traits_feature_people_bar_t.hpp │ │ │ ├── feature_traits_feature_people_in_share_api_t.hpp │ │ │ ├── feature_traits_feature_people_in_share_ui_t.hpp │ │ │ ├── feature_traits_feature_people_toast_notifications_t.hpp │ │ │ ├── feature_traits_feature_per_app_runtime_broker_bno_isolation_t.hpp │ │ │ ├── feature_traits_feature_per_app_runtime_broker_t.hpp │ │ │ ├── feature_traits_feature_personalization_color_chooser_t.hpp │ │ │ ├── feature_traits_feature_personalization_recent_colors_t.hpp │ │ │ ├── feature_traits_feature_pin_migration_t.hpp │ │ │ ├── feature_traits_feature_pinned_websites_grouping_t.hpp │ │ │ ├── feature_traits_feature_pre_release_backstop_and_suspension_curtain_t.hpp │ │ │ ├── feature_traits_feature_prelaunch_edge_logon_t.hpp │ │ │ ├── feature_traits_feature_prelaunch_edge_on_frame_exit_t.hpp │ │ │ ├── feature_traits_feature_presentation_state_bug_fix_t.hpp │ │ │ ├── feature_traits_feature_prevent_sua_launch_as_dsma_t.hpp │ │ │ ├── feature_traits_feature_public_api_wam_package_find_related_packages_t.hpp │ │ │ ├── feature_traits_feature_publish_activity_annotations_t.hpp │ │ │ ├── feature_traits_feature_publish_file_activities_for_unassociated_views_t.hpp │ │ │ ├── feature_traits_feature_redirect_browser_activations_t.hpp │ │ │ ├── feature_traits_feature_redirect_system_control_panel_t.hpp │ │ │ ├── feature_traits_feature_refresh_rate_setting_t.hpp │ │ │ ├── feature_traits_feature_register_inbox_apps_to_dsma_only_t.hpp │ │ │ ├── feature_traits_feature_remote_app_lifetime_manager_over_tcp_t.hpp │ │ │ ├── feature_traits_feature_remote_app_lifetime_manager_t.hpp │ │ │ ├── feature_traits_feature_remove_sihost_dependency_from_appxsvc_t.hpp │ │ │ ├── feature_traits_feature_replace_extension_catalog_calls_for_activation_manager_shim_t.hpp │ │ │ ├── feature_traits_feature_replace_legacy_browser_for_group_policy_and_oem_taskbar_layouts_t.hpp │ │ │ ├── feature_traits_feature_report_activation_token_info_for_package_t.hpp │ │ │ ├── feature_traits_feature_report_edge_activation_failure_t.hpp │ │ │ ├── feature_traits_feature_report_on_rpcss_corruption_t.hpp │ │ │ ├── feature_traits_feature_report_open_classes_root_failure_t.hpp │ │ │ ├── feature_traits_feature_report_unhealthy_process_from_rpcss_t.hpp │ │ │ ├── feature_traits_feature_resize_shell_experience_views_t.hpp │ │ │ ├── feature_traits_feature_respect_edge_allow_full_screen_policy_t.hpp │ │ │ ├── feature_traits_feature_retain_files_on_failure_t.hpp │ │ │ ├── feature_traits_feature_rule_based_npsm_current_session_t.hpp │ │ │ ├── feature_traits_feature_screen_clipping_undocked_wcos_t.hpp │ │ │ ├── feature_traits_feature_screen_sketch_app_t.hpp │ │ │ ├── feature_traits_feature_servicing_10c_28549972_t.hpp │ │ │ ├── feature_traits_feature_servicing_2006b_26292850_t.hpp │ │ │ ├── feature_traits_feature_servicing_2006b_26399553_t.hpp │ │ │ ├── feature_traits_feature_servicing_2007b_24509429_t.hpp │ │ │ ├── feature_traits_feature_servicing_2007c_25418039_t.hpp │ │ │ ├── feature_traits_feature_servicing_2007c_26480804_t.hpp │ │ │ ├── feature_traits_feature_servicing_2007c_27053022_t.hpp │ │ │ ├── feature_traits_feature_servicing_2007d_24673304_t.hpp │ │ │ ├── feature_traits_feature_servicing_2007d_25499117_t.hpp │ │ │ ├── feature_traits_feature_servicing_2007d_25601129_t.hpp │ │ │ ├── feature_traits_feature_servicing_2007d_25707525_t.hpp │ │ │ ├── feature_traits_feature_servicing_2007d_26091806_t.hpp │ │ │ ├── feature_traits_feature_servicing_2007d_26627875_t.hpp │ │ │ ├── feature_traits_feature_servicing_2007d_26885088_t.hpp │ │ │ ├── feature_traits_feature_servicing_2007d_26973206_t.hpp │ │ │ ├── feature_traits_feature_servicing_2007d_26981521_t.hpp │ │ │ ├── feature_traits_feature_servicing_2007d_27095391_t.hpp │ │ │ ├── feature_traits_feature_servicing_2007d_27100122_t.hpp │ │ │ ├── feature_traits_feature_servicing_2007d_27131337_t.hpp │ │ │ ├── feature_traits_feature_servicing_2007d_27228638_t.hpp │ │ │ ├── feature_traits_feature_servicing_2007d_27280669_t.hpp │ │ │ ├── feature_traits_feature_servicing_2008b_27466852_t.hpp │ │ │ ├── feature_traits_feature_servicing_2008c_24544826_t.hpp │ │ │ ├── feature_traits_feature_servicing_2008c_25183882_t.hpp │ │ │ ├── feature_traits_feature_servicing_2008c_25325767_t.hpp │ │ │ ├── feature_traits_feature_servicing_2008c_25707347_t.hpp │ │ │ ├── feature_traits_feature_servicing_2008c_26112712_t.hpp │ │ │ ├── feature_traits_feature_servicing_2008c_26153275_t.hpp │ │ │ ├── feature_traits_feature_servicing_2008c_26401031_t.hpp │ │ │ ├── feature_traits_feature_servicing_2008c_26585919_t.hpp │ │ │ ├── feature_traits_feature_servicing_2008c_26746512_t.hpp │ │ │ ├── feature_traits_feature_servicing_2008c_26789491_t.hpp │ │ │ ├── feature_traits_feature_servicing_2008c_26839105_t.hpp │ │ │ ├── feature_traits_feature_servicing_2008c_26862169_t.hpp │ │ │ ├── feature_traits_feature_servicing_2008c_26880253_t.hpp │ │ │ ├── feature_traits_feature_servicing_2008c_26911408_t.hpp │ │ │ ├── feature_traits_feature_servicing_2008c_26912166_t.hpp │ │ │ ├── feature_traits_feature_servicing_2008c_26981749_t.hpp │ │ │ ├── feature_traits_feature_servicing_2008c_26982438_t.hpp │ │ │ ├── feature_traits_feature_servicing_2008c_26982690_t.hpp │ │ │ ├── feature_traits_feature_servicing_2008c_26993752_t.hpp │ │ │ ├── feature_traits_feature_servicing_2008c_27123603_t.hpp │ │ │ ├── feature_traits_feature_servicing_2008c_27124746_t.hpp │ │ │ ├── feature_traits_feature_servicing_2008c_27479387_t.hpp │ │ │ ├── feature_traits_feature_servicing_2008c_27803265_t.hpp │ │ │ ├── feature_traits_feature_servicing_2009_28245072_t.hpp │ │ │ ├── feature_traits_feature_servicing_2009c_25480680_t.hpp │ │ │ ├── feature_traits_feature_servicing_2009c_25973568_t.hpp │ │ │ ├── feature_traits_feature_servicing_2009c_26745760_t.hpp │ │ │ ├── feature_traits_feature_servicing_2009c_26767998_t.hpp │ │ │ ├── feature_traits_feature_servicing_2009c_26872796_t.hpp │ │ │ ├── feature_traits_feature_servicing_2009c_27149261_t.hpp │ │ │ ├── feature_traits_feature_servicing_2009c_27176428_t.hpp │ │ │ ├── feature_traits_feature_servicing_2009c_27233040_t.hpp │ │ │ ├── feature_traits_feature_servicing_2009c_27260256_t.hpp │ │ │ ├── feature_traits_feature_servicing_2009c_27276848_t.hpp │ │ │ ├── feature_traits_feature_servicing_2009c_27413242_t.hpp │ │ │ ├── feature_traits_feature_servicing_2009c_27573577_t.hpp │ │ │ ├── feature_traits_feature_servicing_2009c_27573616_t.hpp │ │ │ ├── feature_traits_feature_servicing_2009c_27603991_t.hpp │ │ │ ├── feature_traits_feature_servicing_2009c_27632437_t.hpp │ │ │ ├── feature_traits_feature_servicing_2009c_27855474_t.hpp │ │ │ ├── feature_traits_feature_servicing_2009c_28156653_t.hpp │ │ │ ├── feature_traits_feature_servicing_2009c_28242502_t.hpp │ │ │ ├── feature_traits_feature_servicing_2009c_28494401_t.hpp │ │ │ ├── feature_traits_feature_servicing_2009c_show_toast_27992588_t.hpp │ │ │ ├── feature_traits_feature_servicing_2009c_taskbar_reconnect_miracast_27629181_t.hpp │ │ │ ├── feature_traits_feature_servicing_2010_26863342_t.hpp │ │ │ ├── feature_traits_feature_servicing_2010_27686266_t.hpp │ │ │ ├── feature_traits_feature_servicing_2010c_27745138_t.hpp │ │ │ ├── feature_traits_feature_servicing_2010c_27857867_t.hpp │ │ │ ├── feature_traits_feature_servicing_2010c_28235466_t.hpp │ │ │ ├── feature_traits_feature_servicing_2010c_28720897_t.hpp │ │ │ ├── feature_traits_feature_servicing_2010c_28816204_t.hpp │ │ │ ├── feature_traits_feature_servicing_2010c_28818989_t.hpp │ │ │ ├── feature_traits_feature_servicing_2010c_28824955_t.hpp │ │ │ ├── feature_traits_feature_servicing_2010c_28995146_t.hpp │ │ │ ├── feature_traits_feature_servicing_2011c_24672871_t.hpp │ │ │ ├── feature_traits_feature_servicing_2011c_27393699_t.hpp │ │ │ ├── feature_traits_feature_servicing_2011c_27478921_t.hpp │ │ │ ├── feature_traits_feature_servicing_2011c_28083526_t.hpp │ │ │ ├── feature_traits_feature_servicing_2011c_28361144_t.hpp │ │ │ ├── feature_traits_feature_servicing_2011c_28440313_t.hpp │ │ │ ├── feature_traits_feature_servicing_2011c_28541683_t.hpp │ │ │ ├── feature_traits_feature_servicing_2011c_28600964_t.hpp │ │ │ ├── feature_traits_feature_servicing_2011c_28983507_t.hpp │ │ │ ├── feature_traits_feature_servicing_2011c_28994550_t.hpp │ │ │ ├── feature_traits_feature_servicing_2011c_28998341_t.hpp │ │ │ ├── feature_traits_feature_servicing_2011c_29018266_t.hpp │ │ │ ├── feature_traits_feature_servicing_2011c_29138853_t.hpp │ │ │ ├── feature_traits_feature_servicing_2011c_29141238_t.hpp │ │ │ ├── feature_traits_feature_servicing_2011c_29173382_t.hpp │ │ │ ├── feature_traits_feature_servicing_2011c_29178229_t.hpp │ │ │ ├── feature_traits_feature_servicing_2011c_29207002_t.hpp │ │ │ ├── feature_traits_feature_servicing_2011c_29233030_t.hpp │ │ │ ├── feature_traits_feature_servicing_2011c_29269678_t.hpp │ │ │ ├── feature_traits_feature_servicing_2011c_29270241_t.hpp │ │ │ ├── feature_traits_feature_servicing_2011c_29325158_t.hpp │ │ │ ├── feature_traits_feature_servicing_2011c_29384251_t.hpp │ │ │ ├── feature_traits_feature_servicing_2011c_29406049_t.hpp │ │ │ ├── feature_traits_feature_servicing_2011c_29414243_t.hpp │ │ │ ├── feature_traits_feature_servicing_2011c_29419809_t.hpp │ │ │ ├── feature_traits_feature_servicing_2011c_29420162_t.hpp │ │ │ ├── feature_traits_feature_servicing_2011c_29420656_t.hpp │ │ │ ├── feature_traits_feature_servicing_2011c_29460857_t.hpp │ │ │ ├── feature_traits_feature_servicing_2011c_29485700_t.hpp │ │ │ ├── feature_traits_feature_servicing_2011c_29517737_t.hpp │ │ │ ├── feature_traits_feature_servicing_2011c_29519204_t.hpp │ │ │ ├── feature_traits_feature_servicing_2011c_29519738_t.hpp │ │ │ ├── feature_traits_feature_servicing_2011c_29520021_t.hpp │ │ │ ├── feature_traits_feature_servicing_2011c_29520334_t.hpp │ │ │ ├── feature_traits_feature_servicing_2011c_29530993_t.hpp │ │ │ ├── feature_traits_feature_servicing_2011c_29534914_t.hpp │ │ │ ├── feature_traits_feature_servicing_2011c_29540225_t.hpp │ │ │ ├── feature_traits_feature_servicing_2011c_29540227_t.hpp │ │ │ ├── feature_traits_feature_servicing_2011c_29582939_t.hpp │ │ │ ├── feature_traits_feature_servicing_2011c_29609593_t.hpp │ │ │ ├── feature_traits_feature_servicing_2011c_29662958_t.hpp │ │ │ ├── feature_traits_feature_servicing_2011c_29718289_t.hpp │ │ │ ├── feature_traits_feature_servicing_2011c_29733956_t.hpp │ │ │ ├── feature_traits_feature_servicing_2011c_30015451_t.hpp │ │ │ ├── feature_traits_feature_servicing_24538350_t.hpp │ │ │ ├── feature_traits_feature_servicing_24643166_t.hpp │ │ │ ├── feature_traits_feature_servicing_24759293_t.hpp │ │ │ ├── feature_traits_feature_servicing_24866243_t.hpp │ │ │ ├── feature_traits_feature_servicing_24897144_t.hpp │ │ │ ├── feature_traits_feature_servicing_25285524_t.hpp │ │ │ ├── feature_traits_feature_servicing_25376915_t.hpp │ │ │ ├── feature_traits_feature_servicing_25636255_t.hpp │ │ │ ├── feature_traits_feature_servicing_25875560_t.hpp │ │ │ ├── feature_traits_feature_servicing_25964644_t.hpp │ │ │ ├── feature_traits_feature_servicing_26153854_t.hpp │ │ │ ├── feature_traits_feature_servicing_26911075_t.hpp │ │ │ ├── feature_traits_feature_servicing_26990012_t.hpp │ │ │ ├── feature_traits_feature_servicing_26992094_t.hpp │ │ │ ├── feature_traits_feature_servicing_26992112_t.hpp │ │ │ ├── feature_traits_feature_servicing_26992143_t.hpp │ │ │ ├── feature_traits_feature_servicing_27149189_t.hpp │ │ │ ├── feature_traits_feature_servicing_27812206_t.hpp │ │ │ ├── feature_traits_feature_servicing_27919905_t.hpp │ │ │ ├── feature_traits_feature_servicing_28605910_t.hpp │ │ │ ├── feature_traits_feature_servicing_28950903_t.hpp │ │ │ ├── feature_traits_feature_servicing_29028492_t.hpp │ │ │ ├── feature_traits_feature_servicing_29648847_t.hpp │ │ │ ├── feature_traits_feature_servicing_64bit_pointer_27512546_t.hpp │ │ │ ├── feature_traits_feature_servicing_aar_directpolicychecks_25897691_t.hpp │ │ │ ├── feature_traits_feature_servicing_access_violation_get_shell_item_based_on_selection_model_25616463_t.hpp │ │ │ ├── feature_traits_feature_servicing_account_lookup_sid_29045821_t.hpp │ │ │ ├── feature_traits_feature_servicing_add_new_browser_prog_id_28240485_t.hpp │ │ │ ├── feature_traits_feature_servicing_add_on_licensing_fix_25433561_t.hpp │ │ │ ├── feature_traits_feature_servicing_ap_check_cache_fix_29676332_t.hpp │ │ │ ├── feature_traits_feature_servicing_app_defaults_set_new_edge_as_default_24777502_t.hpp │ │ │ ├── feature_traits_feature_servicing_async_op_file_start_experience_get_user_file_27626539_t.hpp │ │ │ ├── feature_traits_feature_servicing_aumid_23044754_t.hpp │ │ │ ├── feature_traits_feature_servicing_aumid_27673644_t.hpp │ │ │ ├── feature_traits_feature_servicing_auto_vpn_stuck_24877599_t.hpp │ │ │ ├── feature_traits_feature_servicing_avoid_lock5min_29816592_t.hpp │ │ │ ├── feature_traits_feature_servicing_avoid_timer_callback_after_destroy_25476716_t.hpp │ │ │ ├── feature_traits_feature_servicing_bopomofo_ctrl_key_fix_29666008_t.hpp │ │ │ ├── feature_traits_feature_servicing_bt_file_transfer_29552887_t.hpp │ │ │ ├── feature_traits_feature_servicing_bt_pair_midi_device_29172569_t.hpp │ │ │ ├── feature_traits_feature_servicing_catalogupdatesapply_28245933_t.hpp │ │ │ ├── feature_traits_feature_servicing_cbdh_svc_25914270_t.hpp │ │ │ ├── feature_traits_feature_servicing_check_telemetry_permission_before_using_one_settings_26368025_t.hpp │ │ │ ├── feature_traits_feature_servicing_chrome_sso_29733738_t.hpp │ │ │ ├── feature_traits_feature_servicing_chs_ime_candidate_window_disappear_28592341_t.hpp │ │ │ ├── feature_traits_feature_servicing_cht_shift_key_up_fix_28221429_t.hpp │ │ │ ├── feature_traits_feature_servicing_clean_exit_font_drv_host_27512486_t.hpp │ │ │ ├── feature_traits_feature_servicing_cleanup_profiles_2009c_27856555_t.hpp │ │ │ ├── feature_traits_feature_servicing_clear_kana_key_state_on_focus_out_29713000_t.hpp │ │ │ ├── feature_traits_feature_servicing_container_credential_guard_28952555_t.hpp │ │ │ ├── feature_traits_feature_servicing_core_input_view_api_keyboard_invocation_29705285_t.hpp │ │ │ ├── feature_traits_feature_servicing_corrected_ad_event_26842024_t.hpp │ │ │ ├── feature_traits_feature_servicing_cortana_button_fix_28998388_t.hpp │ │ │ ├── feature_traits_feature_servicing_cortana_store_offer_28998340_t.hpp │ │ │ ├── feature_traits_feature_servicing_cortana_wnf_25897652_t.hpp │ │ │ ├── feature_traits_feature_servicing_cred_ui_popup_fix_27540566_t.hpp │ │ │ ├── feature_traits_feature_servicing_cred_ui_reorder_cancel_operations_28358432_t.hpp │ │ │ ├── feature_traits_feature_servicing_credential_delegation_28183416_t.hpp │ │ │ ├── feature_traits_feature_servicing_ct_fix_for_ecc_29632490_t.hpp │ │ │ ├── feature_traits_feature_servicing_current_folder_as_selection_28916295_t.hpp │ │ │ ├── feature_traits_feature_servicing_customdata_29270086_t.hpp │ │ │ ├── feature_traits_feature_servicing_dc_promo_25750482_t.hpp │ │ │ ├── feature_traits_feature_servicing_description_28202641_t.hpp │ │ │ ├── feature_traits_feature_servicing_device_name_28577559_t.hpp │ │ │ ├── feature_traits_feature_servicing_disable_legacy_j_script_process_level_28935168_t.hpp │ │ │ ├── feature_traits_feature_servicing_disable_legacy_j_script_system_level_28090635_t.hpp │ │ │ ├── feature_traits_feature_servicing_discovery_28795023_t.hpp │ │ │ ├── feature_traits_feature_servicing_diskpart_list_volume_27656794_t.hpp │ │ │ ├── feature_traits_feature_servicing_dlp_copy_dialog_suppress_28724773_t.hpp │ │ │ ├── feature_traits_feature_servicing_dlp_error_26064222_t.hpp │ │ │ ├── feature_traits_feature_servicing_domain_join_data_27645866_t.hpp │ │ │ ├── feature_traits_feature_servicing_dpapi_log_crash_27067522_t.hpp │ │ │ ├── feature_traits_feature_servicing_dscdt_gate_ctc_29665841_t.hpp │ │ │ ├── feature_traits_feature_servicing_edge_uninstall_taskbar_26936069_t.hpp │ │ │ ├── feature_traits_feature_servicing_edgepad_leaks_in_c_acc_base_fix_26388236_t.hpp │ │ │ ├── feature_traits_feature_servicing_edp_26271067_t.hpp │ │ │ ├── feature_traits_feature_servicing_ehcont_checks_28208890_t.hpp │ │ │ ├── feature_traits_feature_servicing_email_privacy_25215097_t.hpp │ │ │ ├── feature_traits_feature_servicing_emie_fragment_fix_28925080_t.hpp │ │ │ ├── feature_traits_feature_servicing_enable_cet_for_j_script9_28605928_t.hpp │ │ │ ├── feature_traits_feature_servicing_eof_for_peerdist_21726535_t.hpp │ │ │ ├── feature_traits_feature_servicing_esp_policy_fix_29676310_t.hpp │ │ │ ├── feature_traits_feature_servicing_exception_28245889_t.hpp │ │ │ ├── feature_traits_feature_servicing_f002_t.hpp │ │ │ ├── feature_traits_feature_servicing_false_audit_event_fix_28245743_t.hpp │ │ │ ├── feature_traits_feature_servicing_favorites_data_loss_27297831_t.hpp │ │ │ ├── feature_traits_feature_servicing_fido_ui_hang_28750812_t.hpp │ │ │ ├── feature_traits_feature_servicing_file_handle_hash_mem_leak_26334032_t.hpp │ │ │ ├── feature_traits_feature_servicing_fingerprint_sensor_on_keyboard_glyphs_26518599_t.hpp │ │ │ ├── feature_traits_feature_servicing_fix_language_feature_enumeration_26925591_t.hpp │ │ │ ├── feature_traits_feature_servicing_flash_deprecation_notify_28175686_t.hpp │ │ │ ├── feature_traits_feature_servicing_force_install_driver_29661640_t.hpp │ │ │ ├── feature_traits_feature_servicing_forgot_pin_failure_29454202_t.hpp │ │ │ ├── feature_traits_feature_servicing_framework_registration_29269978_t.hpp │ │ │ ├── feature_traits_feature_servicing_freeirp_28394140_t.hpp │ │ │ ├── feature_traits_feature_servicing_fw_hang_26225368_t.hpp │ │ │ ├── feature_traits_feature_servicing_gcmaxjetsessions_28581313_t.hpp │ │ │ ├── feature_traits_feature_servicing_get_basic_profile_folder_path_ex_access_denied_24322985_t.hpp │ │ │ ├── feature_traits_feature_servicing_get_cp_and_markup_crash_26389308_t.hpp │ │ │ ├── feature_traits_feature_servicing_group_membership_28516544_t.hpp │ │ │ ├── feature_traits_feature_servicing_hairpin_stack_24924644_t.hpp │ │ │ ├── feature_traits_feature_servicing_handle_adapter_initialization_failure_27185154_t.hpp │ │ │ ├── feature_traits_feature_servicing_hdcp22_29247049_t.hpp │ │ │ ├── feature_traits_feature_servicing_hub_anaheim_profile_cleanup_29139702_t.hpp │ │ │ ├── feature_traits_feature_servicing_hub_team_os_bcd_description_29757898_t.hpp │ │ │ ├── feature_traits_feature_servicing_hvsi_security_27293963_t.hpp │ │ │ ├── feature_traits_feature_servicing_ie_accessibility_narrator_enter_key_no_action_25172909_t.hpp │ │ │ ├── feature_traits_feature_servicing_ie_mode_disable_menu_bar_25423356_t.hpp │ │ │ ├── feature_traits_feature_servicing_ie_mode_enhance_hang_detection_27536514_t.hpp │ │ │ ├── feature_traits_feature_servicing_ie_mode_fix_secure_icon_28589185_t.hpp │ │ │ ├── feature_traits_feature_servicing_ie_mode_modal_dialog_activation_25795971_t.hpp │ │ │ ├── feature_traits_feature_servicing_ie_mode_modeless_dialog_hidden_25796082_t.hpp │ │ │ ├── feature_traits_feature_servicing_ie_mode_no_restart_manager_28527722_t.hpp │ │ │ ├── feature_traits_feature_servicing_ie_mode_send_url_fragment_26715727_t.hpp │ │ │ ├── feature_traits_feature_servicing_ie_mode_server_redirect_to_edge_28583749_t.hpp │ │ │ ├── feature_traits_feature_servicing_ie_mode_skip_new_v_tab_close_25796309_t.hpp │ │ │ ├── feature_traits_feature_servicing_ie_mode_unidirectional_session_cookie_sync_27513255_t.hpp │ │ │ ├── feature_traits_feature_servicing_ie_new_about_dialog_29803658_t.hpp │ │ │ ├── feature_traits_feature_servicing_ie_perf_gdi_release_dc_27170870_t.hpp │ │ │ ├── feature_traits_feature_servicing_ie_settingsyncmigration_23092750_t.hpp │ │ │ ├── feature_traits_feature_servicing_ie_settingsyncmigration_autocomplete_21389768_t.hpp │ │ │ ├── feature_traits_feature_servicing_ie_settingsyncmigration_favorites_21177013_t.hpp │ │ │ ├── feature_traits_feature_servicing_ie_settingsyncmigration_history_21389737_t.hpp │ │ │ ├── feature_traits_feature_servicing_ie_settingsyncmigration_tabroaming_21389760_t.hpp │ │ │ ├── feature_traits_feature_servicing_ie_settingsyncmigration_typedurls_21389753_t.hpp │ │ │ ├── feature_traits_feature_servicing_ignore_users_on_sku_27292620_t.hpp │ │ │ ├── feature_traits_feature_servicing_imm_get_composition_string_kana_27822662_t.hpp │ │ │ ├── feature_traits_feature_servicing_incorrect_cpu_freq_24071656_t.hpp │ │ │ ├── feature_traits_feature_servicing_incorrect_max_lsn_check_28013824_t.hpp │ │ │ ├── feature_traits_feature_servicing_ink_hang_27560689_t.hpp │ │ │ ├── feature_traits_feature_servicing_inplace_sharing_permissions_propagation_24355041_t.hpp │ │ │ ├── feature_traits_feature_servicing_invalid_restart_data_28246526_t.hpp │ │ │ ├── feature_traits_feature_servicing_invoke_pin_reset_fix_28172315_t.hpp │ │ │ ├── feature_traits_feature_servicing_is_removable_device_path_28240882_t.hpp │ │ │ ├── feature_traits_feature_servicing_is_trial_owned_by_this_user_25431480_t.hpp │ │ │ ├── feature_traits_feature_servicing_jamsi_cache_2011c_28733013_t.hpp │ │ │ ├── feature_traits_feature_servicing_japanese_ime_crash_on_focus_change_28411027_t.hpp │ │ │ ├── feature_traits_feature_servicing_jpn_ime_crash_long_composition_24746137_t.hpp │ │ │ ├── feature_traits_feature_servicing_jump_list_cent_item_activation_fix_27921884_t.hpp │ │ │ ├── feature_traits_feature_servicing_kbf_hang_fix_26723997_t.hpp │ │ │ ├── feature_traits_feature_servicing_language_pack_activity_progress_check_26846970_t.hpp │ │ │ ├── feature_traits_feature_servicing_legacy_j_script_system_level_mitigation_28076903_t.hpp │ │ │ ├── feature_traits_feature_servicing_legacy_j_script_system_level_mitigation_28096463_t.hpp │ │ │ ├── feature_traits_feature_servicing_logon60_sec_delay_24736154_t.hpp │ │ │ ├── feature_traits_feature_servicing_logon_incorrect_pw_29030167_t.hpp │ │ │ ├── feature_traits_feature_servicing_long_path_far_east_chars_25218765_t.hpp │ │ │ ├── feature_traits_feature_servicing_long_system_uptime_prediction_26864350_t.hpp │ │ │ ├── feature_traits_feature_servicing_lsass_crash_26994669_t.hpp │ │ │ ├── feature_traits_feature_servicing_mbdstdapi_limitation_29629234_t.hpp │ │ │ ├── feature_traits_feature_servicing_mdac_component_28450870_t.hpp │ │ │ ├── feature_traits_feature_servicing_mdm_enrollment_for_azure_vm_29191000_t.hpp │ │ │ ├── feature_traits_feature_servicing_memleak_of_ctf_mon_24875808_t.hpp │ │ │ ├── feature_traits_feature_servicing_mp_ux_toast_29648553_t.hpp │ │ │ ├── feature_traits_feature_servicing_mr_hit_test_update_29136479_t.hpp │ │ │ ├── feature_traits_feature_servicing_ms_d_sparentdistname_28245832_t.hpp │ │ │ ├── feature_traits_feature_servicing_msa_interrupt_29811330_t.hpp │ │ │ ├── feature_traits_feature_servicing_msctf1st_key_stroke_25625207_t.hpp │ │ │ ├── feature_traits_feature_servicing_msctf_crashes_25369733_t.hpp │ │ │ ├── feature_traits_feature_servicing_multi_thread_superwet_interrupt_time_28121597_t.hpp │ │ │ ├── feature_traits_feature_servicing_net_exe_28246513_t.hpp │ │ │ ├── feature_traits_feature_servicing_new_ime_on_ime_off_key_26518641_t.hpp │ │ │ ├── feature_traits_feature_servicing_ngc_key_fix_28245787_t.hpp │ │ │ ├── feature_traits_feature_servicing_nocleanup_27509450_t.hpp │ │ │ ├── feature_traits_feature_servicing_ntds_util_move_db_fails_28127467_t.hpp │ │ │ ├── feature_traits_feature_servicing_ocsp_audits_fix_28246447_t.hpp │ │ │ ├── feature_traits_feature_servicing_oma_dm_client429_support_26843547_t.hpp │ │ │ ├── feature_traits_feature_servicing_open_file_dlg_dfs_27292504_t.hpp │ │ │ ├── feature_traits_feature_servicing_outlook64_preview_26389697_t.hpp │ │ │ ├── feature_traits_feature_servicing_outlook_korean_ime_crash_25988242_t.hpp │ │ │ ├── feature_traits_feature_servicing_parental_controls_fix_arm64_26075375_t.hpp │ │ │ ├── feature_traits_feature_servicing_pg_start_tiles_26435933_t.hpp │ │ │ ├── feature_traits_feature_servicing_phantom_keyboard_layout_fix_24054211_t.hpp │ │ │ ├── feature_traits_feature_servicing_policies_expand_25693980_t.hpp │ │ │ ├── feature_traits_feature_servicing_policy_refresh_28509750_t.hpp │ │ │ ├── feature_traits_feature_servicing_prevent_hotkey_workaround_29812235_t.hpp │ │ │ ├── feature_traits_feature_servicing_propagate_banner_init_failure_25477005_t.hpp │ │ │ ├── feature_traits_feature_servicing_propsys_25192905_t.hpp │ │ │ ├── feature_traits_feature_servicing_psfport_29851670_t.hpp │ │ │ ├── feature_traits_feature_servicing_random_time_zone_issue_28237331_t.hpp │ │ │ ├── feature_traits_feature_servicing_realtime_latency_24836432_t.hpp │ │ │ ├── feature_traits_feature_servicing_register_device_27292628_t.hpp │ │ │ ├── feature_traits_feature_servicing_register_device_with_management_using_aad_device_credentials_29279327_t.hpp │ │ │ ├── feature_traits_feature_servicing_remove_excessive_app_reset_toasts_29720732_t.hpp │ │ │ ├── feature_traits_feature_servicing_remove_rinna_28093743_t.hpp │ │ │ ├── feature_traits_feature_servicing_remove_unsupported_cortana_app_space_usage_27302143_t.hpp │ │ │ ├── feature_traits_feature_servicing_restart_manager_25418678_t.hpp │ │ │ ├── feature_traits_feature_servicing_restricted_hive_access_check_25359755_t.hpp │ │ │ ├── feature_traits_feature_servicing_s_mode_app_defaults_restrictions_removed_26518907_t.hpp │ │ │ ├── feature_traits_feature_servicing_sam_repair_failure_fix_27097803_t.hpp │ │ │ ├── feature_traits_feature_servicing_samsung_app_terminate_fix_24280641_t.hpp │ │ │ ├── feature_traits_feature_servicing_sc_event_race_condition_27659430_t.hpp │ │ │ ├── feature_traits_feature_servicing_search_delete_history_suggestions_24139787_t.hpp │ │ │ ├── feature_traits_feature_servicing_search_disable_web_search_26707249_t.hpp │ │ │ ├── feature_traits_feature_servicing_search_suggestions_fallback_25476964_t.hpp │ │ │ ├── feature_traits_feature_servicing_session_cookie_not_propagated_25797022_t.hpp │ │ │ ├── feature_traits_feature_servicing_shared_spatial_audio_28411217_t.hpp │ │ │ ├── feature_traits_feature_servicing_silent_autologon_interactive_gp_28422150_t.hpp │ │ │ ├── feature_traits_feature_servicing_snmp_issue_26419618_t.hpp │ │ │ ├── feature_traits_feature_servicing_sort_driver_packages_29540051_t.hpp │ │ │ ├── feature_traits_feature_servicing_start_early_tiles_access_28173477_t.hpp │ │ │ ├── feature_traits_feature_servicing_start_projecting_async_25502423_t.hpp │ │ │ ├── feature_traits_feature_servicing_switch_dual_engine_in_new_window_27885097_t.hpp │ │ │ ├── feature_traits_feature_servicing_system_image_creation_issue_28013963_t.hpp │ │ │ ├── feature_traits_feature_servicing_table_grid_fragmentation_23947628_t.hpp │ │ │ ├── feature_traits_feature_servicing_taskbar_telemetry_27016595_t.hpp │ │ │ ├── feature_traits_feature_servicing_tcp_ul_data_transfer_28350748_t.hpp │ │ │ ├── feature_traits_feature_servicing_text_area_adds_additional_characters_25431476_t.hpp │ │ │ ├── feature_traits_feature_servicing_threadpool_lock_27264114_t.hpp │ │ │ ├── feature_traits_feature_servicing_tolerate_null_user_24814801_t.hpp │ │ │ ├── feature_traits_feature_servicing_track_only_enabled_users_29816373_t.hpp │ │ │ ├── feature_traits_feature_servicing_try_except_tff_rasterizer_2751261_t.hpp │ │ │ ├── feature_traits_feature_servicing_tsf3_ime_key_up_for_shift_29557861_t.hpp │ │ │ ├── feature_traits_feature_servicing_tvm_history_ux_29697439_t.hpp │ │ │ ├── feature_traits_feature_servicing_tvm_toast_ux_29697430_t.hpp │ │ │ ├── feature_traits_feature_servicing_udp_encap_nat_26411630_t.hpp │ │ │ ├── feature_traits_feature_servicing_uev_outlook_sig_roaming_29238721_t.hpp │ │ │ ├── feature_traits_feature_servicing_ui_language_28996626_t.hpp │ │ │ ├── feature_traits_feature_servicing_unblock_child_proc_create_2008c_24802476_t.hpp │ │ │ ├── feature_traits_feature_servicing_unc_folder_property_24907131_t.hpp │ │ │ ├── feature_traits_feature_servicing_unplate_microsoft_edge_tiles_26864230_t.hpp │ │ │ ├── feature_traits_feature_servicing_unreasonable_size_of_memory_28960034_t.hpp │ │ │ ├── feature_traits_feature_servicing_usage_under_lock_29812777_t.hpp │ │ │ ├── feature_traits_feature_servicing_usb_printer_disappear_27212084_t.hpp │ │ │ ├── feature_traits_feature_servicing_user_cet_25433400_t.hpp │ │ │ ├── feature_traits_feature_servicing_utc_infinite_recursion_after_wpr_failure_28920209_t.hpp │ │ │ ├── feature_traits_feature_servicing_utc_privacy_toast_notification_25414772_t.hpp │ │ │ ├── feature_traits_feature_servicing_utc_run_exe_output_dir_fix_28728820_t.hpp │ │ │ ├── feature_traits_feature_servicing_uwp_app_wer_submit_report_30025035_t.hpp │ │ │ ├── feature_traits_feature_servicing_value_banner_update_25271277_t.hpp │ │ │ ├── feature_traits_feature_servicing_virtual_accounts_cleanup_gp_27564144_t.hpp │ │ │ ├── feature_traits_feature_servicing_wallpaper_gpo_solid_color_28516672_t.hpp │ │ │ ├── feature_traits_feature_servicing_wdf_power_reference_leak_28414639_t.hpp │ │ │ ├── feature_traits_feature_servicing_web_view_memory_leak_27512875_t.hpp │ │ │ ├── feature_traits_feature_servicing_white_space_user_name_issue_25989211_t.hpp │ │ │ ├── feature_traits_feature_servicing_work_area_change_handling_25330851_t.hpp │ │ │ ├── feature_traits_feature_servicing_work_folder_thumnail_preview_fix_26418208_t.hpp │ │ │ ├── feature_traits_feature_servicing_wow_compat_flag_25624677_t.hpp │ │ │ ├── feature_traits_feature_servicing_wvd_mgmt_29453239_t.hpp │ │ │ ├── feature_traits_feature_servicing_zerobound_25433747_t.hpp │ │ │ ├── feature_traits_feature_servicing_zombie_umpd_rfonts_27512576_t.hpp │ │ │ ├── feature_traits_feature_set_defaults_by_app_t.hpp │ │ │ ├── feature_traits_feature_set_lock_screen_image_as_desktop_background_t.hpp │ │ │ ├── feature_traits_feature_set_number_of_days_displayed_in_timeline_t.hpp │ │ │ ├── feature_traits_feature_settings_extensibility_t.hpp │ │ │ ├── feature_traits_feature_settings_search_cfr_t.hpp │ │ │ ├── feature_traits_feature_share_to_devices_t.hpp │ │ │ ├── feature_traits_feature_share_verb_in_file_explorer_context_menu_t.hpp │ │ │ ├── feature_traits_feature_shell_suggestions_in_timeline_t.hpp │ │ │ ├── feature_traits_feature_shell_undocked_package_t.hpp │ │ │ ├── feature_traits_feature_shell_user_selection_t.hpp │ │ │ ├── feature_traits_feature_shoulder_tap_t.hpp │ │ │ ├── feature_traits_feature_single_tab_visuals_t.hpp │ │ │ ├── feature_traits_feature_sketchpad_launched_t.hpp │ │ │ ├── feature_traits_feature_skip_browser_in_app_enumerations_t.hpp │ │ │ ├── feature_traits_feature_skip_msix_manifest_validation_t.hpp │ │ │ ├── feature_traits_feature_slide_window_animation_rect_check_t.hpp │ │ │ ├── feature_traits_feature_smart_insights_t.hpp │ │ │ ├── feature_traits_feature_snipping_tool_parity_t.hpp │ │ │ ├── feature_traits_feature_start_component_ui_prototype_t.hpp │ │ │ ├── feature_traits_feature_start_component_ui_support_t.hpp │ │ │ ├── feature_traits_feature_sticky_notes_new_windowing_api_t.hpp │ │ │ ├── feature_traits_feature_stubs_bypass_queue_t.hpp │ │ │ ├── feature_traits_feature_suggestion_activity_indexer_and_data_model_t.hpp │ │ │ ├── feature_traits_feature_support_info_tip_in_notification_center_t.hpp │ │ │ ├── feature_traits_feature_suppress_default_people_bar_t.hpp │ │ │ ├── feature_traits_feature_suppress_mail_t.hpp │ │ │ ├── feature_traits_feature_suppress_store_t.hpp │ │ │ ├── feature_traits_feature_suspend_per_app_broker_t.hpp │ │ │ ├── feature_traits_feature_system_app_deh_trace_t.hpp │ │ │ ├── feature_traits_feature_system_light_theme_t.hpp │ │ │ ├── feature_traits_feature_system_software_t.hpp │ │ │ ├── feature_traits_feature_tab_category_bc_t.hpp │ │ │ ├── feature_traits_feature_tab_drag_soft_landing_t.hpp │ │ │ ├── feature_traits_feature_tab_id_stability_t.hpp │ │ │ ├── feature_traits_feature_tab_setting_state_repo_integration_t.hpp │ │ │ ├── feature_traits_feature_tab_shell_app_to_app_links_t.hpp │ │ │ ├── feature_traits_feature_tab_shell_auto_tabbing_preference_t.hpp │ │ │ ├── feature_traits_feature_tab_shell_t.hpp │ │ │ ├── feature_traits_feature_tab_shell_visibility_override_to_on_for_gates_t.hpp │ │ │ ├── feature_traits_feature_tab_shell_visibility_t.hpp │ │ │ ├── feature_traits_feature_tab_shell_win_rt_api_t.hpp │ │ │ ├── feature_traits_feature_tab_thumbnails_refreshed_on_demand_t.hpp │ │ │ ├── feature_traits_feature_task_flow_afc_indexer_diagnostics_t.hpp │ │ │ ├── feature_traits_feature_task_flow_data_engine_on_santorini_t.hpp │ │ │ ├── feature_traits_feature_task_flow_location_activity_support_t.hpp │ │ │ ├── feature_traits_feature_task_view_warm_launch_t.hpp │ │ │ ├── feature_traits_feature_taskbar_add_office_pins_t.hpp │ │ │ ├── feature_traits_feature_taskbar_add_pinned_item_failure_telemetry_t.hpp │ │ │ ├── feature_traits_feature_taskbar_badging_tdl_deprecation_t.hpp │ │ │ ├── feature_traits_feature_taskbar_edge_favicon_t.hpp │ │ │ ├── feature_traits_feature_taskbar_edge_tab_blowout_t.hpp │ │ │ ├── feature_traits_feature_taskbar_no_blur_behind_on_software_renderer_t.hpp │ │ │ ├── feature_traits_feature_taskbar_pin_migration_t.hpp │ │ │ ├── feature_traits_feature_taskbar_programmatic_edge_website_pinning_t.hpp │ │ │ ├── feature_traits_feature_taskbar_programmatic_primary_tile_pinning_t.hpp │ │ │ ├── feature_traits_feature_taskbar_tabbed_one_click_t.hpp │ │ │ ├── feature_traits_feature_tdl_fail_fast_t.hpp │ │ │ ├── feature_traits_feature_tdl_t.hpp │ │ │ ├── feature_traits_feature_test_people_app_upsell_with_share_collection_t.hpp │ │ │ ├── feature_traits_feature_tgl_cta_20h2_interface_t.hpp │ │ │ ├── feature_traits_feature_theme_settings_t.hpp │ │ │ ├── feature_traits_feature_themes_in_store_t.hpp │ │ │ ├── feature_traits_feature_thumbnail_tabs_t.hpp │ │ │ ├── feature_traits_feature_tile_store_desktop_migration_t.hpp │ │ │ ├── feature_traits_feature_tile_store_holo_migration_t.hpp │ │ │ ├── feature_traits_feature_tile_store_reads_t.hpp │ │ │ ├── feature_traits_feature_tile_store_writes_t.hpp │ │ │ ├── feature_traits_feature_timeline_cross_device_t.hpp │ │ │ ├── feature_traits_feature_timeline_delete_by_group_t.hpp │ │ │ ├── feature_traits_feature_timeline_up_sell_t.hpp │ │ │ ├── feature_traits_feature_tray_notifications_without_tdl_t.hpp │ │ │ ├── feature_traits_feature_turn_on_num_lock_during_pin_entry_t.hpp │ │ │ ├── feature_traits_feature_uibc_enable_toast_t.hpp │ │ │ ├── feature_traits_feature_undocked_settings_extensions_t.hpp │ │ │ ├── feature_traits_feature_undocked_settings_search_content_t.hpp │ │ │ ├── feature_traits_feature_unified_enrollment_landing_page_t.hpp │ │ │ ├── feature_traits_feature_uninstall_browser_replacement_fixups_t.hpp │ │ │ ├── feature_traits_feature_update_pinned_taskbar_icons_t.hpp │ │ │ ├── feature_traits_feature_updated_people_suggestions_t.hpp │ │ │ ├── feature_traits_feature_upload_user_activity_t.hpp │ │ │ ├── feature_traits_feature_use_converged_npsm_mtc_model_t.hpp │ │ │ ├── feature_traits_feature_use_people_app_relevance_t.hpp │ │ │ ├── feature_traits_feature_use_tdl_on_holo_t.hpp │ │ │ ├── feature_traits_feature_user_activity_engagement_flags_t.hpp │ │ │ ├── feature_traits_feature_user_selection_for_ra_t.hpp │ │ │ ├── feature_traits_feature_vail_container_override_t.hpp │ │ │ ├── feature_traits_feature_vail_initial_positioning_t.hpp │ │ │ ├── feature_traits_feature_vail_override_store_device_family_t.hpp │ │ │ ├── feature_traits_feature_vail_win32_startup_task_t.hpp │ │ │ ├── feature_traits_feature_view_closing_ap_is_close_requested_desktop_t.hpp │ │ │ ├── feature_traits_feature_view_closing_ap_is_try_consolidate_desktop_t.hpp │ │ │ ├── feature_traits_feature_virtual_desktop_custom_names_t.hpp │ │ │ ├── feature_traits_feature_watsonize_activation_failures_t.hpp │ │ │ ├── feature_traits_feature_watsonize_vail_failures_t.hpp │ │ │ ├── feature_traits_feature_wcos_file_dialogs_for_anaheim_t.hpp │ │ │ ├── feature_traits_feature_wcos_handwriting_settings_t.hpp │ │ │ ├── feature_traits_feature_wcos_override_device_family_t.hpp │ │ │ ├── feature_traits_feature_wcos_pre_installed_apps_hide_t.hpp │ │ │ ├── feature_traits_feature_web_timeline_t.hpp │ │ │ ├── feature_traits_feature_welcome_screen_enabled_t.hpp │ │ │ ├── feature_traits_feature_whiteboard_app_in_iws_t.hpp │ │ │ ├── feature_traits_feature_window_manager_desktop_t.hpp │ │ │ ├── feature_traits_feature_window_snap_signals_for_activities_t.hpp │ │ │ ├── feature_traits_feature_window_tab_host_t.hpp │ │ │ ├── feature_traits_feature_windowing_environments_desktop_t.hpp │ │ │ ├── feature_traits_feature_windowing_environments_wcos_t.hpp │ │ │ ├── feature_traits_feature_windows_ink_workspace_improvements_t.hpp │ │ │ ├── feature_traits_feature_wiw_hotkey_for_screen_sketch_t.hpp │ │ │ ├── feature_traits_feature_wth_taskbar_tabs_t.hpp │ │ │ ├── feature_traits_feature_xaml_all_up_view_t.hpp │ │ │ ├── feature_traits_feature_xaml_alt_tab_view_t.hpp │ │ │ ├── feature_traits_feature_xaml_alt_tab_win32_t.hpp │ │ │ ├── feature_traits_feature_xaml_app_resolver_phone_t.hpp │ │ │ ├── feature_traits_feature_xaml_app_resolver_t.hpp │ │ │ ├── feature_traits_feature_xaml_cred_ui_t.hpp │ │ │ ├── feature_traits_feature_xaml_explorer_host_t.hpp │ │ │ ├── feature_traits_feature_xaml_presenter_atlas_size_development_t.hpp │ │ │ ├── feature_traits_feature_xaml_presenter_backstop_color_development_t.hpp │ │ │ ├── feature_traits_feature_xaml_snap_assist_view_t.hpp │ │ │ ├── feature_traits_feature_xaml_taskbar_t.hpp │ │ │ ├── feature_traits_feature_your_phone_desktop_shortcut_t.hpp │ │ │ ├── feature_traits_feature_your_phone_taskbar_icon_t.hpp │ │ │ ├── feature_variant_payload_kind_t.hpp │ │ │ ├── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ ├── api.start.hpp │ │ │ │ ├── details_feature_descriptor_t.end.hpp │ │ │ │ ├── details_feature_descriptor_t.start.hpp │ │ │ │ ├── details_feature_reporting_cache_t.end.hpp │ │ │ │ ├── details_feature_reporting_cache_t.start.hpp │ │ │ │ ├── details_feature_state_cache_t.end.hpp │ │ │ │ ├── details_feature_state_cache_t.start.hpp │ │ │ │ ├── details_feature_test_state_t.end.hpp │ │ │ │ ├── details_feature_test_state_t.start.hpp │ │ │ │ ├── details_feature_usage_srum_t.end.hpp │ │ │ │ ├── details_feature_usage_srum_t.start.hpp │ │ │ │ ├── details_record_usage_result_t.end.hpp │ │ │ │ ├── details_record_usage_result_t.start.hpp │ │ │ │ ├── details_recorded_state_t.end.hpp │ │ │ │ ├── details_recorded_state_t.start.hpp │ │ │ │ ├── details_reported_state_t.end.hpp │ │ │ │ ├── details_reported_state_t.start.hpp │ │ │ │ ├── details_staging_config_feature_t.end.hpp │ │ │ │ ├── details_staging_config_feature_t.start.hpp │ │ │ │ ├── details_staging_config_header_properties_t.end.hpp │ │ │ │ ├── details_staging_config_header_properties_t.start.hpp │ │ │ │ ├── details_staging_config_header_t.end.hpp │ │ │ │ ├── details_staging_config_header_t.start.hpp │ │ │ │ ├── details_staging_config_t.end.hpp │ │ │ │ ├── details_staging_config_t.start.hpp │ │ │ │ ├── details_staging_config_usage_trigger_t.end.hpp │ │ │ │ ├── details_staging_config_usage_trigger_t.start.hpp │ │ │ │ ├── details_staging_config_wnf_state_name_t.end.hpp │ │ │ │ ├── details_staging_config_wnf_state_name_t.start.hpp │ │ │ │ ├── details_usage_subscription_data_t.end.hpp │ │ │ │ ├── details_usage_subscription_data_t.start.hpp │ │ │ │ ├── feature_state_t.end.hpp │ │ │ │ ├── feature_state_t.start.hpp │ │ │ │ ├── rtl_srwlock_t.end.hpp │ │ │ │ ├── rtl_srwlock_t.start.hpp │ │ │ │ ├── wnf_state_name_t.end.hpp │ │ │ │ ├── wnf_state_name_t.start.hpp │ │ │ │ ├── wnf_type_id_t.end.hpp │ │ │ │ └── wnf_type_id_t.start.hpp │ │ │ ├── reporting_kind_t.hpp │ │ │ ├── rtl_srwlock_t.hpp │ │ │ ├── staging_config_t.hpp │ │ │ ├── usage_reporting_mode_t.hpp │ │ │ ├── variant_payload_type_t.hpp │ │ │ ├── variant_reporting_kind_t.hpp │ │ │ ├── wnf_state_name_t.hpp │ │ │ ├── wnf_type_id_t.hpp │ │ │ └── wnf_user_subscription_t.hpp │ │ ├── win/ │ │ │ ├── abc_t.hpp │ │ │ ├── abcfloat_t.hpp │ │ │ ├── abs_method_t.hpp │ │ │ ├── access_allowed_ace_t.hpp │ │ │ ├── access_allowed_callback_ace_t.hpp │ │ │ ├── access_allowed_callback_object_ace_t.hpp │ │ │ ├── access_allowed_object_ace_t.hpp │ │ │ ├── access_denied_ace_t.hpp │ │ │ ├── access_denied_callback_ace_t.hpp │ │ │ ├── access_denied_callback_object_ace_t.hpp │ │ │ ├── access_denied_object_ace_t.hpp │ │ │ ├── access_mode_t.hpp │ │ │ ├── access_reason_type_t.hpp │ │ │ ├── ace_header_t.hpp │ │ │ ├── acl_information_class_t.hpp │ │ │ ├── acl_revision_information_t.hpp │ │ │ ├── acl_size_information_t.hpp │ │ │ ├── acpickl_midl_expr_format_string_t.hpp │ │ │ ├── acpickl_midl_proc_format_string_t.hpp │ │ │ ├── acpickl_midl_type_format_string_t.hpp │ │ │ ├── actctx_compatibility_element_type_t.hpp │ │ │ ├── actctx_requested_run_level_t.hpp │ │ │ ├── action_type_t.hpp │ │ │ ├── activatable_class_machine_registration_entry_properties_t.hpp │ │ │ ├── activatable_class_machine_registration_entry_property_flags_t.hpp │ │ │ ├── activatable_class_machine_registration_entry_property_index_t.hpp │ │ │ ├── activatable_class_reg_input_entry_t.hpp │ │ │ ├── activatable_class_reg_input_t.hpp │ │ │ ├── activatable_class_registration_entry_properties_t.hpp │ │ │ ├── activatable_class_registration_entry_property_flags_t.hpp │ │ │ ├── activatable_class_registration_entry_property_index_t.hpp │ │ │ ├── activatable_class_revoke_classes_t.hpp │ │ │ ├── activatable_class_revoke_entry_t.hpp │ │ │ ├── activate_on_host_flags_t.hpp │ │ │ ├── activate_on_host_t.hpp │ │ │ ├── activation_action_t.hpp │ │ │ ├── activation_context_assembly_data_t.hpp │ │ │ ├── activation_context_assembly_detailed_information_t.hpp │ │ │ ├── activation_context_basic_information_t.hpp │ │ │ ├── activation_context_compatibility_information_t.hpp │ │ │ ├── activation_context_data_assembly_information_t.hpp │ │ │ ├── activation_context_data_com_interface_redirection_t.hpp │ │ │ ├── activation_context_data_com_progid_redirection_t.hpp │ │ │ ├── activation_context_data_com_server_redirection_t.hpp │ │ │ ├── activation_context_data_t.hpp │ │ │ ├── activation_context_data_winrt_activatable_class_t.hpp │ │ │ ├── activation_context_detailed_information_t.hpp │ │ │ ├── activation_context_factory_t.hpp │ │ │ ├── activation_context_info_class_t.hpp │ │ │ ├── activation_context_msix_info_t.hpp │ │ │ ├── activation_context_query_index_t.hpp │ │ │ ├── activation_context_run_level_information_t.hpp │ │ │ ├── activation_context_section_keyed_data_2600_t.hpp │ │ │ ├── activation_context_section_keyed_data_assembly_metadata_t.hpp │ │ │ ├── activation_context_section_keyed_data_t.hpp │ │ │ ├── activation_context_t.hpp │ │ │ ├── activation_properties_in_t.hpp │ │ │ ├── activation_properties_out_t.hpp │ │ │ ├── activation_properties_t.hpp │ │ │ ├── actrl_access_entry_listw_t.hpp │ │ │ ├── actrl_access_entryw_t.hpp │ │ │ ├── actrl_alistw_t.hpp │ │ │ ├── actrl_property_entryw_t.hpp │ │ │ ├── add_package_dependency_options_t.hpp │ │ │ ├── addition_state_t.hpp │ │ │ ├── administrator_power_policy_t.hpp │ │ │ ├── aentry_t.hpp │ │ │ ├── aggregation_mode_t.hpp │ │ │ ├── agile_reference_options_t.hpp │ │ │ ├── allocate_extra_t.hpp │ │ │ ├── allocation_wrapper_t.hpp │ │ │ ├── amd64_context_t.hpp │ │ │ ├── anon_object_header_bigobj_t.hpp │ │ │ ├── anon_object_header_t.hpp │ │ │ ├── anon_object_header_v2_t.hpp │ │ │ ├── apartment_entry_t.hpp │ │ │ ├── apartment_shutdown_node_t.hpp │ │ │ ├── apartment_shutdown_registration_cookie_t.hpp │ │ │ ├── apartment_type_specific_routines_t.hpp │ │ │ ├── apartment_type_t.hpp │ │ │ ├── app_local_device_id_t.hpp │ │ │ ├── app_memory_information_t.hpp │ │ │ ├── app_model_policy_policy_value_t.hpp │ │ │ ├── app_model_policy_type_t.hpp │ │ │ ├── app_policy_clr_compat_t.hpp │ │ │ ├── app_policy_create_file_access_t.hpp │ │ │ ├── app_policy_lifecycle_management_t.hpp │ │ │ ├── app_policy_media_foundation_codec_loading_t.hpp │ │ │ ├── app_policy_process_termination_method_t.hpp │ │ │ ├── app_policy_show_developer_diagnostic_t.hpp │ │ │ ├── app_policy_thread_initialization_type_t.hpp │ │ │ ├── app_policy_windowing_model_t.hpp │ │ │ ├── appcompat_exe_data_t.hpp │ │ │ ├── appcontainer_sid_type_t.hpp │ │ │ ├── application_package_type_t.hpp │ │ │ ├── applicationlaunch_setting_value_t.hpp │ │ │ ├── appx_bundle_payload_package_type_t.hpp │ │ │ ├── appx_capabilities_t.hpp │ │ │ ├── appx_compression_option_t.hpp │ │ │ ├── appx_package_architecture2_t.hpp │ │ │ ├── appx_package_architecture_t.hpp │ │ │ ├── aptkind_t.hpp │ │ │ ├── apttype_t.hpp │ │ │ ├── apttypequalifier_t.hpp │ │ │ ├── arm64_context_t.hpp │ │ │ ├── arm64_fnpdata_cr_t.hpp │ │ │ ├── arm64_fnpdata_flags_t.hpp │ │ │ ├── arm64_nt_context_t.hpp │ │ │ ├── arm64_nt_neon128_t.hpp │ │ │ ├── arm64_param_layout_t.hpp │ │ │ ├── arm64_register_params_t.hpp │ │ │ ├── arm64ec_nt_context_t.hpp │ │ │ ├── arm_context_t.hpp │ │ │ ├── arm_param_layout_t.hpp │ │ │ ├── arm_params_t.hpp │ │ │ ├── arm_register_layout32_t.hpp │ │ │ ├── arm_register_layout64_t.hpp │ │ │ ├── arm_register_layout_t.hpp │ │ │ ├── arm_register_params_t.hpp │ │ │ ├── arrangement_based_view_state_t.hpp │ │ │ ├── array_info_t.hpp │ │ │ ├── array_of_guids_t.hpp │ │ │ ├── assembly_file_detailed_information_t.hpp │ │ │ ├── assembly_storage_map_resolution_callback_data_get_root_t.hpp │ │ │ ├── assembly_storage_map_resolution_callback_data_resolution_beginning_t.hpp │ │ │ ├── assembly_storage_map_resolution_callback_data_resolution_ending_t.hpp │ │ │ ├── assembly_storage_map_resolution_callback_data_resolution_successful_t.hpp │ │ │ ├── assembly_storage_map_resolution_callback_data_t.hpp │ │ │ ├── assembly_version_t.hpp │ │ │ ├── assemblymetadata_t.hpp │ │ │ ├── asta_incoming_call_data_t.hpp │ │ │ ├── asta_incoming_call_list_t.hpp │ │ │ ├── asta_state_t.hpp │ │ │ ├── asta_test_mode_flags_t.hpp │ │ │ ├── asta_timed_out_call_info_t.hpp │ │ │ ├── asta_wait_context_t.hpp │ │ │ ├── asta_wait_satisfied_reason_t.hpp │ │ │ ├── asta_wait_window_message_dispatch_t.hpp │ │ │ ├── asta_work_priority_t.hpp │ │ │ ├── async_action_completed_handler_facade_t.hpp │ │ │ ├── async_action_facade_t.hpp │ │ │ ├── async_client_call_retry_context_t.hpp │ │ │ ├── async_com_client_call_t.hpp │ │ │ ├── async_com_server_call_t.hpp │ │ │ ├── async_com_stub_call_t.hpp │ │ │ ├── async_delegate_storage_t.hpp │ │ │ ├── async_duplicate_extents_status_t.hpp │ │ │ ├── async_i_advise_sink2_t.hpp │ │ │ ├── async_i_advise_sink2_vtbl_t.hpp │ │ │ ├── async_i_advise_sink_t.hpp │ │ │ ├── async_i_advise_sink_vtbl_t.hpp │ │ │ ├── async_i_multi_qi_t.hpp │ │ │ ├── async_i_pipe_byte_t.hpp │ │ │ ├── async_i_pipe_double_t.hpp │ │ │ ├── async_i_pipe_long_t.hpp │ │ │ ├── async_i_rem_unknown2_t.hpp │ │ │ ├── async_i_rem_unknown_t.hpp │ │ │ ├── async_i_unknown_t.hpp │ │ │ ├── async_operation_storage_t.hpp │ │ │ ├── async_status_t.hpp │ │ │ ├── atom_basic_information_t.hpp │ │ │ ├── atom_information_class_t.hpp │ │ │ ├── atom_table_information_t.hpp │ │ │ ├── authenticode_extra_cert_chain_policy_para_t.hpp │ │ │ ├── authenticode_extra_cert_chain_policy_status_t.hpp │ │ │ ├── authenticode_ts_extra_cert_chain_policy_para_t.hpp │ │ │ ├── auto_blob_t.hpp │ │ │ ├── auto_net_trace_activity_t.hpp │ │ │ ├── avrf_client_id_wow64_t.hpp │ │ │ ├── avrf_memory_range_t.hpp │ │ │ ├── avrf_mode_flags_t.hpp │ │ │ ├── avrf_process_handle_tracing_entry_wow64_t.hpp │ │ │ ├── avrf_process_handle_tracing_query_wow64_t.hpp │ │ │ ├── b_crypt_buffer_desc_t.hpp │ │ │ ├── b_crypt_buffer_t.hpp │ │ │ ├── bcrypt_algorithm_identifier_t.hpp │ │ │ ├── bcrypt_authenticated_cipher_mode_info_t.hpp │ │ │ ├── bcrypt_dh_key_blob_t.hpp │ │ │ ├── bcrypt_dh_parameter_header_t.hpp │ │ │ ├── bcrypt_dsa_key_blob_t.hpp │ │ │ ├── bcrypt_dsa_key_blob_v2_t.hpp │ │ │ ├── bcrypt_dsa_parameter_header_t.hpp │ │ │ ├── bcrypt_dsa_parameter_header_v2_t.hpp │ │ │ ├── bcrypt_ecc_curve_names_t.hpp │ │ │ ├── bcrypt_eccfullkey_blob_t.hpp │ │ │ ├── bcrypt_ecckey_blob_t.hpp │ │ │ ├── bcrypt_hash_operation_type_t.hpp │ │ │ ├── bcrypt_interface_version_t.hpp │ │ │ ├── bcrypt_key_blob_t.hpp │ │ │ ├── bcrypt_key_data_blob_header_t.hpp │ │ │ ├── bcrypt_key_lengths_struct_t.hpp │ │ │ ├── bcrypt_multi_hash_operation_t.hpp │ │ │ ├── bcrypt_multi_object_length_struct_t.hpp │ │ │ ├── bcrypt_multi_operation_type_t.hpp │ │ │ ├── bcrypt_oaep_padding_info_t.hpp │ │ │ ├── bcrypt_oid_list_t.hpp │ │ │ ├── bcrypt_oid_t.hpp │ │ │ ├── bcrypt_pkcs1_padding_info_t.hpp │ │ │ ├── bcrypt_provider_name_t.hpp │ │ │ ├── bcrypt_pss_padding_info_t.hpp │ │ │ ├── bcrypt_rsakey_blob_t.hpp │ │ │ ├── binary_state_t.hpp │ │ │ ├── bitmapv4header_t.hpp │ │ │ ├── bitmapv5header_t.hpp │ │ │ ├── blendfunction_t.hpp │ │ │ ├── blocking_reason_t.hpp │ │ │ ├── break_on_status_buffer_t.hpp │ │ │ ├── bridge_sta_state_t.hpp │ │ │ ├── bsminfo_t.hpp │ │ │ ├── bsp_catalog_scm_t.hpp │ │ │ ├── bstr_t.hpp │ │ │ ├── built_in_class_cache_t.hpp │ │ │ ├── bulk_security_test_data_t.hpp │ │ │ ├── by_handle_file_information_t.hpp │ │ │ ├── byte_blob_t.hpp │ │ │ ├── byte_sizedarr_t.hpp │ │ │ ├── c2_security_t.hpp │ │ │ ├── c_abstract_marshaling_stream_t.hpp │ │ │ ├── c_abstract_stream_t.hpp │ │ │ ├── c_activatable_class_id_hash_table_t.hpp │ │ │ ├── c_activatable_class_registration_t.hpp │ │ │ ├── c_activation_filter_context_t.hpp │ │ │ ├── c_activation_store_t.hpp │ │ │ ├── c_addr_control_t.hpp │ │ │ ├── c_addr_exclusion_list_t.hpp │ │ │ ├── c_agg_id_t.hpp │ │ │ ├── c_agile_reference_marshaled_t.hpp │ │ │ ├── c_agile_reference_to_agile_object_t.hpp │ │ │ ├── c_agile_reference_via_git_t.hpp │ │ │ ├── c_apartment_activator_t.hpp │ │ │ ├── c_apartment_hash_table_t.hpp │ │ │ ├── c_apt_call_ctrl_t.hpp │ │ │ ├── c_array_f_value_t.hpp │ │ │ ├── c_assembly_ref_enumerator_t.hpp │ │ │ ├── c_async_call_t.hpp │ │ │ ├── c_async_state_machine_t.hpp │ │ │ ├── c_async_unknown_mgr_t.hpp │ │ │ ├── c_atom_t.hpp │ │ │ ├── c_auth_info_t.hpp │ │ │ ├── c_base_call_t.hpp │ │ │ ├── c_base_interface_data_marshaling_stream_t.hpp │ │ │ ├── c_base_m_interface_pointer_marshaling_stream_t.hpp │ │ │ ├── c_base_marshaling_stream_on_buffer_t.hpp │ │ │ ├── c_bool_t.hpp │ │ │ ├── c_buffer_t.hpp │ │ │ ├── c_cache_t.hpp │ │ │ ├── c_call_table_t.hpp │ │ │ ├── c_channel_handle_t.hpp │ │ │ ├── c_channel_object_t.hpp │ │ │ ├── c_class_cache_t.hpp │ │ │ ├── c_cli_modal_loop_t.hpp │ │ │ ├── c_client_call_mgr_t.hpp │ │ │ ├── c_client_call_t.hpp │ │ │ ├── c_client_channel_t.hpp │ │ │ ├── c_client_context_activator_t.hpp │ │ │ ├── c_client_security_t.hpp │ │ │ ├── c_com_activator_t.hpp │ │ │ ├── c_com_apartment_t.hpp │ │ │ ├── c_com_catalog_t.hpp │ │ │ ├── c_com_class_info_t.hpp │ │ │ ├── c_com_no_class_info_t.hpp │ │ │ ├── c_com_process_info_t.hpp │ │ │ ├── c_com_reg_catalog_t.hpp │ │ │ ├── c_com_sx_s_catalog_t.hpp │ │ │ ├── c_com_sx_s_class_info_t.hpp │ │ │ ├── c_context_life_t.hpp │ │ │ ├── c_context_prop_list_t.hpp │ │ │ ├── c_context_switcher_t.hpp │ │ │ ├── c_continue_t.hpp │ │ │ ├── c_ctx_call_t.hpp │ │ │ ├── c_ctx_chnl_t.hpp │ │ │ ├── c_ctx_com_chnl_t.hpp │ │ │ ├── c_ctx_connection_manager_t.hpp │ │ │ ├── c_ctx_hook_t.hpp │ │ │ ├── c_ctx_prop_hash_table_t.hpp │ │ │ ├── c_ctx_table_t.hpp │ │ │ ├── c_ctx_uuid_hash_table_t.hpp │ │ │ ├── c_custom_attribute_enumerator_t.hpp │ │ │ ├── c_custom_properties_t.hpp │ │ │ ├── c_dbg_guid_str_t.hpp │ │ │ ├── c_debug_channel_hook_t.hpp │ │ │ ├── c_debug_event_fire_cf_t.hpp │ │ │ ├── c_debug_event_fire_t.hpp │ │ │ ├── c_dest_object_t.hpp │ │ │ ├── c_dest_object_wrapper_t.hpp │ │ │ ├── c_dll_host_t.hpp │ │ │ ├── c_dual_string_array_t.hpp │ │ │ ├── c_eff_perms_cache_luid_t.hpp │ │ │ ├── c_endpoint_entry_t.hpp │ │ │ ├── c_endpoints_table_t.hpp │ │ │ ├── c_enum_context_props_t.hpp │ │ │ ├── c_error_channel_hook_t.hpp │ │ │ ├── c_error_object_t.hpp │ │ │ ├── c_event_cache_t.hpp │ │ │ ├── c_event_enumerator_t.hpp │ │ │ ├── c_exe_server_registration_t.hpp │ │ │ ├── c_ext_hash_table_t.hpp │ │ │ ├── c_extension_all_packages_iterator_t.hpp │ │ │ ├── c_extension_catalog_t.hpp │ │ │ ├── c_extension_main_and_optional_packages_iterator_t.hpp │ │ │ ├── c_extension_packages_iterator_t.hpp │ │ │ ├── c_extension_registration_t.hpp │ │ │ ├── c_extension_registrations_iterator_t.hpp │ │ │ ├── c_fast_bh_t.hpp │ │ │ ├── c_fm_ctrl_unknown_t.hpp │ │ │ ├── c_free_marshaler_t.hpp │ │ │ ├── c_global_options_t.hpp │ │ │ ├── c_guid_str_t.hpp │ │ │ ├── c_hash_table_t.hpp │ │ │ ├── c_hwnd_t.hpp │ │ │ ├── c_in_proc_activatable_class_registration_t.hpp │ │ │ ├── c_inproc_system_activator_t.hpp │ │ │ ├── c_interface_impl_enumerator_t.hpp │ │ │ ├── c_internal_page_allocator_t.hpp │ │ │ ├── c_list_element_t.hpp │ │ │ ├── c_list_element_test_adapter_t.hpp │ │ │ ├── c_local_machine_names_t.hpp │ │ │ ├── c_lock2_t.hpp │ │ │ ├── c_machine_global_object_table_t.hpp │ │ │ ├── c_machine_names_helper_t.hpp │ │ │ ├── c_malloc_t.hpp │ │ │ ├── c_manual_reset_event_t.hpp │ │ │ ├── c_map_key_to_value_t.hpp │ │ │ ├── c_marshaling_stream_on_user_marshal_callback_t.hpp │ │ │ ├── c_mem_stm_t.hpp │ │ │ ├── c_member_ref_enumerator_t.hpp │ │ │ ├── c_message_call_t.hpp │ │ │ ├── c_method_enumerator_t.hpp │ │ │ ├── c_method_parameter_enumerator_t.hpp │ │ │ ├── c_mgot_item_t.hpp │ │ │ ├── c_multi_guid_hash_table_t.hpp │ │ │ ├── c_mutex_sem2_t.hpp │ │ │ ├── c_name_hash_table_t.hpp │ │ │ ├── c_ndr_stream_t.hpp │ │ │ ├── c_no_enum_t.hpp │ │ │ ├── c_no_extension_registrations_iterator_t.hpp │ │ │ ├── c_null_walker_t.hpp │ │ │ ├── c_obj_server_t.hpp │ │ │ ├── c_object_context_t.hpp │ │ │ ├── c_ole32_debug_event_fire_t.hpp │ │ │ ├── c_ole_condition_variable_t.hpp │ │ │ ├── c_ole_static_lock_t.hpp │ │ │ ├── c_ole_static_mutex_sem_t.hpp │ │ │ ├── c_ole_tls_t.hpp │ │ │ ├── c_out_of_proc_activatable_class_registration_t.hpp │ │ │ ├── c_packaged_com_catalog_t.hpp │ │ │ ├── c_page_allocator_t.hpp │ │ │ ├── c_per_interface_ps_factory_t.hpp │ │ │ ├── c_pipe_proxy_imp_t.hpp │ │ │ ├── c_pipe_ps_factory_t.hpp │ │ │ ├── c_plex_t.hpp │ │ │ ├── c_pointer_hash_table_t.hpp │ │ │ ├── c_policy_set_t.hpp │ │ │ ├── c_priv_alloc_t.hpp │ │ │ ├── c_private_hive_catalog_t.hpp │ │ │ ├── c_proc_gen_t.hpp │ │ │ ├── c_process_activator_t.hpp │ │ │ ├── c_process_secret_t.hpp │ │ │ ├── c_property_enumerator_t.hpp │ │ │ ├── c_punk_for_release_t.hpp │ │ │ ├── c_random_number_generator_t.hpp │ │ │ ├── c_read_interface_data_from_internal_source_marshaling_stream_t.hpp │ │ │ ├── c_read_interface_data_with_source_attributes_marshaling_stream_t.hpp │ │ │ ├── c_read_m_interface_pointer_with_source_attributes_marshaling_stream_t.hpp │ │ │ ├── c_read_with_source_attributes_marshaling_stream_on_buffer_t.hpp │ │ │ ├── c_ref_cache_t.hpp │ │ │ ├── c_ref_mutex_auto_lock_t.hpp │ │ │ ├── c_ref_mutex_sem_t.hpp │ │ │ ├── c_remote_unknown_t.hpp │ │ │ ├── c_restricted_error_t.hpp │ │ │ ├── c_restricted_error_wrapper_t.hpp │ │ │ ├── c_rot_hint_table_t.hpp │ │ │ ├── c_rpc_call_t.hpp │ │ │ ├── c_rpc_helper_t.hpp │ │ │ ├── c_rpc_options_t.hpp │ │ │ ├── c_rpc_resolver_t.hpp │ │ │ ├── c_rpc_thread_cache_t.hpp │ │ │ ├── c_rpc_thread_t.hpp │ │ │ ├── c_server_channel_t.hpp │ │ │ ├── c_server_context_activator_t.hpp │ │ │ ├── c_server_security_t.hpp │ │ │ ├── c_sid_str_t.hpp │ │ │ ├── c_sm_allocator_t.hpp │ │ │ ├── c_split_qi_t.hpp │ │ │ ├── c_spy_table_t.hpp │ │ │ ├── c_srv_call_state_t.hpp │ │ │ ├── c_static_marshaler_t.hpp │ │ │ ├── c_static_read_lock_t.hpp │ │ │ ├── c_static_wrapper_t.hpp │ │ │ ├── c_static_write_lock_t.hpp │ │ │ ├── c_std_class_factory_t.hpp │ │ │ ├── c_std_event_t.hpp │ │ │ ├── c_std_identity_t.hpp │ │ │ ├── c_std_marshal_t.hpp │ │ │ ├── c_std_proxy_buffer_map_t.hpp │ │ │ ├── c_std_wrapper_t.hpp │ │ │ ├── c_stm_buf_read_t.hpp │ │ │ ├── c_stm_buf_t.hpp │ │ │ ├── c_stm_buf_write_t.hpp │ │ │ ├── c_stream_on_buffer_t.hpp │ │ │ ├── c_string_hash_table_t.hpp │ │ │ ├── c_surrogate_activator_t.hpp │ │ │ ├── c_surrogate_process_activator_t.hpp │ │ │ ├── c_surrogated_object_list_t.hpp │ │ │ ├── c_suspend_monitor_t.hpp │ │ │ ├── c_sync_client_call_t.hpp │ │ │ ├── c_synchronize_container_t.hpp │ │ │ ├── c_system_registry_catalog_t.hpp │ │ │ ├── c_thread_stack_t.hpp │ │ │ ├── c_tmp_mk_eq_buf_t.hpp │ │ │ ├── c_type_def_enumerator_t.hpp │ │ │ ├── c_type_factory_t.hpp │ │ │ ├── c_type_field_enumerator_t.hpp │ │ │ ├── c_type_gen_t.hpp │ │ │ ├── c_type_marshal_t.hpp │ │ │ ├── c_type_ref_enumerator_t.hpp │ │ │ ├── c_user_marshal_info_t.hpp │ │ │ ├── c_verifier_stack_data_t.hpp │ │ │ ├── c_verifier_tls_data_t.hpp │ │ │ ├── c_win_rt_activation_store_catalog_t.hpp │ │ │ ├── c_win_rt_apartment_activator_t.hpp │ │ │ ├── c_winrt_async_client_call_channel_t.hpp │ │ │ ├── c_winrt_async_server_call_channel_t.hpp │ │ │ ├── c_world_security_descriptor_t.hpp │ │ │ ├── c_write_interface_data_marshaling_stream_t.hpp │ │ │ ├── c_write_marshaling_stream_on_buffer_t.hpp │ │ │ ├── cached_call_event_handle_traits_t.hpp │ │ │ ├── cached_call_event_t.hpp │ │ │ ├── cached_event_handle_traits_t.hpp │ │ │ ├── cached_event_t.hpp │ │ │ ├── call_chain_info_for_local_this_t.hpp │ │ │ ├── call_entry_buffer_t.hpp │ │ │ ├── call_frame_t.hpp │ │ │ ├── call_object_occurrence_or_state_variable_t.hpp │ │ │ ├── caller_info_t.hpp │ │ │ ├── caller_locality_indicator_t.hpp │ │ │ ├── callframe_free_t.hpp │ │ │ ├── callframe_null_t.hpp │ │ │ ├── callframe_walk_t.hpp │ │ │ ├── callsource_t.hpp │ │ │ ├── careful_buffer_reader_t.hpp │ │ │ ├── carefully_query_new_interface_context_t.hpp │ │ │ ├── cast_method_t.hpp │ │ │ ├── causality_control_callback_t.hpp │ │ │ ├── ccom_surrogate_t.hpp │ │ │ ├── cdword_hash_table_t.hpp │ │ │ ├── cee_section_attr_t.hpp │ │ │ ├── cee_section_reloc_extra_t.hpp │ │ │ ├── cee_section_reloc_type_t.hpp │ │ │ ├── cert_access_description_t.hpp │ │ │ ├── cert_alt_name_entry_t.hpp │ │ │ ├── cert_alt_name_info_t.hpp │ │ │ ├── cert_authority_info_access_t.hpp │ │ │ ├── cert_authority_key_id2_info_t.hpp │ │ │ ├── cert_authority_key_id_info_t.hpp │ │ │ ├── cert_basic_constraints2_info_t.hpp │ │ │ ├── cert_basic_constraints_info_t.hpp │ │ │ ├── cert_biometric_data_t.hpp │ │ │ ├── cert_biometric_ext_info_t.hpp │ │ │ ├── cert_chain_context_t.hpp │ │ │ ├── cert_chain_element_t.hpp │ │ │ ├── cert_chain_engine_config_t.hpp │ │ │ ├── cert_chain_find_by_issuer_para_t.hpp │ │ │ ├── cert_chain_para_t.hpp │ │ │ ├── cert_chain_policy_para_t.hpp │ │ │ ├── cert_chain_policy_status_t.hpp │ │ │ ├── cert_chain_t.hpp │ │ │ ├── cert_context_t.hpp │ │ │ ├── cert_create_context_para_t.hpp │ │ │ ├── cert_crl_context_pair_t.hpp │ │ │ ├── cert_dh_parameters_t.hpp │ │ │ ├── cert_dss_parameters_t.hpp │ │ │ ├── cert_ecc_signature_t.hpp │ │ │ ├── cert_extension_t.hpp │ │ │ ├── cert_extensions_t.hpp │ │ │ ├── cert_fortezza_data_prop_t.hpp │ │ │ ├── cert_general_subtree_t.hpp │ │ │ ├── cert_hashed_url_t.hpp │ │ │ ├── cert_id_t.hpp │ │ │ ├── cert_info_t.hpp │ │ │ ├── cert_issuer_serial_number_t.hpp │ │ │ ├── cert_key_attributes_info_t.hpp │ │ │ ├── cert_key_context_t.hpp │ │ │ ├── cert_key_type_t.hpp │ │ │ ├── cert_key_usage_restriction_info_t.hpp │ │ │ ├── cert_keygen_request_info_t.hpp │ │ │ ├── cert_ldap_store_opened_para_t.hpp │ │ │ ├── cert_logotype_audio_info_t.hpp │ │ │ ├── cert_logotype_audio_t.hpp │ │ │ ├── cert_logotype_data_t.hpp │ │ │ ├── cert_logotype_details_t.hpp │ │ │ ├── cert_logotype_ext_info_t.hpp │ │ │ ├── cert_logotype_image_info_t.hpp │ │ │ ├── cert_logotype_image_t.hpp │ │ │ ├── cert_logotype_info_t.hpp │ │ │ ├── cert_logotype_reference_t.hpp │ │ │ ├── cert_name_constraints_info_t.hpp │ │ │ ├── cert_name_info_t.hpp │ │ │ ├── cert_name_value_t.hpp │ │ │ ├── cert_or_crl_blob_t.hpp │ │ │ ├── cert_or_crl_bundle_t.hpp │ │ │ ├── cert_other_logotype_info_t.hpp │ │ │ ├── cert_other_name_t.hpp │ │ │ ├── cert_pair_t.hpp │ │ │ ├── cert_physical_store_info_t.hpp │ │ │ ├── cert_policies_info_t.hpp │ │ │ ├── cert_policy95_qualifier1_t.hpp │ │ │ ├── cert_policy_constraints_info_t.hpp │ │ │ ├── cert_policy_id_t.hpp │ │ │ ├── cert_policy_info_t.hpp │ │ │ ├── cert_policy_mapping_t.hpp │ │ │ ├── cert_policy_mappings_info_t.hpp │ │ │ ├── cert_policy_qualifier_info_t.hpp │ │ │ ├── cert_policy_qualifier_notice_reference_t.hpp │ │ │ ├── cert_policy_qualifier_user_notice_t.hpp │ │ │ ├── cert_private_key_validity_t.hpp │ │ │ ├── cert_public_key_info_t.hpp │ │ │ ├── cert_qc_statement_t.hpp │ │ │ ├── cert_qc_statements_ext_info_t.hpp │ │ │ ├── cert_rdn_attr_t.hpp │ │ │ ├── cert_rdn_t.hpp │ │ │ ├── cert_registry_store_client_gpt_para_t.hpp │ │ │ ├── cert_registry_store_roaming_para_t.hpp │ │ │ ├── cert_request_info_t.hpp │ │ │ ├── cert_revocation_chain_para_t.hpp │ │ │ ├── cert_revocation_crl_info_t.hpp │ │ │ ├── cert_revocation_info_t.hpp │ │ │ ├── cert_revocation_para_t.hpp │ │ │ ├── cert_revocation_status_t.hpp │ │ │ ├── cert_select_chain_para_t.hpp │ │ │ ├── cert_select_criteria_t.hpp │ │ │ ├── cert_server_ocsp_response_context_t.hpp │ │ │ ├── cert_server_ocsp_response_open_para_t.hpp │ │ │ ├── cert_signed_content_info_t.hpp │ │ │ ├── cert_simple_chain_t.hpp │ │ │ ├── cert_store_prov_find_info_t.hpp │ │ │ ├── cert_store_prov_info_t.hpp │ │ │ ├── cert_strong_sign_para_t.hpp │ │ │ ├── cert_strong_sign_serialized_info_t.hpp │ │ │ ├── cert_supported_algorithm_info_t.hpp │ │ │ ├── cert_system_store_info_t.hpp │ │ │ ├── cert_system_store_relocate_para_t.hpp │ │ │ ├── cert_template_ext_t.hpp │ │ │ ├── cert_tpm_specification_info_t.hpp │ │ │ ├── cert_trust_list_info_t.hpp │ │ │ ├── cert_trust_status_t.hpp │ │ │ ├── cert_usage_match_t.hpp │ │ │ ├── cert_x942_dh_parameters_t.hpp │ │ │ ├── cert_x942_dh_validation_params_t.hpp │ │ │ ├── cf_access_control_t.hpp │ │ │ ├── cfg_call_target_info_t.hpp │ │ │ ├── cfg_call_target_list_information_t.hpp │ │ │ ├── cgip_message_param_t.hpp │ │ │ ├── cgip_table_t.hpp │ │ │ ├── channel_side_t.hpp │ │ │ ├── char_info_t.hpp │ │ │ ├── chstring_util_t.hpp │ │ │ ├── cid_object_t.hpp │ │ │ ├── cipid_table_t.hpp │ │ │ ├── claim_security_attribute_fqbn_value_t.hpp │ │ │ ├── claim_security_attribute_octet_string_value_t.hpp │ │ │ ├── claim_security_attribute_relative_v1_t.hpp │ │ │ ├── claim_security_attribute_v1_t.hpp │ │ │ ├── claim_security_attributes_information_t.hpp │ │ │ ├── class_id_machine_registration_entry_properties_t.hpp │ │ │ ├── class_id_machine_registration_entry_property_flags_t.hpp │ │ │ ├── class_id_machine_registration_entry_property_index_t.hpp │ │ │ ├── class_id_registration_entry_properties_t.hpp │ │ │ ├── class_id_registration_entry_property_flags_t.hpp │ │ │ ├── class_id_registration_entry_property_index_t.hpp │ │ │ ├── class_info_candidate_t.hpp │ │ │ ├── classic_event_id_t.hpp │ │ │ ├── classic_sta_state_t.hpp │ │ │ ├── cli_async_call_state_t.hpp │ │ │ ├── client_call_retry_context_t.hpp │ │ │ ├── client_call_return_t.hpp │ │ │ ├── client_call_t.hpp │ │ │ ├── client_call_tracing_info_t.hpp │ │ │ ├── cloud_command_t.hpp │ │ │ ├── cloud_data_transfer_t.hpp │ │ │ ├── cloud_property_blob_context_t.hpp │ │ │ ├── cloud_provider_get_external_info_t.hpp │ │ │ ├── cloud_provider_message_t.hpp │ │ │ ├── cloud_provider_set_external_info_t.hpp │ │ │ ├── cluster_range_t.hpp │ │ │ ├── cmc_add_attributes_info_t.hpp │ │ │ ├── cmc_add_extensions_info_t.hpp │ │ │ ├── cmc_data_info_t.hpp │ │ │ ├── cmc_pend_info_t.hpp │ │ │ ├── cmc_response_info_t.hpp │ │ │ ├── cmc_status_info_t.hpp │ │ │ ├── cmc_tagged_attribute_t.hpp │ │ │ ├── cmc_tagged_cert_request_t.hpp │ │ │ ├── cmc_tagged_content_info_t.hpp │ │ │ ├── cmc_tagged_other_msg_t.hpp │ │ │ ├── cmc_tagged_request_t.hpp │ │ │ ├── cmid_table_t.hpp │ │ │ ├── cmipid_hash_table_t.hpp │ │ │ ├── cmre_inner_unknown_t.hpp │ │ │ ├── cms_dh_key_info_t.hpp │ │ │ ├── cms_key_info_t.hpp │ │ │ ├── cmsg_cms_recipient_info_t.hpp │ │ │ ├── cmsg_cms_signer_info_t.hpp │ │ │ ├── cmsg_cng_content_decrypt_info_t.hpp │ │ │ ├── cmsg_content_encrypt_info_t.hpp │ │ │ ├── cmsg_ctrl_add_signer_unauth_attr_para_t.hpp │ │ │ ├── cmsg_ctrl_decrypt_para_t.hpp │ │ │ ├── cmsg_ctrl_del_signer_unauth_attr_para_t.hpp │ │ │ ├── cmsg_ctrl_key_agree_decrypt_para_t.hpp │ │ │ ├── cmsg_ctrl_key_trans_decrypt_para_t.hpp │ │ │ ├── cmsg_ctrl_mail_list_decrypt_para_t.hpp │ │ │ ├── cmsg_ctrl_verify_signature_ex_para_t.hpp │ │ │ ├── cmsg_encrypted_encode_info_t.hpp │ │ │ ├── cmsg_enveloped_encode_info_t.hpp │ │ │ ├── cmsg_hashed_encode_info_t.hpp │ │ │ ├── cmsg_key_agree_encrypt_info_t.hpp │ │ │ ├── cmsg_key_agree_key_encrypt_info_t.hpp │ │ │ ├── cmsg_key_agree_recipient_encode_info_t.hpp │ │ │ ├── cmsg_key_agree_recipient_info_t.hpp │ │ │ ├── cmsg_key_trans_encrypt_info_t.hpp │ │ │ ├── cmsg_key_trans_recipient_encode_info_t.hpp │ │ │ ├── cmsg_key_trans_recipient_info_t.hpp │ │ │ ├── cmsg_mail_list_encrypt_info_t.hpp │ │ │ ├── cmsg_mail_list_recipient_encode_info_t.hpp │ │ │ ├── cmsg_mail_list_recipient_info_t.hpp │ │ │ ├── cmsg_rc2_aux_info_t.hpp │ │ │ ├── cmsg_rc4_aux_info_t.hpp │ │ │ ├── cmsg_recipient_encode_info_t.hpp │ │ │ ├── cmsg_recipient_encrypted_key_encode_info_t.hpp │ │ │ ├── cmsg_recipient_encrypted_key_info_t.hpp │ │ │ ├── cmsg_signed_and_enveloped_encode_info_t.hpp │ │ │ ├── cmsg_signed_encode_info_t.hpp │ │ │ ├── cmsg_signer_encode_info_t.hpp │ │ │ ├── cmsg_signer_info_t.hpp │ │ │ ├── cmsg_sp3_compatible_aux_info_t.hpp │ │ │ ├── cmsg_stream_info_t.hpp │ │ │ ├── cnd_internal_imp_t.hpp │ │ │ ├── co_access_control_t.hpp │ │ │ ├── co_device_catalog_cookie_t.hpp │ │ │ ├── co_get_standard_marshal_in_progress_t.hpp │ │ │ ├── co_get_treat_as_class_internal_flags_t.hpp │ │ │ ├── co_marshaling_context_attributes_t.hpp │ │ │ ├── co_mta_usage_cookie_t.hpp │ │ │ ├── co_process_events_context_t.hpp │ │ │ ├── co_task_mem_alloc_allocator_t.hpp │ │ │ ├── coauthidentity_t.hpp │ │ │ ├── coauthinfo_t.hpp │ │ │ ├── coid_hash_table_t.hpp │ │ │ ├── coid_table_t.hpp │ │ │ ├── cole_drag_drop_helper_t.hpp │ │ │ ├── com_call_locality_t.hpp │ │ │ ├── com_call_marshaling_direction_t.hpp │ │ │ ├── com_call_marshaling_locality_t.hpp │ │ │ ├── com_call_trace_activity_t.hpp │ │ │ ├── com_catalog_cache_section_t.hpp │ │ │ ├── com_class_registration_entry_properties_t.hpp │ │ │ ├── com_class_registration_entry_property_flags_t.hpp │ │ │ ├── com_class_registration_entry_property_index_t.hpp │ │ │ ├── com_error_t.hpp │ │ │ ├── com_interface_registration_entry_properties_t.hpp │ │ │ ├── com_interface_registration_entry_property_flags_t.hpp │ │ │ ├── com_interface_registration_entry_property_index_t.hpp │ │ │ ├── com_lock_order_t.hpp │ │ │ ├── com_package_for_user_entry_properties_t.hpp │ │ │ ├── com_package_for_user_entry_property_index_t.hpp │ │ │ ├── com_package_install_order_entry_properties_t.hpp │ │ │ ├── com_package_install_order_entry_property_index_t.hpp │ │ │ ├── com_prog_id_registration_entry_properties_t.hpp │ │ │ ├── com_prog_id_registration_entry_property_flags_t.hpp │ │ │ ├── com_prog_id_registration_entry_property_index_t.hpp │ │ │ ├── com_proxy_stub_registration_entry_properties_t.hpp │ │ │ ├── com_proxy_stub_registration_entry_property_flags_t.hpp │ │ │ ├── com_proxy_stub_registration_entry_property_index_t.hpp │ │ │ ├── com_ptr_deleter_t.hpp │ │ │ ├── com_server_registration_entry_properties_t.hpp │ │ │ ├── com_server_registration_entry_property_flags_t.hpp │ │ │ ├── com_server_registration_entry_property_index_t.hpp │ │ │ ├── com_telemetry_provider_t.hpp │ │ │ ├── com_telemetry_t.hpp │ │ │ ├── com_tls_flags_t.hpp │ │ │ ├── com_trace_t.hpp │ │ │ ├── com_treat_as_class_registration_entry_properties_t.hpp │ │ │ ├── com_treat_as_class_registration_entry_property_flags_t.hpp │ │ │ ├── com_treat_as_class_registration_entry_property_index_t.hpp │ │ │ ├── com_type_lib_version_registration_entry_properties_t.hpp │ │ │ ├── com_type_lib_version_registration_entry_property_flags_t.hpp │ │ │ ├── com_type_lib_version_registration_entry_property_index_t.hpp │ │ │ ├── com_verifier_settings_t.hpp │ │ │ ├── com_win_rt_activation_properties_data_t.hpp │ │ │ ├── com_win_rt_activation_properties_t.hpp │ │ │ ├── comm_fault_offsets_t.hpp │ │ │ ├── commconfig_t.hpp │ │ │ ├── commprop_t.hpp │ │ │ ├── commtimeouts_t.hpp │ │ │ ├── comparison_method_t.hpp │ │ │ ├── compat_cache_flags_t.hpp │ │ │ ├── compatibility_context_element_t.hpp │ │ │ ├── compilation_relaxations_enum_t.hpp │ │ │ ├── complex_t.hpp │ │ │ ├── component_filter_t.hpp │ │ │ ├── composition_handle_wrapper_api_types_t.hpp │ │ │ ├── compound_access_allowed_ace_t.hpp │ │ │ ├── computer_name_format_t.hpp │ │ │ ├── comstat_t.hpp │ │ │ ├── confirmsafety_t.hpp │ │ │ ├── connectdlgstructa_t.hpp │ │ │ ├── connectdlgstructw_t.hpp │ │ │ ├── console_cursor_info_t.hpp │ │ │ ├── console_font_info_t.hpp │ │ │ ├── console_font_infoex_t.hpp │ │ │ ├── console_history_info_t.hpp │ │ │ ├── console_readconsole_control_t.hpp │ │ │ ├── console_screen_buffer_info_t.hpp │ │ │ ├── console_screen_buffer_infoex_t.hpp │ │ │ ├── console_selection_info_t.hpp │ │ │ ├── container_extent_array_t.hpp │ │ │ ├── container_extent_id_t.hpp │ │ │ ├── container_extent_t.hpp │ │ │ ├── container_id_helper_t.hpp │ │ │ ├── container_protocol_version_t.hpp │ │ │ ├── container_root_info_input_t.hpp │ │ │ ├── container_root_info_output_t.hpp │ │ │ ├── container_synchronization_t.hpp │ │ │ ├── container_volume_state_t.hpp │ │ │ ├── containerthat_t.hpp │ │ │ ├── containerthis_t.hpp │ │ │ ├── containerversion_for_negotiation_t.hpp │ │ │ ├── containerversion_t.hpp │ │ │ ├── context_chunk_t.hpp │ │ │ ├── context_ex_t.hpp │ │ │ ├── context_handle_element_t.hpp │ │ │ ├── context_info_t.hpp │ │ │ ├── coord_t.hpp │ │ │ ├── copyfile2_copy_phase_t.hpp │ │ │ ├── copyfile2_extended_parameters_t.hpp │ │ │ ├── copyfile2_extended_parameters_v2_t.hpp │ │ │ ├── copyfile2_message_action_t.hpp │ │ │ ├── copyfile2_message_t.hpp │ │ │ ├── copyfile2_message_type_t.hpp │ │ │ ├── cor_arg_type_t.hpp │ │ │ ├── cor_assembly_flags_t.hpp │ │ │ ├── cor_attribute_targets_t.hpp │ │ │ ├── cor_calling_convention_t.hpp │ │ │ ├── cor_check_duplicates_for_t.hpp │ │ │ ├── cor_decl_security_t.hpp │ │ │ ├── cor_element_type_t.hpp │ │ │ ├── cor_error_if_emit_out_of_order_t.hpp │ │ │ ├── cor_event_attr_t.hpp │ │ │ ├── cor_exception_flag_t.hpp │ │ │ ├── cor_field_attr_t.hpp │ │ │ ├── cor_field_offset_t.hpp │ │ │ ├── cor_file_flags_t.hpp │ │ │ ├── cor_file_mapping_t.hpp │ │ │ ├── cor_generic_param_attr_t.hpp │ │ │ ├── cor_il_method_flags_t.hpp │ │ │ ├── cor_il_method_sect_t.hpp │ │ │ ├── cor_import_options_t.hpp │ │ │ ├── cor_linker_options_t.hpp │ │ │ ├── cor_local_ref_preservation_t.hpp │ │ │ ├── cor_manifest_resource_flags_t.hpp │ │ │ ├── cor_method_attr_t.hpp │ │ │ ├── cor_method_impl_t.hpp │ │ │ ├── cor_method_semantics_attr_t.hpp │ │ │ ├── cor_native_link_flags_t.hpp │ │ │ ├── cor_native_link_t.hpp │ │ │ ├── cor_native_link_type_t.hpp │ │ │ ├── cor_native_type_t.hpp │ │ │ ├── cor_notification_for_token_movement_t.hpp │ │ │ ├── cor_open_flags_t.hpp │ │ │ ├── cor_param_attr_t.hpp │ │ │ ├── cor_pe_kind_t.hpp │ │ │ ├── cor_pinvoke_map_t.hpp │ │ │ ├── cor_property_attr_t.hpp │ │ │ ├── cor_ref_to_def_check_t.hpp │ │ │ ├── cor_reg_flags_t.hpp │ │ │ ├── cor_save_size_t.hpp │ │ │ ├── cor_secattr_t.hpp │ │ │ ├── cor_serialization_type_t.hpp │ │ │ ├── cor_set_enc_t.hpp │ │ │ ├── cor_thread_safety_options_t.hpp │ │ │ ├── cor_token_type_t.hpp │ │ │ ├── cor_type_attr_t.hpp │ │ │ ├── cor_unmanaged_calling_convention_t.hpp │ │ │ ├── cor_validator_module_type_t.hpp │ │ │ ├── correlation_context_t.hpp │ │ │ ├── coserverinfo_t.hpp │ │ │ ├── coverage_module_info_t.hpp │ │ │ ├── coverage_module_request_t.hpp │ │ │ ├── coverage_modules_t.hpp │ │ │ ├── coverage_request_codes_t.hpp │ │ │ ├── coverage_section_header_t.hpp │ │ │ ├── coverage_unloaded_module_entry_t.hpp │ │ │ ├── coxid_table_t.hpp │ │ │ ├── cp_unk_list_t.hpp │ │ │ ├── cpid_hash_table_t.hpp │ │ │ ├── cpid_table_t.hpp │ │ │ ├── cpinfo_t.hpp │ │ │ ├── cpinfoex_a_t.hpp │ │ │ ├── cpinfoex_w_t.hpp │ │ │ ├── cps_hash_table_t.hpp │ │ │ ├── cps_table_t.hpp │ │ │ ├── cps_urls_t.hpp │ │ │ ├── cpu_config_record_t.hpp │ │ │ ├── cpu_set_information_type_t.hpp │ │ │ ├── create_package_dependency_options_t.hpp │ │ │ ├── create_process_debug_info_t.hpp │ │ │ ├── create_stack_trace_flags_t.hpp │ │ │ ├── create_thread_debug_info_t.hpp │ │ │ ├── create_usn_journal_data_t.hpp │ │ │ ├── createfile2_extended_parameters_t.hpp │ │ │ ├── crg_type_sizes_t.hpp │ │ │ ├── crif_table_t.hpp │ │ │ ├── crl_context_t.hpp │ │ │ ├── crl_dist_point_name_t.hpp │ │ │ ├── crl_dist_point_t.hpp │ │ │ ├── crl_dist_points_info_t.hpp │ │ │ ├── crl_entry_t.hpp │ │ │ ├── crl_find_issued_for_para_t.hpp │ │ │ ├── crl_info_t.hpp │ │ │ ├── crl_issuing_dist_point_t.hpp │ │ │ ├── crl_revocation_info_t.hpp │ │ │ ├── croid_table_t.hpp │ │ │ ├── cross_cert_dist_points_info_t.hpp │ │ │ ├── cross_container_behavior_t.hpp │ │ │ ├── crt_argv_mode_t.hpp │ │ │ ├── crt_double_t.hpp │ │ │ ├── crt_fast_encoded_nullptr_t.hpp │ │ │ ├── crt_float_t.hpp │ │ │ ├── crt_mem_block_header_t.hpp │ │ │ ├── crt_mem_state_t.hpp │ │ │ ├── crw_lock_t.hpp │ │ │ ├── crypt_3des_key_state_t.hpp │ │ │ ├── crypt_aes_128_key_state_t.hpp │ │ │ ├── crypt_aes_256_key_state_t.hpp │ │ │ ├── crypt_algorithm_identifier_t.hpp │ │ │ ├── crypt_async_retrieval_completion_t.hpp │ │ │ ├── crypt_attribute_t.hpp │ │ │ ├── crypt_attribute_type_value_t.hpp │ │ │ ├── crypt_attributes_t.hpp │ │ │ ├── crypt_bit_blob_t.hpp │ │ │ ├── crypt_blob_array_t.hpp │ │ │ ├── crypt_content_info_sequence_of_any_t.hpp │ │ │ ├── crypt_content_info_t.hpp │ │ │ ├── crypt_context_config_t.hpp │ │ │ ├── crypt_context_function_config_t.hpp │ │ │ ├── crypt_context_function_providers_t.hpp │ │ │ ├── crypt_context_functions_t.hpp │ │ │ ├── crypt_contexts_t.hpp │ │ │ ├── crypt_credentials_t.hpp │ │ │ ├── crypt_csp_provider_t.hpp │ │ │ ├── crypt_decode_para_t.hpp │ │ │ ├── crypt_decrypt_message_para_t.hpp │ │ │ ├── crypt_default_context_multi_oid_para_t.hpp │ │ │ ├── crypt_des_key_state_t.hpp │ │ │ ├── crypt_ecc_cms_shared_info_t.hpp │ │ │ ├── crypt_ecc_private_key_info_t.hpp │ │ │ ├── crypt_encode_para_t.hpp │ │ │ ├── crypt_encrypt_message_para_t.hpp │ │ │ ├── crypt_encrypted_private_key_info_t.hpp │ │ │ ├── crypt_enrollment_name_value_pair_t.hpp │ │ │ ├── crypt_get_time_valid_object_extra_info_t.hpp │ │ │ ├── crypt_hash_info_t.hpp │ │ │ ├── crypt_hash_message_para_t.hpp │ │ │ ├── crypt_image_ref_t.hpp │ │ │ ├── crypt_image_reg_t.hpp │ │ │ ├── crypt_interface_reg_t.hpp │ │ │ ├── crypt_key_prov_info_t.hpp │ │ │ ├── crypt_key_prov_param_t.hpp │ │ │ ├── crypt_key_sign_message_para_t.hpp │ │ │ ├── crypt_key_verify_message_para_t.hpp │ │ │ ├── crypt_mask_gen_algorithm_t.hpp │ │ │ ├── crypt_object_locator_provider_table_t.hpp │ │ │ ├── crypt_objid_table_t.hpp │ │ │ ├── crypt_oid_func_entry_t.hpp │ │ │ ├── crypt_oid_info_t.hpp │ │ │ ├── crypt_password_credentialsa_t.hpp │ │ │ ├── crypt_password_credentialsw_t.hpp │ │ │ ├── crypt_pkcs12_pbe_params_t.hpp │ │ │ ├── crypt_pkcs8_export_params_t.hpp │ │ │ ├── crypt_pkcs8_import_params_t.hpp │ │ │ ├── crypt_private_key_info_t.hpp │ │ │ ├── crypt_property_ref_t.hpp │ │ │ ├── crypt_provider_ref_t.hpp │ │ │ ├── crypt_provider_refs_t.hpp │ │ │ ├── crypt_provider_reg_t.hpp │ │ │ ├── crypt_providers_t.hpp │ │ │ ├── crypt_psource_algorithm_t.hpp │ │ │ ├── crypt_rc2_cbc_parameters_t.hpp │ │ │ ├── crypt_rc4_key_state_t.hpp │ │ │ ├── crypt_retrieve_aux_info_t.hpp │ │ │ ├── crypt_rsa_ssa_pss_parameters_t.hpp │ │ │ ├── crypt_rsaes_oaep_parameters_t.hpp │ │ │ ├── crypt_sequence_of_any_t.hpp │ │ │ ├── crypt_sign_message_para_t.hpp │ │ │ ├── crypt_smart_card_root_info_t.hpp │ │ │ ├── crypt_smime_capabilities_t.hpp │ │ │ ├── crypt_smime_capability_t.hpp │ │ │ ├── crypt_time_stamp_request_info_t.hpp │ │ │ ├── crypt_timestamp_accuracy_t.hpp │ │ │ ├── crypt_timestamp_context_t.hpp │ │ │ ├── crypt_timestamp_info_t.hpp │ │ │ ├── crypt_timestamp_para_t.hpp │ │ │ ├── crypt_timestamp_request_t.hpp │ │ │ ├── crypt_timestamp_response_t.hpp │ │ │ ├── crypt_url_array_t.hpp │ │ │ ├── crypt_url_info_t.hpp │ │ │ ├── crypt_verify_cert_sign_strong_properties_info_t.hpp │ │ │ ├── crypt_verify_cert_sign_weak_hash_info_t.hpp │ │ │ ├── crypt_verify_message_para_t.hpp │ │ │ ├── crypt_x942_other_info_t.hpp │ │ │ ├── cryptnet_url_cache_flush_info_t.hpp │ │ │ ├── cryptnet_url_cache_pre_fetch_info_t.hpp │ │ │ ├── cryptnet_url_cache_response_info_t.hpp │ │ │ ├── cryptoapi_blob_t.hpp │ │ │ ├── cryptprotect_promptstruct_t.hpp │ │ │ ├── cs_frame_t.hpp │ │ │ ├── csc_inner_unknown_t.hpp │ │ │ ├── cssl_t.hpp │ │ │ ├── cst_inner_unknown_t.hpp │ │ │ ├── csv_control_op_t.hpp │ │ │ ├── csv_control_param_t.hpp │ │ │ ├── csv_is_owned_by_csvfs_t.hpp │ │ │ ├── csv_mgmt_lock_t.hpp │ │ │ ├── csv_namespace_info_t.hpp │ │ │ ├── csv_query_file_revision_file_id_128_t.hpp │ │ │ ├── csv_query_file_revision_t.hpp │ │ │ ├── csv_query_mds_path_t.hpp │ │ │ ├── csv_query_mds_path_v2_t.hpp │ │ │ ├── csv_query_redirect_state_t.hpp │ │ │ ├── csv_query_veto_file_direct_io_output_t.hpp │ │ │ ├── csv_query_volume_id_t.hpp │ │ │ ├── csv_query_volume_redirect_state_t.hpp │ │ │ ├── csv_set_volume_id_t.hpp │ │ │ ├── csvfs_disk_connectivity_t.hpp │ │ │ ├── ctl_any_subject_info_t.hpp │ │ │ ├── ctl_context_t.hpp │ │ │ ├── ctl_entry_t.hpp │ │ │ ├── ctl_find_subject_para_t.hpp │ │ │ ├── ctl_find_usage_para_t.hpp │ │ │ ├── ctl_info_t.hpp │ │ │ ├── ctl_usage_match_t.hpp │ │ │ ├── ctl_usage_t.hpp │ │ │ ├── ctl_verify_usage_para_t.hpp │ │ │ ├── ctl_verify_usage_status_t.hpp │ │ │ ├── ctx_entry_t.hpp │ │ │ ├── currencyfmt_a_t.hpp │ │ │ ├── currencyfmt_w_t.hpp │ │ │ ├── custmact_midl_expr_format_string_t.hpp │ │ │ ├── custmact_midl_proc_format_string_t.hpp │ │ │ ├── custmact_midl_type_format_string_t.hpp │ │ │ ├── custom_remote_reply_scm_info_t.hpp │ │ │ ├── custom_remote_request_scm_info_t.hpp │ │ │ ├── custom_reporting_kind_meet_now_t.hpp │ │ │ ├── customdb_exe_reg_db_entry_t.hpp │ │ │ ├── customdb_exe_reg_info_t.hpp │ │ │ ├── customdb_reg_info_t.hpp │ │ │ ├── cuuid_hash_table_t.hpp │ │ │ ├── cv_struct_t.hpp │ │ │ ├── cwmo_flags_t.hpp │ │ │ ├── db_header_t.hpp │ │ │ ├── db_t.hpp │ │ │ ├── dcb_t.hpp │ │ │ ├── dcom_container_protocol_types_midl_expr_format_string_t.hpp │ │ │ ├── dcom_container_protocol_types_midl_proc_format_string_t.hpp │ │ │ ├── dcom_container_protocol_types_midl_type_format_string_t.hpp │ │ │ ├── dcom_endpoint_flags_t.hpp │ │ │ ├── dconst_t.hpp │ │ │ ├── debug_control_space_item_t.hpp │ │ │ ├── debug_event_category_t.hpp │ │ │ ├── debug_event_flags_t.hpp │ │ │ ├── debug_event_t.hpp │ │ │ ├── debug_information_machine_registration_entry_properties_t.hpp │ │ │ ├── debug_information_machine_registration_entry_property_flags_t.hpp │ │ │ ├── debug_information_machine_registration_entry_property_index_t.hpp │ │ │ ├── debug_information_registration_entry_properties_t.hpp │ │ │ ├── debug_information_registration_entry_property_flags_t.hpp │ │ │ ├── debug_information_registration_entry_property_index_t.hpp │ │ │ ├── decode_incremental_handle_t.hpp │ │ │ ├── decryption_status_buffer_t.hpp │ │ │ ├── dedup_chunk_information_hash32_t.hpp │ │ │ ├── dedup_file_operation_t.hpp │ │ │ ├── dedup_query_file_hashes_input_buffer_t.hpp │ │ │ ├── default_sync_client_call_retry_context_t.hpp │ │ │ ├── define_storage_reserve_input_t.hpp │ │ │ ├── delayload_info_t.hpp │ │ │ ├── delayload_proc_descriptor_t.hpp │ │ │ ├── delete_marshaled_target_info_t.hpp │ │ │ ├── delete_storage_reserve_input_t.hpp │ │ │ ├── delete_usn_journal_data_t.hpp │ │ │ ├── dep_system_policy_type_t.hpp │ │ │ ├── device_catalog_cookie_entry_t.hpp │ │ │ ├── device_catalog_entry_t.hpp │ │ │ ├── device_catalog_t.hpp │ │ │ ├── device_catalogs_t.hpp │ │ │ ├── devicemode_a_t.hpp │ │ │ ├── devicemode_w_t.hpp │ │ │ ├── discdlgstructa_t.hpp │ │ │ ├── discdlgstructw_t.hpp │ │ │ ├── disconnect_type_t.hpp │ │ │ ├── disk_space_information_t.hpp │ │ │ ├── dispatcher_context_arm64_t.hpp │ │ │ ├── dispatcher_context_nonvolreg_arm64_t.hpp │ │ │ ├── dispatcher_context_t.hpp │ │ │ ├── display_devicea_t.hpp │ │ │ ├── display_devicew_t.hpp │ │ │ ├── displayconfig_2dregion_t.hpp │ │ │ ├── displayconfig_adapter_name_t.hpp │ │ │ ├── displayconfig_color_encoding_t.hpp │ │ │ ├── displayconfig_desktop_image_info_t.hpp │ │ │ ├── displayconfig_device_info_header_t.hpp │ │ │ ├── displayconfig_device_info_type_t.hpp │ │ │ ├── displayconfig_get_advanced_color_info_t.hpp │ │ │ ├── displayconfig_get_monitor_specialization_t.hpp │ │ │ ├── displayconfig_mode_info_t.hpp │ │ │ ├── displayconfig_mode_info_type_t.hpp │ │ │ ├── displayconfig_path_info_t.hpp │ │ │ ├── displayconfig_path_source_info_t.hpp │ │ │ ├── displayconfig_path_target_info_t.hpp │ │ │ ├── displayconfig_pixelformat_t.hpp │ │ │ ├── displayconfig_rational_t.hpp │ │ │ ├── displayconfig_rotation_t.hpp │ │ │ ├── displayconfig_scaling_t.hpp │ │ │ ├── displayconfig_sdr_white_level_t.hpp │ │ │ ├── displayconfig_set_advanced_color_state_t.hpp │ │ │ ├── displayconfig_set_monitor_specialization_t.hpp │ │ │ ├── displayconfig_set_target_persistence_t.hpp │ │ │ ├── displayconfig_source_device_name_t.hpp │ │ │ ├── displayconfig_source_mode_t.hpp │ │ │ ├── displayconfig_support_virtual_resolution_t.hpp │ │ │ ├── displayconfig_target_base_type_t.hpp │ │ │ ├── displayconfig_target_device_name_flags_t.hpp │ │ │ ├── displayconfig_target_device_name_t.hpp │ │ │ ├── displayconfig_target_mode_t.hpp │ │ │ ├── displayconfig_target_preferred_mode_t.hpp │ │ │ ├── displayconfig_topology_id_t.hpp │ │ │ ├── displayconfig_video_output_technology_t.hpp │ │ │ ├── displayconfig_video_signal_info_t.hpp │ │ │ ├── div_t.hpp │ │ │ ├── division_state_t.hpp │ │ │ ├── dlgitemtemplate_t.hpp │ │ │ ├── dlgtemplate_t.hpp │ │ │ ├── dll_host_smuggled_type_t.hpp │ │ │ ├── dll_instantiation_properties_t.hpp │ │ │ ├── docinfoa_t.hpp │ │ │ ├── docinfow_t.hpp │ │ │ ├── double_val_t.hpp │ │ │ ├── dpc_test_watchdog_configuration_t.hpp │ │ │ ├── dpc_watchdog_global_triage_block_t.hpp │ │ │ ├── dpfltr_type_t.hpp │ │ │ ├── dpi_awareness_context_t.hpp │ │ │ ├── dpi_awareness_t.hpp │ │ │ ├── drawpatrect_t.hpp │ │ │ ├── driver_verifier_thunk_pairs_t.hpp │ │ │ ├── dsafipsversion_enum_t.hpp │ │ │ ├── dssseed_t.hpp │ │ │ ├── duplicate_extents_data32_t.hpp │ │ │ ├── duplicate_extents_data_ex32_t.hpp │ │ │ ├── duplicate_extents_data_ex_t.hpp │ │ │ ├── duplicate_extents_data_t.hpp │ │ │ ├── duplicate_extents_state_t.hpp │ │ │ ├── dvtdinfo_t.hpp │ │ │ ├── dword_blob_t.hpp │ │ │ ├── dx_feature_level_t.hpp │ │ │ ├── e_handle_state_t.hpp │ │ │ ├── e_server_security_t.hpp │ │ │ ├── e_signal_state_t.hpp │ │ │ ├── e_vsa_event_flags_t.hpp │ │ │ ├── ecc_curve_alg_id_enum_t.hpp │ │ │ ├── ecc_curve_type_enum_t.hpp │ │ │ ├── edit_control_feature_t.hpp │ │ │ ├── effective_unmarshaling_policy_t.hpp │ │ │ ├── eh_exception_record_t.hpp │ │ │ ├── eisa_dma_configuration_t.hpp │ │ │ ├── eisa_irq_configuration_t.hpp │ │ │ ├── eisa_irq_descriptor_t.hpp │ │ │ ├── eisa_memory_configuration_t.hpp │ │ │ ├── eisa_memory_type_t.hpp │ │ │ ├── eisa_port_configuration_t.hpp │ │ │ ├── eisa_port_descriptor_t.hpp │ │ │ ├── enable_trace_parameters_t.hpp │ │ │ ├── enable_trace_parameters_v1_t.hpp │ │ │ ├── enclave_create_info_sgx_t.hpp │ │ │ ├── enclave_create_info_vbs_basic_t.hpp │ │ │ ├── enclave_create_info_vbs_t.hpp │ │ │ ├── enclave_init_info_sgx_t.hpp │ │ │ ├── enclave_init_info_vbs_basic_t.hpp │ │ │ ├── enclave_init_info_vbs_t.hpp │ │ │ ├── enclave_load_data_vbs_basic_t.hpp │ │ │ ├── enclave_load_info_vbs_t.hpp │ │ │ ├── encode_incremental_handle_t.hpp │ │ │ ├── encode_sizing_incremental_handle_t.hpp │ │ │ ├── encrypted_data_info_t.hpp │ │ │ ├── encryption_buffer_t.hpp │ │ │ ├── encryption_key_ctrl_input_t.hpp │ │ │ ├── enlistment_basic_information_t.hpp │ │ │ ├── enlistment_crm_information_t.hpp │ │ │ ├── ensure_in_valid_com_thread_and_apartment_in_scope_t.hpp │ │ │ ├── entry_property_store_t.hpp │ │ │ ├── entry_t.hpp │ │ │ ├── enum_service_status_processa_t.hpp │ │ │ ├── enum_service_status_processw_t.hpp │ │ │ ├── enum_service_statusa_t.hpp │ │ │ ├── enum_service_statusw_t.hpp │ │ │ ├── error_info_propagation_flags_t.hpp │ │ │ ├── error_information_extent_v1_t.hpp │ │ │ ├── error_information_extent_version_t.hpp │ │ │ ├── error_object_creator_t.hpp │ │ │ ├── error_object_data_t.hpp │ │ │ ├── error_object_with_associated_passthrough_data_t.hpp │ │ │ ├── error_severity_value_t.hpp │ │ │ ├── etwtracecontrolcode_t.hpp │ │ │ ├── ev_extra_cert_chain_policy_para_t.hpp │ │ │ ├── ev_extra_cert_chain_policy_status_t.hpp │ │ │ ├── event_basic_information_t.hpp │ │ │ ├── event_entry_lookup_table_t.hpp │ │ │ ├── event_entry_t.hpp │ │ │ ├── event_extended_item_event_key_t.hpp │ │ │ ├── event_extended_item_instance_t.hpp │ │ │ ├── event_extended_item_pebs_index_t.hpp │ │ │ ├── event_extended_item_pmc_counters_t.hpp │ │ │ ├── event_extended_item_process_start_key_t.hpp │ │ │ ├── event_extended_item_related_activityid_t.hpp │ │ │ ├── event_extended_item_stack_key32_t.hpp │ │ │ ├── event_extended_item_stack_key64_t.hpp │ │ │ ├── event_extended_item_stack_trace32_t.hpp │ │ │ ├── event_extended_item_stack_trace64_t.hpp │ │ │ ├── event_extended_item_ts_id_t.hpp │ │ │ ├── event_filter_event_id_t.hpp │ │ │ ├── event_filter_event_name_t.hpp │ │ │ ├── event_handle_wrapper_api_types_t.hpp │ │ │ ├── event_information_class_t.hpp │ │ │ ├── event_instance_guid_header_t.hpp │ │ │ ├── event_instance_header_t.hpp │ │ │ ├── event_instance_info_t.hpp │ │ │ ├── event_pool_entry_t.hpp │ │ │ ├── event_registration_token_t.hpp │ │ │ ├── event_trace_t.hpp │ │ │ ├── eventlog_full_information_t.hpp │ │ │ ├── eventlogrecord_t.hpp │ │ │ ├── eventsecurityoperation_t.hpp │ │ │ ├── eventsforlogfile_t.hpp │ │ │ ├── exception_debug_info_t.hpp │ │ │ ├── exception_handling_result_t.hpp │ │ │ ├── exception_log_t.hpp │ │ │ ├── exception_log_type_t.hpp │ │ │ ├── exception_t.hpp │ │ │ ├── exfat_statistics_t.hpp │ │ │ ├── exit_process_debug_info_t.hpp │ │ │ ├── exit_thread_debug_info_t.hpp │ │ │ ├── expandable_string_t.hpp │ │ │ ├── explicit_access_w_t.hpp │ │ │ ├── extended_encrypted_data_info_t.hpp │ │ │ ├── extended_name_format_t.hpp │ │ │ ├── extension_activation_context_properties_data_t.hpp │ │ │ ├── extension_activation_context_properties_t.hpp │ │ │ ├── extension_registration_entry_properties_t.hpp │ │ │ ├── extension_registration_entry_property_flags_t.hpp │ │ │ ├── extension_registration_entry_property_index_t.hpp │ │ │ ├── extent_read_cache_info_buffer_t.hpp │ │ │ ├── fat_statistics_t.hpp │ │ │ ├── fiber_t.hpp │ │ │ ├── file_access_information_t.hpp │ │ │ ├── file_alignment_info_t.hpp │ │ │ ├── file_alignment_information_t.hpp │ │ │ ├── file_all_information_t.hpp │ │ │ ├── file_allocated_range_buffer_t.hpp │ │ │ ├── file_allocation_info_t.hpp │ │ │ ├── file_allocation_information_t.hpp │ │ │ ├── file_attribute_tag_info_t.hpp │ │ │ ├── file_attribute_tag_information_t.hpp │ │ │ ├── file_basic_info_t.hpp │ │ │ ├── file_both_dir_information_t.hpp │ │ │ ├── file_case_sensitive_info_t.hpp │ │ │ ├── file_case_sensitive_information_t.hpp │ │ │ ├── file_completion_information_t.hpp │ │ │ ├── file_compression_info_t.hpp │ │ │ ├── file_compression_information_t.hpp │ │ │ ├── file_desired_storage_class_information_t.hpp │ │ │ ├── file_directory_information_t.hpp │ │ │ ├── file_disposition_info_ex_t.hpp │ │ │ ├── file_disposition_info_t.hpp │ │ │ ├── file_disposition_information_ex_t.hpp │ │ │ ├── file_disposition_information_t.hpp │ │ │ ├── file_ea_information_t.hpp │ │ │ ├── file_end_of_file_info_t.hpp │ │ │ ├── file_end_of_file_information_ex_t.hpp │ │ │ ├── file_end_of_file_information_t.hpp │ │ │ ├── file_fs_attribute_information_t.hpp │ │ │ ├── file_fs_control_information_t.hpp │ │ │ ├── file_fs_data_copy_information_t.hpp │ │ │ ├── file_fs_device_information_t.hpp │ │ │ ├── file_fs_driver_path_information_t.hpp │ │ │ ├── file_fs_full_size_information_ex_t.hpp │ │ │ ├── file_fs_full_size_information_t.hpp │ │ │ ├── file_fs_label_information_t.hpp │ │ │ ├── file_fs_metadata_size_information_t.hpp │ │ │ ├── file_fs_objectid_information_t.hpp │ │ │ ├── file_fs_persistent_volume_information_t.hpp │ │ │ ├── file_fs_sector_size_information_t.hpp │ │ │ ├── file_fs_size_information_t.hpp │ │ │ ├── file_fs_volume_flags_information_t.hpp │ │ │ ├── file_fs_volume_information_t.hpp │ │ │ ├── file_full_dir_info_t.hpp │ │ │ ├── file_full_dir_information_t.hpp │ │ │ ├── file_get_ea_information_t.hpp │ │ │ ├── file_handle_wrapper_api_types_t.hpp │ │ │ ├── file_handle_wrapper_traits_t.hpp │ │ │ ├── file_id_128_t.hpp │ │ │ ├── file_id_both_dir_info_t.hpp │ │ │ ├── file_id_both_dir_information_t.hpp │ │ │ ├── file_id_descriptor_t.hpp │ │ │ ├── file_id_extd_both_dir_information_t.hpp │ │ │ ├── file_id_extd_dir_info_t.hpp │ │ │ ├── file_id_extd_dir_information_t.hpp │ │ │ ├── file_id_full_dir_information_t.hpp │ │ │ ├── file_id_global_tx_dir_information_t.hpp │ │ │ ├── file_id_info_t.hpp │ │ │ ├── file_id_information_t.hpp │ │ │ ├── file_id_type_t.hpp │ │ │ ├── file_info_by_handle_class_t.hpp │ │ │ ├── file_information_definition_t.hpp │ │ │ ├── file_initiate_repair_output_buffer_t.hpp │ │ │ ├── file_internal_information_t.hpp │ │ │ ├── file_io_completion_information_t.hpp │ │ │ ├── file_io_completion_notification_information_t.hpp │ │ │ ├── file_io_priority_hint_info_t.hpp │ │ │ ├── file_io_priority_hint_information_ex_t.hpp │ │ │ ├── file_io_priority_hint_information_t.hpp │ │ │ ├── file_iostatusblock_range_information_t.hpp │ │ │ ├── file_is_remote_device_information_t.hpp │ │ │ ├── file_known_folder_information_t.hpp │ │ │ ├── file_known_folder_type_t.hpp │ │ │ ├── file_layout_entry_t.hpp │ │ │ ├── file_layout_info_entry_t.hpp │ │ │ ├── file_layout_name_entry_t.hpp │ │ │ ├── file_level_trim_output_t.hpp │ │ │ ├── file_level_trim_range_t.hpp │ │ │ ├── file_level_trim_t.hpp │ │ │ ├── file_link_entry_full_id_information_t.hpp │ │ │ ├── file_link_entry_information_t.hpp │ │ │ ├── file_link_information_t.hpp │ │ │ ├── file_links_full_id_information_t.hpp │ │ │ ├── file_links_information_t.hpp │ │ │ ├── file_mailslot_peek_buffer_t.hpp │ │ │ ├── file_mailslot_query_information_t.hpp │ │ │ ├── file_mailslot_set_information_t.hpp │ │ │ ├── file_make_compatible_buffer_t.hpp │ │ │ ├── file_memory_partition_information_t.hpp │ │ │ ├── file_metadata_optimization_state_t.hpp │ │ │ ├── file_mode_information_t.hpp │ │ │ ├── file_move_cluster_information_t.hpp │ │ │ ├── file_name_info_t.hpp │ │ │ ├── file_name_information_t.hpp │ │ │ ├── file_network_physical_name_information_t.hpp │ │ │ ├── file_notify_extended_information_t.hpp │ │ │ ├── file_notify_information_t.hpp │ │ │ ├── file_numa_node_information_t.hpp │ │ │ ├── file_objectid_buffer_t.hpp │ │ │ ├── file_objectid_information_t.hpp │ │ │ ├── file_path_t.hpp │ │ │ ├── file_pipe_assign_event_buffer_t.hpp │ │ │ ├── file_pipe_client_process_buffer_ex_t.hpp │ │ │ ├── file_pipe_client_process_buffer_t.hpp │ │ │ ├── file_pipe_client_process_buffer_v2_t.hpp │ │ │ ├── file_pipe_create_symlink_input_t.hpp │ │ │ ├── file_pipe_delete_symlink_input_t.hpp │ │ │ ├── file_pipe_event_buffer_t.hpp │ │ │ ├── file_pipe_event_enum_input_buffer_t.hpp │ │ │ ├── file_pipe_event_enum_output_buffer_t.hpp │ │ │ ├── file_pipe_event_select_buffer_t.hpp │ │ │ ├── file_pipe_information_t.hpp │ │ │ ├── file_pipe_local_information_t.hpp │ │ │ ├── file_pipe_peek_buffer_t.hpp │ │ │ ├── file_pipe_remote_information_t.hpp │ │ │ ├── file_pipe_silo_arrival_input_t.hpp │ │ │ ├── file_pipe_wait_for_buffer_t.hpp │ │ │ ├── file_position_information_t.hpp │ │ │ ├── file_prefetch_ex_t.hpp │ │ │ ├── file_prefetch_t.hpp │ │ │ ├── file_process_ids_using_file_information_t.hpp │ │ │ ├── file_provider_external_info_v0_t.hpp │ │ │ ├── file_provider_external_info_v1_t.hpp │ │ │ ├── file_query_metadata_optimization_output_t.hpp │ │ │ ├── file_query_on_disk_vol_info_buffer_t.hpp │ │ │ ├── file_query_sparing_buffer_t.hpp │ │ │ ├── file_query_storage_reserve_id_information_ex_t.hpp │ │ │ ├── file_reference_range_t.hpp │ │ │ ├── file_region_info_t.hpp │ │ │ ├── file_region_input_t.hpp │ │ │ ├── file_region_output_t.hpp │ │ │ ├── file_remote_protocol_info_t.hpp │ │ │ ├── file_remote_protocol_information_t.hpp │ │ │ ├── file_rename_info_t.hpp │ │ │ ├── file_rename_information_t.hpp │ │ │ ├── file_reparse_point_information_t.hpp │ │ │ ├── file_set_defect_mgmt_buffer_t.hpp │ │ │ ├── file_set_sparse_buffer_t.hpp │ │ │ ├── file_set_storage_reserve_id_information_ex_t.hpp │ │ │ ├── file_sfio_reserve_information_t.hpp │ │ │ ├── file_sfio_volume_information_t.hpp │ │ │ ├── file_standard_info_t.hpp │ │ │ ├── file_standard_information_ex_t.hpp │ │ │ ├── file_standard_link_information_t.hpp │ │ │ ├── file_stat_information_t.hpp │ │ │ ├── file_stat_lx_information_t.hpp │ │ │ ├── file_storage_info_t.hpp │ │ │ ├── file_storage_reserve_id_information_t.hpp │ │ │ ├── file_storage_tier_class_t.hpp │ │ │ ├── file_storage_tier_media_type_t.hpp │ │ │ ├── file_storage_tier_region_t.hpp │ │ │ ├── file_storage_tier_t.hpp │ │ │ ├── file_stream_info_t.hpp │ │ │ ├── file_stream_information_t.hpp │ │ │ ├── file_system_recognition_information_t.hpp │ │ │ ├── file_tracking_information_t.hpp │ │ │ ├── file_type_notification_input_t.hpp │ │ │ ├── file_valid_data_length_information_t.hpp │ │ │ ├── file_volume_name_information_t.hpp │ │ │ ├── file_zero_data_information_ex_t.hpp │ │ │ ├── file_zero_data_information_t.hpp │ │ │ ├── filemuiinfo_t.hpp │ │ │ ├── fileoffset_information_t.hpp │ │ │ ├── filesystem_statistics_ex_t.hpp │ │ │ ├── filesystem_statistics_t.hpp │ │ │ ├── filetime_t.hpp │ │ │ ├── filetypeattributeflags_t.hpp │ │ │ ├── filter_boot_option_operation_t.hpp │ │ │ ├── find_by_sid_data_t.hpp │ │ │ ├── find_by_sid_output_t.hpp │ │ │ ├── find_data_stack_t.hpp │ │ │ ├── find_info_t.hpp │ │ │ ├── findex_info_levels_t.hpp │ │ │ ├── findex_search_ops_t.hpp │ │ │ ├── findfirstactivationcontextsection_t.hpp │ │ │ ├── fixed_t.hpp │ │ │ ├── flag_stgmedium_t.hpp │ │ │ ├── flagged_byte_blob_t.hpp │ │ │ ├── flagged_word_blob_t.hpp │ │ │ ├── flags_t.hpp │ │ │ ├── flashwinfo_t.hpp │ │ │ ├── float128_t.hpp │ │ │ ├── float_const_t.hpp │ │ │ ├── float_val_t.hpp │ │ │ ├── fls_data_t.hpp │ │ │ ├── fnsave_format_t.hpp │ │ │ ├── focus_event_record_t.hpp │ │ │ ├── format_character_t.hpp │ │ │ ├── four_part_version_t.hpp │ │ │ ├── fp_128_t.hpp │ │ │ ├── fp_32_t.hpp │ │ │ ├── fp_64_t.hpp │ │ │ ├── fp_80_t.hpp │ │ │ ├── fp_ieee_compare_result_t.hpp │ │ │ ├── fp_ieee_format_t.hpp │ │ │ ├── fp_ieee_operation_code_t.hpp │ │ │ ├── fp_ieee_record_t.hpp │ │ │ ├── fp_ieee_rounding_mode_t.hpp │ │ │ ├── fp_ieee_value_t.hpp │ │ │ ├── fpo_data_t.hpp │ │ │ ├── frame_operating_mode_t.hpp │ │ │ ├── frame_system_visual_animation_t.hpp │ │ │ ├── frame_system_visual_t.hpp │ │ │ ├── fsctl_get_integrity_information_buffer_t.hpp │ │ │ ├── fsctl_ghost_file_extents_input_buffer_t.hpp │ │ │ ├── fsctl_offload_read_input_t.hpp │ │ │ ├── fsctl_offload_read_output_t.hpp │ │ │ ├── fsctl_offload_write_input_t.hpp │ │ │ ├── fsctl_offload_write_output_t.hpp │ │ │ ├── fsctl_query_fat_bpb_buffer_t.hpp │ │ │ ├── fsctl_query_ghosted_file_extents_input_range_t.hpp │ │ │ ├── fsctl_query_ghosted_file_extents_output_t.hpp │ │ │ ├── fsctl_query_region_info_input_t.hpp │ │ │ ├── fsctl_query_region_info_output_t.hpp │ │ │ ├── fsctl_query_storage_classes_output_t.hpp │ │ │ ├── fsctl_query_volume_numa_info_output_t.hpp │ │ │ ├── fsctl_set_integrity_information_buffer_ex_t.hpp │ │ │ ├── fsctl_set_integrity_information_buffer_t.hpp │ │ │ ├── fsctl_unmap_space_input_buffer_t.hpp │ │ │ ├── fsctl_unmap_space_output_t.hpp │ │ │ ├── ft_t.hpp │ │ │ ├── ftm_marshaled_object_container_t.hpp │ │ │ ├── full_ptr_to_refid_element_t.hpp │ │ │ ├── full_ptr_xlat_tables_t.hpp │ │ │ ├── fw_frame_t.hpp │ │ │ ├── fxsave_format_wx86_t.hpp │ │ │ ├── gdi_nonremote_t.hpp │ │ │ ├── gdi_object_t.hpp │ │ │ ├── geh_hresult_t.hpp │ │ │ ├── generic_async_action_with_progress_facade_t.hpp │ │ │ ├── generic_async_completed_handler_facade_t.hpp │ │ │ ├── generic_async_operation_facade_t.hpp │ │ │ ├── generic_async_operation_with_progress_facade_t.hpp │ │ │ ├── generic_binding_info_t.hpp │ │ │ ├── generic_binding_routine_pair_t.hpp │ │ │ ├── generic_co_task_mem_stream_t.hpp │ │ │ ├── generic_debug_event_t.hpp │ │ │ ├── generic_pipe_type_t.hpp │ │ │ ├── generic_stream_t.hpp │ │ │ ├── get_fileex_info_levels_t.hpp │ │ │ ├── get_filter_file_identifier_input_t.hpp │ │ │ ├── get_filter_file_identifier_output_t.hpp │ │ │ ├── ghosted_file_extent_t.hpp │ │ │ ├── gip_entry_t.hpp │ │ │ ├── globalopt_service_refcount_enforcement_t.hpp │ │ │ ├── glyphmetrics_t.hpp │ │ │ ├── glyphmetricsfloat_t.hpp │ │ │ ├── gmi_result_t.hpp │ │ │ ├── gradient_rect_t.hpp │ │ │ ├── gradient_triangle_t.hpp │ │ │ ├── gs_handler_data_t.hpp │ │ │ ├── guid_string_t.hpp │ │ │ ├── guid_t.hpp │ │ │ ├── haccel_t.hpp │ │ │ ├── ham_act_pend_state_t.hpp │ │ │ ├── ham_activity_callback_payload_t.hpp │ │ │ ├── ham_activity_callback_subject_t.hpp │ │ │ ├── ham_activity_ee_policy_t.hpp │ │ │ ├── ham_activity_properties_flags_t.hpp │ │ │ ├── ham_activity_properties_t.hpp │ │ │ ├── ham_activity_revoke_flags_t.hpp │ │ │ ├── ham_activity_start_flags_t.hpp │ │ │ ├── ham_activity_started_payload_t.hpp │ │ │ ├── ham_activity_stop_request_reason_t.hpp │ │ │ ├── ham_activity_stop_request_type_t.hpp │ │ │ ├── ham_application_execution_state_t.hpp │ │ │ ├── ham_external_resource_mask_t.hpp │ │ │ ├── ham_license_type_t.hpp │ │ │ ├── ham_packaged_app_servicing_flags_t.hpp │ │ │ ├── ham_pend_durations_t.hpp │ │ │ ├── ham_terminate_reason_t.hpp │ │ │ ├── ham_terminate_type_t.hpp │ │ │ ├── handle_holder_t.hpp │ │ │ ├── handle_wrapper_marshal_data_header_t.hpp │ │ │ ├── harderror_msg_t.hpp │ │ │ ├── harderror_response_option_t.hpp │ │ │ ├── harderror_response_t.hpp │ │ │ ├── hardware_counter_data_t.hpp │ │ │ ├── hashalgorithm_enum_t.hpp │ │ │ ├── hbitmap_t.hpp │ │ │ ├── hbrush_t.hpp │ │ │ ├── hcolorspace_t.hpp │ │ │ ├── hdc_t.hpp │ │ │ ├── hdesk_t.hpp │ │ │ ├── header_parsing_semantics_t.hpp │ │ │ ├── heapinfo_t.hpp │ │ │ ├── henhmetafile_t.hpp │ │ │ ├── hfont_t.hpp │ │ │ ├── hgestureinfo_t.hpp │ │ │ ├── hglrc_t.hpp │ │ │ ├── hhook_t.hpp │ │ │ ├── hiberfile_bucket_size_t.hpp │ │ │ ├── hiberfile_bucket_t.hpp │ │ │ ├── hicon_t.hpp │ │ │ ├── himc_t.hpp │ │ │ ├── himcc_t.hpp │ │ │ ├── hinstance_t.hpp │ │ │ ├── hive_path_enum_t.hpp │ │ │ ├── hkey_t.hpp │ │ │ ├── hkl_t.hpp │ │ │ ├── hlsurf_t.hpp │ │ │ ├── hmac_info_t.hpp │ │ │ ├── hmapkey_t.hpp │ │ │ ├── hmapper_t.hpp │ │ │ ├── hmenu_t.hpp │ │ │ ├── hmetafile_t.hpp │ │ │ ├── hmonitor_t.hpp │ │ │ ├── hot_patch_image_info_t.hpp │ │ │ ├── hot_patch_information_class_t.hpp │ │ │ ├── hpalette_t.hpp │ │ │ ├── hpen_t.hpp │ │ │ ├── hpss_t.hpp │ │ │ ├── hrawinput_t.hpp │ │ │ ├── hrgn_t.hpp │ │ │ ├── hrsrc_t.hpp │ │ │ ├── hsaveduilanguages_t.hpp │ │ │ ├── hsm_opcode_t.hpp │ │ │ ├── hsprite_t.hpp │ │ │ ├── hstr_t.hpp │ │ │ ├── hstring_buffer_t.hpp │ │ │ ├── hstring_header_internal_t.hpp │ │ │ ├── hstring_header_t.hpp │ │ │ ├── hstring_t.hpp │ │ │ ├── hsyntheticpointerdevice_t.hpp │ │ │ ├── htask_t.hpp │ │ │ ├── htouchinput_t.hpp │ │ │ ├── https_policy_callback_data_t.hpp │ │ │ ├── humpd_t.hpp │ │ │ ├── hwineventhook_t.hpp │ │ │ ├── hwinsta_t.hpp │ │ │ ├── hwnd_t.hpp │ │ │ ├── hyper_sizedarr_t.hpp │ │ │ ├── i_abandonment_notification_t.hpp │ │ │ ├── i_access_control_t.hpp │ │ │ ├── i_activatable_class_information_t.hpp │ │ │ ├── i_activation_catalog_context_t.hpp │ │ │ ├── i_activation_context_info_t.hpp │ │ │ ├── i_activation_factory_t.hpp │ │ │ ├── i_activation_filter_t.hpp │ │ │ ├── i_activation_prop_out_clean_t.hpp │ │ │ ├── i_activation_properties_in_t.hpp │ │ │ ├── i_activation_properties_out_t.hpp │ │ │ ├── i_activation_properties_t.hpp │ │ │ ├── i_activation_security_info_t.hpp │ │ │ ├── i_activation_stage_info_t.hpp │ │ │ ├── i_addr_exclusion_control_t.hpp │ │ │ ├── i_addr_tracking_control_t.hpp │ │ │ ├── i_advise_sink2_t.hpp │ │ │ ├── i_advise_sink2_vtbl_t.hpp │ │ │ ├── i_advise_sink_t.hpp │ │ │ ├── i_advise_sink_vtbl_t.hpp │ │ │ ├── i_aggregator_t.hpp │ │ │ ├── i_agile_data_object_t.hpp │ │ │ ├── i_agile_object_t.hpp │ │ │ ├── i_agile_reference_t.hpp │ │ │ ├── i_allow_asta_to_asta_deadlock_risk_t.hpp │ │ │ ├── i_apartment_shutdown_t.hpp │ │ │ ├── i_async_call_cancel_listener_test_hook_t.hpp │ │ │ ├── i_async_client_transport_t.hpp │ │ │ ├── i_async_info_t.hpp │ │ │ ├── i_async_manager_t.hpp │ │ │ ├── i_async_manager_vtbl_t.hpp │ │ │ ├── i_async_rpc_channel_buffer_t.hpp │ │ │ ├── i_async_rpc_channel_buffer_vtbl_t.hpp │ │ │ ├── i_authenticate_ex_t.hpp │ │ │ ├── i_authenticate_t.hpp │ │ │ ├── i_bind_callback_redirect_t.hpp │ │ │ ├── i_bind_ctx_t.hpp │ │ │ ├── i_bind_ctx_vtbl_t.hpp │ │ │ ├── i_bind_host_t.hpp │ │ │ ├── i_bind_http_security_t.hpp │ │ │ ├── i_bind_protocol_t.hpp │ │ │ ├── i_bind_status_callback_ex_t.hpp │ │ │ ├── i_bind_status_callback_t.hpp │ │ │ ├── i_binding_t.hpp │ │ │ ├── i_blocking_lock_t.hpp │ │ │ ├── i_buffer_internal_t.hpp │ │ │ ├── i_buffer_t.hpp │ │ │ ├── i_cache_control_t.hpp │ │ │ ├── i_cache_refresh_t.hpp │ │ │ ├── i_call_channel_t.hpp │ │ │ ├── i_call_factory_t.hpp │ │ │ ├── i_call_factory_vtbl_t.hpp │ │ │ ├── i_call_frame_events_t.hpp │ │ │ ├── i_call_frame_t.hpp │ │ │ ├── i_call_frame_walker_t.hpp │ │ │ ├── i_call_indirect_t.hpp │ │ │ ├── i_call_info_t.hpp │ │ │ ├── i_call_interceptor_t.hpp │ │ │ ├── i_call_locality_info_t.hpp │ │ │ ├── i_call_t.hpp │ │ │ ├── i_callback_wrapper_t.hpp │ │ │ ├── i_calling_process_info_t.hpp │ │ │ ├── i_cancel_method_calls_t.hpp │ │ │ ├── i_catalog_file_info_t.hpp │ │ │ ├── i_cee_gen_t.hpp │ │ │ ├── i_channel_call_object_initialization_t.hpp │ │ │ ├── i_channel_handle_marshal_t.hpp │ │ │ ├── i_channel_hook_t.hpp │ │ │ ├── i_channel_protocol_behavior_t.hpp │ │ │ ├── i_channel_wrapper_t.hpp │ │ │ ├── i_channel_wrapper_vtbl_t.hpp │ │ │ ├── i_check_called_server_t.hpp │ │ │ ├── i_class_activator_t.hpp │ │ │ ├── i_class_classic_info2_impl_t.hpp │ │ │ ├── i_class_classic_info2_t.hpp │ │ │ ├── i_class_classic_info3_impl_t.hpp │ │ │ ├── i_class_classic_info3_t.hpp │ │ │ ├── i_class_classic_info_impl_t.hpp │ │ │ ├── i_class_classic_info_t.hpp │ │ │ ├── i_class_factory_t.hpp │ │ │ ├── i_class_factory_vtbl_t.hpp │ │ │ ├── i_client_call_channel_t.hpp │ │ │ ├── i_client_security_t.hpp │ │ │ ├── i_client_transport_call_events_t.hpp │ │ │ ├── i_code_install_t.hpp │ │ │ ├── i_com_catalog2_internal_t.hpp │ │ │ ├── i_com_catalog2_t.hpp │ │ │ ├── i_com_catalog_internal_impl_t.hpp │ │ │ ├── i_com_catalog_internal_t.hpp │ │ │ ├── i_com_catalog_location_t.hpp │ │ │ ├── i_com_catalog_scm_t.hpp │ │ │ ├── i_com_catalog_settings_t.hpp │ │ │ ├── i_com_catalog_t.hpp │ │ │ ├── i_com_catalog_treat_as_class_t.hpp │ │ │ ├── i_com_class_category_info_t.hpp │ │ │ ├── i_com_class_info2_t.hpp │ │ │ ├── i_com_class_info_impl_t.hpp │ │ │ ├── i_com_class_info_t.hpp │ │ │ ├── i_com_dispatch_info_t.hpp │ │ │ ├── i_com_obj_identity_t.hpp │ │ │ ├── i_com_process_info2_t.hpp │ │ │ ├── i_com_process_info3_t.hpp │ │ │ ├── i_com_process_info_t.hpp │ │ │ ├── i_com_registration_t.hpp │ │ │ ├── i_com_services2_t.hpp │ │ │ ├── i_com_services_t.hpp │ │ │ ├── i_com_sx_s_class_info_t.hpp │ │ │ ├── i_com_threading_info_t.hpp │ │ │ ├── i_com_win_rt_activation_properties_t.hpp │ │ │ ├── i_connection_point_container_t.hpp │ │ │ ├── i_connection_point_container_vtbl_t.hpp │ │ │ ├── i_connection_point_t.hpp │ │ │ ├── i_connection_point_vtbl_t.hpp │ │ │ ├── i_container_id_listener_test_hook_t.hpp │ │ │ ├── i_context_callback_t.hpp │ │ │ ├── i_context_marshaler_t.hpp │ │ │ ├── i_context_t.hpp │ │ │ ├── i_continue_t.hpp │ │ │ ├── i_continue_vtbl_t.hpp │ │ │ ├── i_create_error_info_t.hpp │ │ │ ├── i_create_error_object_from_properties_t.hpp │ │ │ ├── i_create_per_interface_ps_factory_t.hpp │ │ │ ├── i_create_per_interface_ps_factory_vtbl_t.hpp │ │ │ ├── i_create_restricted_error_info2_t.hpp │ │ │ ├── i_create_restricted_error_info3_t.hpp │ │ │ ├── i_create_restricted_error_info_t.hpp │ │ │ ├── i_create_type_info2_t.hpp │ │ │ ├── i_create_type_info_t.hpp │ │ │ ├── i_create_type_lib2_t.hpp │ │ │ ├── i_create_type_lib_t.hpp │ │ │ ├── i_data_advise_holder_t.hpp │ │ │ ├── i_data_filter_t.hpp │ │ │ ├── i_data_object_t.hpp │ │ │ ├── i_data_object_vtbl_t.hpp │ │ │ ├── i_debug_information_context_t.hpp │ │ │ ├── i_debug_stream_t.hpp │ │ │ ├── i_debug_t.hpp │ │ │ ├── i_dest_info_t.hpp │ │ │ ├── i_direct_writer_lock_t.hpp │ │ │ ├── i_disable_async_remoting_for_winrt_async_t.hpp │ │ │ ├── i_disable_fast_rundown_t.hpp │ │ │ ├── i_disconnect_sink_t.hpp │ │ │ ├── i_dispatch_t.hpp │ │ │ ├── i_dispatch_vtbl_t.hpp │ │ │ ├── i_drag_drop_helper_t.hpp │ │ │ ├── i_drop_source_notify_t.hpp │ │ │ ├── i_drop_source_t.hpp │ │ │ ├── i_drop_target_t.hpp │ │ │ ├── i_dummy_hicon_includer_t.hpp │ │ │ ├── i_encoding_filter_factory_t.hpp │ │ │ ├── i_enterprise_drop_target_t.hpp │ │ │ ├── i_enum_connection_points_t.hpp │ │ │ ├── i_enum_connection_points_vtbl_t.hpp │ │ │ ├── i_enum_connections_t.hpp │ │ │ ├── i_enum_connections_vtbl_t.hpp │ │ │ ├── i_enum_context_props_t.hpp │ │ │ ├── i_enum_formatetc_t.hpp │ │ │ ├── i_enum_formatetc_vtbl_t.hpp │ │ │ ├── i_enum_moniker_t.hpp │ │ │ ├── i_enum_moniker_vtbl_t.hpp │ │ │ ├── i_enum_oleverb_t.hpp │ │ │ ├── i_enum_oleverb_vtbl_t.hpp │ │ │ ├── i_enum_scm_process_info_t.hpp │ │ │ ├── i_enum_statdata_t.hpp │ │ │ ├── i_enum_statdata_vtbl_t.hpp │ │ │ ├── i_enum_statpropsetstg_t.hpp │ │ │ ├── i_enum_statpropsetstg_vtbl_t.hpp │ │ │ ├── i_enum_statpropstg_t.hpp │ │ │ ├── i_enum_statpropstg_vtbl_t.hpp │ │ │ ├── i_enum_statstg_t.hpp │ │ │ ├── i_enum_statstg_vtbl_t.hpp │ │ │ ├── i_enum_string_t.hpp │ │ │ ├── i_enum_string_vtbl_t.hpp │ │ │ ├── i_enum_unknown_t.hpp │ │ │ ├── i_enum_unknown_vtbl_t.hpp │ │ │ ├── i_enum_variant_t.hpp │ │ │ ├── i_error_info_t.hpp │ │ │ ├── i_error_info_with_restricted_propagation_t.hpp │ │ │ ├── i_error_log_t.hpp │ │ │ ├── i_exception_notification_t.hpp │ │ │ ├── i_extension_activation_context_properties_t.hpp │ │ │ ├── i_extension_activation_context_t.hpp │ │ │ ├── i_extension_catalog_context_t.hpp │ │ │ ├── i_extension_packages_iterator_t.hpp │ │ │ ├── i_external_connection_t.hpp │ │ │ ├── i_face_entry_t.hpp │ │ │ ├── i_fast_rundown_t.hpp │ │ │ ├── i_fill_lock_bytes_t.hpp │ │ │ ├── i_fill_lock_bytes_vtbl_t.hpp │ │ │ ├── i_finish_t.hpp │ │ │ ├── i_foreground_transfer_t.hpp │ │ │ ├── i_generic_async_action_with_progress_t.hpp │ │ │ ├── i_generic_async_completed_handler_t.hpp │ │ │ ├── i_generic_async_operation_t.hpp │ │ │ ├── i_generic_async_operation_with_progress_t.hpp │ │ │ ├── i_get_bind_handle_t.hpp │ │ │ ├── i_get_catalog_object_t.hpp │ │ │ ├── i_get_context_id_t.hpp │ │ │ ├── i_get_process_info_internal_t.hpp │ │ │ ├── i_global_interface_table_t.hpp │ │ │ ├── i_global_options_t.hpp │ │ │ ├── i_handle_holder_t.hpp │ │ │ ├── i_hook_ole_object_t.hpp │ │ │ ├── i_host_filter_t.hpp │ │ │ ├── i_http_negotiate2_t.hpp │ │ │ ├── i_http_negotiate3_t.hpp │ │ │ ├── i_http_negotiate_t.hpp │ │ │ ├── i_http_security_t.hpp │ │ │ ├── i_identify_hive_t.hpp │ │ │ ├── i_immediate_callback_t.hpp │ │ │ ├── i_indirect_call_target_t.hpp │ │ │ ├── i_init_activation_properties_in_t.hpp │ │ │ ├── i_initialize_spy_t.hpp │ │ │ ├── i_inspectable_t.hpp │ │ │ ├── i_instance_info_t.hpp │ │ │ ├── i_instantiation_info_t.hpp │ │ │ ├── i_interface_info_t.hpp │ │ │ ├── i_internal_channel_buffer_t.hpp │ │ │ ├── i_internal_unknown_t.hpp │ │ │ ├── i_internet_bind_info_ex_t.hpp │ │ │ ├── i_internet_bind_info_t.hpp │ │ │ ├── i_internet_host_security_manager_t.hpp │ │ │ ├── i_internet_priority_t.hpp │ │ │ ├── i_internet_protocol_ex_t.hpp │ │ │ ├── i_internet_protocol_info_t.hpp │ │ │ ├── i_internet_protocol_root_t.hpp │ │ │ ├── i_internet_protocol_sink_stackable_t.hpp │ │ │ ├── i_internet_protocol_sink_t.hpp │ │ │ ├── i_internet_protocol_t.hpp │ │ │ ├── i_internet_security_manager_ex2_t.hpp │ │ │ ├── i_internet_security_manager_ex_t.hpp │ │ │ ├── i_internet_security_manager_t.hpp │ │ │ ├── i_internet_security_mgr_site_t.hpp │ │ │ ├── i_internet_session_t.hpp │ │ │ ├── i_internet_t.hpp │ │ │ ├── i_internet_thread_switch_t.hpp │ │ │ ├── i_internet_zone_manager_ex2_t.hpp │ │ │ ├── i_internet_zone_manager_ex_t.hpp │ │ │ ├── i_internet_zone_manager_t.hpp │ │ │ ├── i_language_exception_error_info2_t.hpp │ │ │ ├── i_language_exception_error_info_t.hpp │ │ │ ├── i_language_exception_stack_back_trace_t.hpp │ │ │ ├── i_language_exception_transform_t.hpp │ │ │ ├── i_layout_storage_t.hpp │ │ │ ├── i_legacy_info_t.hpp │ │ │ ├── i_local_machine_names_t.hpp │ │ │ ├── i_local_system_activator_t.hpp │ │ │ ├── i_lock_bytes_t.hpp │ │ │ ├── i_lock_bytes_vtbl_t.hpp │ │ │ ├── i_machine_global_object_table_legacy_t.hpp │ │ │ ├── i_machine_global_object_table_t.hpp │ │ │ ├── i_malloc_spy_t.hpp │ │ │ ├── i_malloc_t.hpp │ │ │ ├── i_malloc_vtbl_t.hpp │ │ │ ├── i_map_token_t.hpp │ │ │ ├── i_marshal2_t.hpp │ │ │ ├── i_marshal_envoy_t.hpp │ │ │ ├── i_marshal_options_t.hpp │ │ │ ├── i_marshal_t.hpp │ │ │ ├── i_marshaling_direction_and_locality_t.hpp │ │ │ ├── i_marshaling_stream_t.hpp │ │ │ ├── i_message_dispatcher_t.hpp │ │ │ ├── i_message_filter_t.hpp │ │ │ ├── i_message_param_list_t.hpp │ │ │ ├── i_message_param_t.hpp │ │ │ ├── i_meta_data_assembly_emit_t.hpp │ │ │ ├── i_meta_data_assembly_import_t.hpp │ │ │ ├── i_meta_data_dispenser_ex_t.hpp │ │ │ ├── i_meta_data_dispenser_t.hpp │ │ │ ├── i_meta_data_emit2_t.hpp │ │ │ ├── i_meta_data_emit_t.hpp │ │ │ ├── i_meta_data_error_t.hpp │ │ │ ├── i_meta_data_filter_t.hpp │ │ │ ├── i_meta_data_import2_t.hpp │ │ │ ├── i_meta_data_import_t.hpp │ │ │ ├── i_meta_data_info_t.hpp │ │ │ ├── i_meta_data_tables2_t.hpp │ │ │ ├── i_meta_data_tables_t.hpp │ │ │ ├── i_meta_data_validate_t.hpp │ │ │ ├── i_meta_data_win_md_import_t.hpp │ │ │ ├── i_moniker_prop_t.hpp │ │ │ ├── i_moniker_t.hpp │ │ │ ├── i_moniker_vtbl_t.hpp │ │ │ ├── i_multi_qi_t.hpp │ │ │ ├── i_no_marshal_t.hpp │ │ │ ├── i_not_a_real_interface_t.hpp │ │ │ ├── i_obj_context_t.hpp │ │ │ ├── i_object_with_site_t.hpp │ │ │ ├── i_ole_advise_holder_t.hpp │ │ │ ├── i_ole_cache2_t.hpp │ │ │ ├── i_ole_cache2_vtbl_t.hpp │ │ │ ├── i_ole_cache_control_t.hpp │ │ │ ├── i_ole_cache_t.hpp │ │ │ ├── i_ole_class_info_t.hpp │ │ │ ├── i_ole_client_site_t.hpp │ │ │ ├── i_ole_container_t.hpp │ │ │ ├── i_ole_in_place_active_object_t.hpp │ │ │ ├── i_ole_in_place_active_object_vtbl_t.hpp │ │ │ ├── i_ole_in_place_frame_t.hpp │ │ │ ├── i_ole_in_place_object_t.hpp │ │ │ ├── i_ole_in_place_site_t.hpp │ │ │ ├── i_ole_in_place_ui_window_t.hpp │ │ │ ├── i_ole_in_place_ui_window_vtbl_t.hpp │ │ │ ├── i_ole_item_container_t.hpp │ │ │ ├── i_ole_link_t.hpp │ │ │ ├── i_ole_object_t.hpp │ │ │ ├── i_ole_window_t.hpp │ │ │ ├── i_opaque_data_info_t.hpp │ │ │ ├── i_oplock_storage_t.hpp │ │ │ ├── i_orpc_debug_notify_t.hpp │ │ │ ├── i_orpc_debug_notify_vtbl_t.hpp │ │ │ ├── i_override_target_context_t.hpp │ │ │ ├── i_packaged_com_catalog_context_t.hpp │ │ │ ├── i_packaged_com_class_catalog_internal_t.hpp │ │ │ ├── i_packaged_com_class_id_iterator_t.hpp │ │ │ ├── i_packaged_com_class_properties_t.hpp │ │ │ ├── i_packaged_com_prog_id_iterator_t.hpp │ │ │ ├── i_packaged_com_proxy_stub_catalog_internal_t.hpp │ │ │ ├── i_packaged_inproc_class_virtualization_manager_t.hpp │ │ │ ├── i_parse_display_name_t.hpp │ │ │ ├── i_partition_lookup_t.hpp │ │ │ ├── i_partition_property_t.hpp │ │ │ ├── i_per_interface_ps_factory_t.hpp │ │ │ ├── i_per_interface_ps_factory_vtbl_t.hpp │ │ │ ├── i_persist_file_t.hpp │ │ │ ├── i_persist_moniker_t.hpp │ │ │ ├── i_persist_storage_t.hpp │ │ │ ├── i_persist_stream_t.hpp │ │ │ ├── i_persist_t.hpp │ │ │ ├── i_pipe_byte_t.hpp │ │ │ ├── i_pipe_double_t.hpp │ │ │ ├── i_pipe_long_t.hpp │ │ │ ├── i_policy_async_t.hpp │ │ │ ├── i_policy_maker_t.hpp │ │ │ ├── i_policy_set_t.hpp │ │ │ ├── i_policy_t.hpp │ │ │ ├── i_priv_activation_context_info_t.hpp │ │ │ ├── i_priv_activation_properties_in_t.hpp │ │ │ ├── i_priv_activation_properties_out_t.hpp │ │ │ ├── i_process_init_control_t.hpp │ │ │ ├── i_process_lock_t.hpp │ │ │ ├── i_process_server_info_impl_t.hpp │ │ │ ├── i_process_server_info_t.hpp │ │ │ ├── i_progress_notify_t.hpp │ │ │ ├── i_property_bag_t.hpp │ │ │ ├── i_property_set_storage_t.hpp │ │ │ ├── i_property_storage_t.hpp │ │ │ ├── i_proxy_manager_t.hpp │ │ │ ├── i_proxy_server_identity_t.hpp │ │ │ ├── i_record_info_t.hpp │ │ │ ├── i_record_info_vtbl_t.hpp │ │ │ ├── i_register_suspend_notify_t.hpp │ │ │ ├── i_registration_store_context_t.hpp │ │ │ ├── i_registration_t.hpp │ │ │ ├── i_release_marshal_buffers_t.hpp │ │ │ ├── i_release_marshal_buffers_vtbl_t.hpp │ │ │ ├── i_rem_unknown2_t.hpp │ │ │ ├── i_rem_unknown3_t.hpp │ │ │ ├── i_rem_unknown_n_t.hpp │ │ │ ├── i_rem_unknown_t.hpp │ │ │ ├── i_rem_unknown_test_hook_t.hpp │ │ │ ├── i_replace_class_info_t.hpp │ │ │ ├── i_resource_gates_t.hpp │ │ │ ├── i_restricted_error_info_context_t.hpp │ │ │ ├── i_restricted_error_info_internal_t.hpp │ │ │ ├── i_restricted_error_info_t.hpp │ │ │ ├── i_restricted_error_info_telemetry_t.hpp │ │ │ ├── i_restricted_error_rpc_marshal_t.hpp │ │ │ ├── i_return_object_container_t.hpp │ │ │ ├── i_ro_meta_data_locator_t.hpp │ │ │ ├── i_ro_simple_meta_data_builder_t.hpp │ │ │ ├── i_root_storage_t.hpp │ │ │ ├── i_rpc_call_t.hpp │ │ │ ├── i_rpc_channel_buffer2_t.hpp │ │ │ ├── i_rpc_channel_buffer2_vtbl_t.hpp │ │ │ ├── i_rpc_channel_buffer3_t.hpp │ │ │ ├── i_rpc_channel_buffer3_vtbl_t.hpp │ │ │ ├── i_rpc_channel_buffer_marshaling_context_t.hpp │ │ │ ├── i_rpc_channel_buffer_t.hpp │ │ │ ├── i_rpc_channel_buffer_vtbl_t.hpp │ │ │ ├── i_rpc_helper_t.hpp │ │ │ ├── i_rpc_options_t.hpp │ │ │ ├── i_rpc_proxy_buffer_t.hpp │ │ │ ├── i_rpc_proxy_buffer_vtbl_t.hpp │ │ │ ├── i_rpc_stub_buffer_t.hpp │ │ │ ├── i_rpc_stub_buffer_vtbl_t.hpp │ │ │ ├── i_rpc_syntax_negotiate_t.hpp │ │ │ ├── i_rpc_syntax_negotiate_vtbl_t.hpp │ │ │ ├── i_rundown_t.hpp │ │ │ ├── i_runnable_object_t.hpp │ │ │ ├── i_runnable_object_vtbl_t.hpp │ │ │ ├── i_running_object_table_t.hpp │ │ │ ├── i_running_object_table_vtbl_t.hpp │ │ │ ├── i_runtime_broker_activation_test_hook_t.hpp │ │ │ ├── i_runtime_broker_t.hpp │ │ │ ├── i_scm_reply_info_t.hpp │ │ │ ├── i_scm_request_info_t.hpp │ │ │ ├── i_security_options_t.hpp │ │ │ ├── i_sequential_stream_t.hpp │ │ │ ├── i_sequential_stream_vtbl_t.hpp │ │ │ ├── i_serializable_parent_t.hpp │ │ │ ├── i_serializable_t.hpp │ │ │ ├── i_server_call_channel_t.hpp │ │ │ ├── i_server_call_t.hpp │ │ │ ├── i_server_location_info_t.hpp │ │ │ ├── i_server_security_t.hpp │ │ │ ├── i_server_transport_call_events_t.hpp │ │ │ ├── i_service_provider_t.hpp │ │ │ ├── i_services_sink2_t.hpp │ │ │ ├── i_services_sink_t.hpp │ │ │ ├── i_soft_dist_ext_t.hpp │ │ │ ├── i_special_system_properties_t.hpp │ │ │ ├── i_stack_walker_stack_t.hpp │ │ │ ├── i_stack_walker_symbol_t.hpp │ │ │ ├── i_stack_walker_t.hpp │ │ │ ├── i_standard_activator_t.hpp │ │ │ ├── i_std_marshal_info_t.hpp │ │ │ ├── i_storage_t.hpp │ │ │ ├── i_storage_vtbl_t.hpp │ │ │ ├── i_stream_t.hpp │ │ │ ├── i_stream_vtbl_t.hpp │ │ │ ├── i_stub_call_t.hpp │ │ │ ├── i_stub_manager_disconnect_t.hpp │ │ │ ├── i_support_error_info_t.hpp │ │ │ ├── i_surrogate_service_t.hpp │ │ │ ├── i_surrogate_t.hpp │ │ │ ├── i_suspend_notify_t.hpp │ │ │ ├── i_synchronize_container_t.hpp │ │ │ ├── i_synchronize_event_t.hpp │ │ │ ├── i_synchronize_handle_t.hpp │ │ │ ├── i_synchronize_mutex_t.hpp │ │ │ ├── i_synchronize_t.hpp │ │ │ ├── i_synchronize_vtbl_t.hpp │ │ │ ├── i_system_activator_t.hpp │ │ │ ├── i_system_debug_event_fire_t.hpp │ │ │ ├── i_system_debug_event_shutdown_t.hpp │ │ │ ├── i_thumbnail_extractor_t.hpp │ │ │ ├── i_thunk_manager_t.hpp │ │ │ ├── i_time_and_notice_control_t.hpp │ │ │ ├── i_type_change_events_t.hpp │ │ │ ├── i_type_comp_t.hpp │ │ │ ├── i_type_comp_vtbl_t.hpp │ │ │ ├── i_type_factory_t.hpp │ │ │ ├── i_type_info2_t.hpp │ │ │ ├── i_type_info_t.hpp │ │ │ ├── i_type_info_vtbl_t.hpp │ │ │ ├── i_type_lib2_t.hpp │ │ │ ├── i_type_lib_catalog_internal_t.hpp │ │ │ ├── i_type_lib_registration_iterator_t.hpp │ │ │ ├── i_type_lib_registration_reader_t.hpp │ │ │ ├── i_type_lib_registration_t.hpp │ │ │ ├── i_type_lib_t.hpp │ │ │ ├── i_type_lib_vtbl_t.hpp │ │ │ ├── i_type_marshal_t.hpp │ │ │ ├── i_unhandled_error_forwarder_t.hpp │ │ │ ├── i_unknown_t.hpp │ │ │ ├── i_unknown_vtbl_t.hpp │ │ │ ├── i_uri_builder_factory_t.hpp │ │ │ ├── i_uri_builder_t.hpp │ │ │ ├── i_uri_container_t.hpp │ │ │ ├── i_uri_t.hpp │ │ │ ├── i_url_mon_t.hpp │ │ │ ├── i_user_context_properties_t.hpp │ │ │ ├── i_user_token_internal_t.hpp │ │ │ ├── i_user_token_t.hpp │ │ │ ├── i_user_token_user_software_classes_t.hpp │ │ │ ├── i_user_token_with_impersonate_t.hpp │ │ │ ├── i_view_object2_t.hpp │ │ │ ├── i_view_object_t.hpp │ │ │ ├── i_view_object_vtbl_t.hpp │ │ │ ├── i_wait_multiple_t.hpp │ │ │ ├── i_weak_reference_source_t.hpp │ │ │ ├── i_weak_reference_t.hpp │ │ │ ├── i_win_inet_cache_hints2_t.hpp │ │ │ ├── i_win_inet_cache_hints_t.hpp │ │ │ ├── i_win_inet_file_stream_t.hpp │ │ │ ├── i_win_inet_http_info_t.hpp │ │ │ ├── i_win_inet_http_timeouts_t.hpp │ │ │ ├── i_win_inet_info_t.hpp │ │ │ ├── i_win_rt_activation_properties_t.hpp │ │ │ ├── i_win_rt_application_catalog_internal_t.hpp │ │ │ ├── i_win_rt_catalog_internal_t.hpp │ │ │ ├── i_win_rt_class_activator_t.hpp │ │ │ ├── i_win_rt_desktop_broker_t.hpp │ │ │ ├── i_win_rt_inproc_activator_t.hpp │ │ │ ├── i_win_rt_interface_information_t.hpp │ │ │ ├── i_win_rt_runtime_class_info_t.hpp │ │ │ ├── i_win_rt_server_info_t.hpp │ │ │ ├── i_window_for_binding_ui_t.hpp │ │ │ ├── i_winrt_async_channel_operation_t.hpp │ │ │ ├── i_winrt_async_client_call_t.hpp │ │ │ ├── i_winrt_async_client_rpc_ole_message_call_proxy_callbacks_t.hpp │ │ │ ├── i_winrt_async_pattern_facade_t.hpp │ │ │ ├── i_winrt_async_proxy_call_t.hpp │ │ │ ├── i_winrt_async_server_call_t.hpp │ │ │ ├── i_winrt_type_serializer_t.hpp │ │ │ ├── i_wrapped_protocol_t.hpp │ │ │ ├── i_wrapper_info_t.hpp │ │ │ ├── i_zone_identifier2_t.hpp │ │ │ ├── i_zone_identifier_t.hpp │ │ │ ├── ic_frame_t.hpp │ │ │ ├── iconinfo_t.hpp │ │ │ ├── iconinfoexa_t.hpp │ │ │ ├── iconinfoexw_t.hpp │ │ │ ├── idl_cs_convert_t.hpp │ │ │ ├── idll_host_t.hpp │ │ │ ├── ie_object_type_t.hpp │ │ │ ├── iface_midl_expr_format_string_t.hpp │ │ │ ├── iface_midl_proc_format_string_t.hpp │ │ │ ├── iface_midl_type_format_string_t.hpp │ │ │ ├── iinspectable_midl_proc_format_string_t.hpp │ │ │ ├── iinspectable_midl_type_format_string_t.hpp │ │ │ ├── iinspectablederived_midl_proc_format_string_t.hpp │ │ │ ├── iinspectablederived_midl_type_format_string_t.hpp │ │ │ ├── impersonation_state_checker_t.hpp │ │ │ ├── import_object_header_t.hpp │ │ │ ├── import_object_name_type_t.hpp │ │ │ ├── import_object_type_t.hpp │ │ │ ├── in_frame_t.hpp │ │ │ ├── index_record_t.hpp │ │ │ ├── initial_teb_t.hpp │ │ │ ├── inproc_actprops_unmarshaller_t.hpp │ │ │ ├── inproc_class_activation_properties_t.hpp │ │ │ ├── input_record_t.hpp │ │ │ ├── installdata_t.hpp │ │ │ ├── installspec_t.hpp │ │ │ ├── installspectype_t.hpp │ │ │ ├── instance_info_t.hpp │ │ │ ├── instantiation_info_t.hpp │ │ │ ├── interface_registration_entry_properties_t.hpp │ │ │ ├── interface_registration_entry_property_flags_t.hpp │ │ │ ├── interface_registration_entry_property_index_t.hpp │ │ │ ├── interpreter_flags_t.hpp │ │ │ ├── interpreter_opt_flags2_t.hpp │ │ │ ├── interpreter_opt_flags_t.hpp │ │ │ ├── inverted_function_table_t.hpp │ │ │ ├── ipa_control_t.hpp │ │ │ ├── ipid_entry_validation_type_t.hpp │ │ │ ├── ips_factory_buffer_t.hpp │ │ │ ├── ips_factory_buffer_vtbl_t.hpp │ │ │ ├── ipt_trace_event_data_t.hpp │ │ │ ├── ir_timer_extra_create_parameter_t.hpp │ │ │ ├── irc_entry_t.hpp │ │ │ ├── irot_data_t.hpp │ │ │ ├── irot_midl_proc_format_string_t.hpp │ │ │ ├── irot_midl_type_format_string_t.hpp │ │ │ ├── irq_group_policy_t.hpp │ │ │ ├── isa_availability_t.hpp │ │ │ ├── iscm_local_activator_t.hpp │ │ │ ├── iscm_process_control_t.hpp │ │ │ ├── ixml_attribute_t.hpp │ │ │ ├── ixml_document2_t.hpp │ │ │ ├── ixml_document_t.hpp │ │ │ ├── ixml_element2_t.hpp │ │ │ ├── ixml_element_collection_t.hpp │ │ │ ├── ixml_element_t.hpp │ │ │ ├── ixml_error_t.hpp │ │ │ ├── ixml_http_request_t.hpp │ │ │ ├── ixmldom_attribute_t.hpp │ │ │ ├── ixmldom_character_data_t.hpp │ │ │ ├── ixmldom_comment_t.hpp │ │ │ ├── ixmldom_document_fragment_t.hpp │ │ │ ├── ixmldom_document_t.hpp │ │ │ ├── ixmldom_document_type_t.hpp │ │ │ ├── ixmldom_element_t.hpp │ │ │ ├── ixmldom_entity_reference_t.hpp │ │ │ ├── ixmldom_entity_t.hpp │ │ │ ├── ixmldom_implementation_t.hpp │ │ │ ├── ixmldom_named_node_map_t.hpp │ │ │ ├── ixmldom_node_list_t.hpp │ │ │ ├── ixmldom_node_t.hpp │ │ │ ├── ixmldom_notation_t.hpp │ │ │ ├── ixmldom_parse_error_t.hpp │ │ │ ├── ixmldom_processing_instruction_t.hpp │ │ │ ├── ixmldom_text_t.hpp │ │ │ ├── ixmldomcdata_section_t.hpp │ │ │ ├── ixmldso_control_t.hpp │ │ │ ├── ixtl_runtime_t.hpp │ │ │ ├── jit_debug_info_t.hpp │ │ │ ├── job_handle_wrapper_api_types_t.hpp │ │ │ ├── job_set_array_t.hpp │ │ │ ├── jobobject_associate_completion_port_t.hpp │ │ │ ├── jobobject_basic_accounting_information_t.hpp │ │ │ ├── jobobject_basic_and_io_accounting_information_t.hpp │ │ │ ├── jobobject_basic_limit_information_t.hpp │ │ │ ├── jobobject_basic_process_id_list_t.hpp │ │ │ ├── jobobject_basic_ui_restrictions_t.hpp │ │ │ ├── jobobject_container_identifier_v2_t.hpp │ │ │ ├── jobobject_cpu_rate_control_information_t.hpp │ │ │ ├── jobobject_end_of_job_time_information_t.hpp │ │ │ ├── jobobject_extended_accounting_information_t.hpp │ │ │ ├── jobobject_extended_accounting_information_v2_t.hpp │ │ │ ├── jobobject_extended_limit_information_t.hpp │ │ │ ├── jobobject_extended_limit_information_v2_t.hpp │ │ │ ├── jobobject_freeze_information_t.hpp │ │ │ ├── jobobject_interference_information_t.hpp │ │ │ ├── jobobject_io_attribution_control_flags_t.hpp │ │ │ ├── jobobject_io_attribution_information_t.hpp │ │ │ ├── jobobject_io_attribution_stats_t.hpp │ │ │ ├── jobobject_io_rate_control_information_native_t.hpp │ │ │ ├── jobobject_io_rate_control_information_native_v2_t.hpp │ │ │ ├── jobobject_io_rate_control_information_native_v3_t.hpp │ │ │ ├── jobobject_io_rate_control_information_t.hpp │ │ │ ├── jobobject_jobset_information_t.hpp │ │ │ ├── jobobject_limit_violation_information_2_t.hpp │ │ │ ├── jobobject_limit_violation_information_t.hpp │ │ │ ├── jobobject_limit_violation_information_v2_t.hpp │ │ │ ├── jobobject_memory_usage_information_t.hpp │ │ │ ├── jobobject_memory_usage_information_v2_t.hpp │ │ │ ├── jobobject_net_rate_control_information_t.hpp │ │ │ ├── jobobject_notification_limit_information_2_t.hpp │ │ │ ├── jobobject_notification_limit_information_t.hpp │ │ │ ├── jobobject_notification_limit_information_v2_t.hpp │ │ │ ├── jobobject_rate_control_tolerance_interval_t.hpp │ │ │ ├── jobobject_rate_control_tolerance_t.hpp │ │ │ ├── jobobject_security_limit_information_t.hpp │ │ │ ├── jobobject_wake_information_t.hpp │ │ │ ├── jobobject_wake_information_v1_t.hpp │ │ │ ├── journal_absolute_information_t.hpp │ │ │ ├── journal_change_information_class_t.hpp │ │ │ ├── journal_client_information_t.hpp │ │ │ ├── journal_create_delete_key_information_t.hpp │ │ │ ├── journal_information_class_t.hpp │ │ │ ├── journal_rename_key_information_t.hpp │ │ │ ├── journal_set_delete_value_information_t.hpp │ │ │ ├── journal_set_key_last_write_time_information_t.hpp │ │ │ ├── journal_set_key_security_information_t.hpp │ │ │ ├── journal_set_key_user_flags_information_t.hpp │ │ │ ├── journal_transaction_boundary_information_t.hpp │ │ │ ├── jump_buffer_t.hpp │ │ │ ├── kaffinity_enumeration_context_t.hpp │ │ │ ├── kcontinue_argument_t.hpp │ │ │ ├── kcrm_marshal_header_t.hpp │ │ │ ├── kcrm_protocol_blob_t.hpp │ │ │ ├── kcrm_transaction_blob_t.hpp │ │ │ ├── kdhelp64_t.hpp │ │ │ ├── kernel_cet_context_t.hpp │ │ │ ├── kernel_user_times_t.hpp │ │ │ ├── key_basic_information_t.hpp │ │ │ ├── key_cached_information_t.hpp │ │ │ ├── key_control_flags_information_t.hpp │ │ │ ├── key_event_record_t.hpp │ │ │ ├── key_flags_information_t.hpp │ │ │ ├── key_full_information_t.hpp │ │ │ ├── key_handle_tags_information_t.hpp │ │ │ ├── key_layer_information_t.hpp │ │ │ ├── key_name_information_t.hpp │ │ │ ├── key_node_information_t.hpp │ │ │ ├── key_open_subkeys_information_t.hpp │ │ │ ├── key_pid_array_t.hpp │ │ │ ├── key_refresh_info_t.hpp │ │ │ ├── key_set_layer_information_t.hpp │ │ │ ├── key_set_virtualization_information_t.hpp │ │ │ ├── key_trust_information_t.hpp │ │ │ ├── key_type_subtype_t.hpp │ │ │ ├── key_value_basic_information_t.hpp │ │ │ ├── key_value_entry_t.hpp │ │ │ ├── key_value_layer_information_t.hpp │ │ │ ├── key_value_partial_information_align64_t.hpp │ │ │ ├── key_value_partial_information_t.hpp │ │ │ ├── key_virtualization_information_t.hpp │ │ │ ├── key_wow64_flags_information_t.hpp │ │ │ ├── key_write_time_information_t.hpp │ │ │ ├── knonvolatile_context_pointers_arm64_t.hpp │ │ │ ├── knonvolatile_context_pointers_t.hpp │ │ │ ├── known_clsid_and_scope_t.hpp │ │ │ ├── l_ep_bi_header_t.hpp │ │ │ ├── last_exception_log_t.hpp │ │ │ ├── latency_time_t.hpp │ │ │ ├── lblob_t.hpp │ │ │ ├── lbr_trace_event_data_t.hpp │ │ │ ├── lc_time_data_t.hpp │ │ │ ├── lclor_midl_expr_format_string_t.hpp │ │ │ ├── lclor_midl_proc_format_string_t.hpp │ │ │ ├── lclor_midl_type_format_string_t.hpp │ │ │ ├── lconv_t.hpp │ │ │ ├── ldbl12_t.hpp │ │ │ ├── ldiv_t.hpp │ │ │ ├── ldouble_t.hpp │ │ │ ├── ldouble_val_t.hpp │ │ │ ├── ldt_entry_t.hpp │ │ │ ├── leap_second_data_registry_entry_t.hpp │ │ │ ├── learning_mode_log_level_t.hpp │ │ │ ├── learning_mode_object_information_t.hpp │ │ │ ├── legacy_free_sync_client_call_t.hpp │ │ │ ├── legacy_free_sync_server_call_t.hpp │ │ │ ├── link_tracking_information_t.hpp │ │ │ ├── link_tracking_information_type_t.hpp │ │ │ ├── lldiv_t.hpp │ │ │ ├── load_asdata_table_t.hpp │ │ │ ├── load_dll_debug_info_t.hpp │ │ │ ├── load_dll_event_data_t.hpp │ │ │ ├── load_hint_enum_t.hpp │ │ │ ├── load_or_free_what_t.hpp │ │ │ ├── load_or_free_why_t.hpp │ │ │ ├── localeinfo_struct_t.hpp │ │ │ ├── lock_cookie_t.hpp │ │ │ ├── lock_entry_t.hpp │ │ │ ├── logical_disk_defrag_t.hpp │ │ │ ├── logical_disk_extents_t.hpp │ │ │ ├── long_sizedarr_t.hpp │ │ │ ├── longdouble_t.hpp │ │ │ ├── lookup_stream_from_cluster_entry_t.hpp │ │ │ ├── lookup_stream_from_cluster_input_t.hpp │ │ │ ├── lookup_stream_from_cluster_output_t.hpp │ │ │ ├── loop_detector_t.hpp │ │ │ ├── lrpc_system_handle_marshal_direction_t.hpp │ │ │ ├── lunicode_string_t.hpp │ │ │ ├── lutf8_string_t.hpp │ │ │ ├── machine_attributes_t.hpp │ │ │ ├── machine_global_object_table_registration_token_t.hpp │ │ │ ├── machine_local_behavior_t.hpp │ │ │ ├── machine_wide_reg_catalog_t.hpp │ │ │ ├── magic/ │ │ │ │ ├── abc_t.end.hpp │ │ │ │ ├── abc_t.start.hpp │ │ │ │ ├── abcfloat_t.end.hpp │ │ │ │ ├── abcfloat_t.start.hpp │ │ │ │ ├── access_allowed_ace_t.end.hpp │ │ │ │ ├── access_allowed_ace_t.start.hpp │ │ │ │ ├── access_allowed_callback_ace_t.end.hpp │ │ │ │ ├── access_allowed_callback_ace_t.start.hpp │ │ │ │ ├── access_allowed_callback_object_ace_t.end.hpp │ │ │ │ ├── access_allowed_callback_object_ace_t.start.hpp │ │ │ │ ├── access_allowed_object_ace_t.end.hpp │ │ │ │ ├── access_allowed_object_ace_t.start.hpp │ │ │ │ ├── access_denied_ace_t.end.hpp │ │ │ │ ├── access_denied_ace_t.start.hpp │ │ │ │ ├── access_denied_callback_ace_t.end.hpp │ │ │ │ ├── access_denied_callback_ace_t.start.hpp │ │ │ │ ├── access_denied_callback_object_ace_t.end.hpp │ │ │ │ ├── access_denied_callback_object_ace_t.start.hpp │ │ │ │ ├── access_denied_object_ace_t.end.hpp │ │ │ │ ├── access_denied_object_ace_t.start.hpp │ │ │ │ ├── ace_header_t.end.hpp │ │ │ │ ├── ace_header_t.start.hpp │ │ │ │ ├── acl_revision_information_t.end.hpp │ │ │ │ ├── acl_revision_information_t.start.hpp │ │ │ │ ├── acl_size_information_t.end.hpp │ │ │ │ ├── acl_size_information_t.start.hpp │ │ │ │ ├── acpickl_midl_expr_format_string_t.end.hpp │ │ │ │ ├── acpickl_midl_expr_format_string_t.start.hpp │ │ │ │ ├── acpickl_midl_proc_format_string_t.end.hpp │ │ │ │ ├── acpickl_midl_proc_format_string_t.start.hpp │ │ │ │ ├── acpickl_midl_type_format_string_t.end.hpp │ │ │ │ ├── acpickl_midl_type_format_string_t.start.hpp │ │ │ │ ├── activatable_class_machine_registration_entry_properties_t.end.hpp │ │ │ │ ├── activatable_class_machine_registration_entry_properties_t.start.hpp │ │ │ │ ├── activatable_class_reg_input_entry_t.end.hpp │ │ │ │ ├── activatable_class_reg_input_entry_t.start.hpp │ │ │ │ ├── activatable_class_reg_input_t.end.hpp │ │ │ │ ├── activatable_class_reg_input_t.start.hpp │ │ │ │ ├── activatable_class_registration_entry_properties_t.end.hpp │ │ │ │ ├── activatable_class_registration_entry_properties_t.start.hpp │ │ │ │ ├── activatable_class_revoke_classes_t.end.hpp │ │ │ │ ├── activatable_class_revoke_classes_t.start.hpp │ │ │ │ ├── activatable_class_revoke_entry_t.end.hpp │ │ │ │ ├── activatable_class_revoke_entry_t.start.hpp │ │ │ │ ├── activation_context_assembly_data_t.end.hpp │ │ │ │ ├── activation_context_assembly_data_t.start.hpp │ │ │ │ ├── activation_context_assembly_detailed_information_t.end.hpp │ │ │ │ ├── activation_context_assembly_detailed_information_t.start.hpp │ │ │ │ ├── activation_context_basic_information_t.end.hpp │ │ │ │ ├── activation_context_basic_information_t.start.hpp │ │ │ │ ├── activation_context_compatibility_information_t.end.hpp │ │ │ │ ├── activation_context_compatibility_information_t.start.hpp │ │ │ │ ├── activation_context_data_com_interface_redirection_t.end.hpp │ │ │ │ ├── activation_context_data_com_interface_redirection_t.start.hpp │ │ │ │ ├── activation_context_data_com_progid_redirection_t.end.hpp │ │ │ │ ├── activation_context_data_com_progid_redirection_t.start.hpp │ │ │ │ ├── activation_context_data_com_server_redirection_t.end.hpp │ │ │ │ ├── activation_context_data_com_server_redirection_t.start.hpp │ │ │ │ ├── activation_context_data_t.end.hpp │ │ │ │ ├── activation_context_data_t.start.hpp │ │ │ │ ├── activation_context_data_winrt_activatable_class_t.end.hpp │ │ │ │ ├── activation_context_data_winrt_activatable_class_t.start.hpp │ │ │ │ ├── activation_context_detailed_information_t.end.hpp │ │ │ │ ├── activation_context_detailed_information_t.start.hpp │ │ │ │ ├── activation_context_msix_info_t.end.hpp │ │ │ │ ├── activation_context_msix_info_t.start.hpp │ │ │ │ ├── activation_context_query_index_t.end.hpp │ │ │ │ ├── activation_context_query_index_t.start.hpp │ │ │ │ ├── activation_context_run_level_information_t.end.hpp │ │ │ │ ├── activation_context_run_level_information_t.start.hpp │ │ │ │ ├── activation_context_section_keyed_data_2600_t.end.hpp │ │ │ │ ├── activation_context_section_keyed_data_2600_t.start.hpp │ │ │ │ ├── activation_context_section_keyed_data_assembly_metadata_t.end.hpp │ │ │ │ ├── activation_context_section_keyed_data_assembly_metadata_t.start.hpp │ │ │ │ ├── activation_context_section_keyed_data_t.end.hpp │ │ │ │ ├── activation_context_section_keyed_data_t.start.hpp │ │ │ │ ├── activation_context_t.end.hpp │ │ │ │ ├── activation_context_t.start.hpp │ │ │ │ ├── activation_properties_in_t.end.hpp │ │ │ │ ├── activation_properties_in_t.start.hpp │ │ │ │ ├── activation_properties_out_t.end.hpp │ │ │ │ ├── activation_properties_out_t.start.hpp │ │ │ │ ├── activation_properties_t.end.hpp │ │ │ │ ├── activation_properties_t.start.hpp │ │ │ │ ├── actrl_access_entry_listw_t.end.hpp │ │ │ │ ├── actrl_access_entry_listw_t.start.hpp │ │ │ │ ├── actrl_access_entryw_t.end.hpp │ │ │ │ ├── actrl_access_entryw_t.start.hpp │ │ │ │ ├── actrl_alistw_t.end.hpp │ │ │ │ ├── actrl_alistw_t.start.hpp │ │ │ │ ├── actrl_property_entryw_t.end.hpp │ │ │ │ ├── actrl_property_entryw_t.start.hpp │ │ │ │ ├── administrator_power_policy_t.end.hpp │ │ │ │ ├── administrator_power_policy_t.start.hpp │ │ │ │ ├── aentry_t.end.hpp │ │ │ │ ├── aentry_t.start.hpp │ │ │ │ ├── anon_object_header_bigobj_t.end.hpp │ │ │ │ ├── anon_object_header_bigobj_t.start.hpp │ │ │ │ ├── anon_object_header_t.end.hpp │ │ │ │ ├── anon_object_header_t.start.hpp │ │ │ │ ├── anon_object_header_v2_t.end.hpp │ │ │ │ ├── anon_object_header_v2_t.start.hpp │ │ │ │ ├── apartment_entry_t.end.hpp │ │ │ │ ├── apartment_entry_t.start.hpp │ │ │ │ ├── apartment_shutdown_node_t.end.hpp │ │ │ │ ├── apartment_shutdown_node_t.start.hpp │ │ │ │ ├── apartment_type_specific_routines_t.end.hpp │ │ │ │ ├── apartment_type_specific_routines_t.start.hpp │ │ │ │ ├── app_local_device_id_t.end.hpp │ │ │ │ ├── app_local_device_id_t.start.hpp │ │ │ │ ├── app_memory_information_t.end.hpp │ │ │ │ ├── app_memory_information_t.start.hpp │ │ │ │ ├── appcompat_exe_data_t.end.hpp │ │ │ │ ├── appcompat_exe_data_t.start.hpp │ │ │ │ ├── applicationlaunch_setting_value_t.end.hpp │ │ │ │ ├── applicationlaunch_setting_value_t.start.hpp │ │ │ │ ├── arm64_nt_context_t.end.hpp │ │ │ │ ├── arm64_nt_context_t.start.hpp │ │ │ │ ├── arm64_nt_neon128_t.end.hpp │ │ │ │ ├── arm64_nt_neon128_t.start.hpp │ │ │ │ ├── arm64_register_params_t.end.hpp │ │ │ │ ├── arm64_register_params_t.start.hpp │ │ │ │ ├── arm64ec_nt_context_t.end.hpp │ │ │ │ ├── arm64ec_nt_context_t.start.hpp │ │ │ │ ├── arm_params_t.end.hpp │ │ │ │ ├── arm_params_t.start.hpp │ │ │ │ ├── arm_register_layout32_t.end.hpp │ │ │ │ ├── arm_register_layout32_t.start.hpp │ │ │ │ ├── arm_register_layout64_t.end.hpp │ │ │ │ ├── arm_register_layout64_t.start.hpp │ │ │ │ ├── arm_register_params_t.end.hpp │ │ │ │ ├── arm_register_params_t.start.hpp │ │ │ │ ├── array_info_t.end.hpp │ │ │ │ ├── array_info_t.start.hpp │ │ │ │ ├── array_of_guids_t.end.hpp │ │ │ │ ├── array_of_guids_t.start.hpp │ │ │ │ ├── assembly_file_detailed_information_t.end.hpp │ │ │ │ ├── assembly_file_detailed_information_t.start.hpp │ │ │ │ ├── assembly_storage_map_resolution_callback_data_get_root_t.end.hpp │ │ │ │ ├── assembly_storage_map_resolution_callback_data_get_root_t.start.hpp │ │ │ │ ├── assembly_storage_map_resolution_callback_data_resolution_beginning_t.end.hpp │ │ │ │ ├── assembly_storage_map_resolution_callback_data_resolution_beginning_t.start.hpp │ │ │ │ ├── assembly_storage_map_resolution_callback_data_resolution_ending_t.end.hpp │ │ │ │ ├── assembly_storage_map_resolution_callback_data_resolution_ending_t.start.hpp │ │ │ │ ├── assembly_storage_map_resolution_callback_data_resolution_successful_t.end.hpp │ │ │ │ ├── assembly_storage_map_resolution_callback_data_resolution_successful_t.start.hpp │ │ │ │ ├── assembly_storage_map_resolution_callback_data_t.end.hpp │ │ │ │ ├── assembly_storage_map_resolution_callback_data_t.start.hpp │ │ │ │ ├── assembly_version_t.end.hpp │ │ │ │ ├── assembly_version_t.start.hpp │ │ │ │ ├── assemblymetadata_t.end.hpp │ │ │ │ ├── assemblymetadata_t.start.hpp │ │ │ │ ├── asta_incoming_call_data_t.end.hpp │ │ │ │ ├── asta_incoming_call_data_t.start.hpp │ │ │ │ ├── asta_incoming_call_list_t.end.hpp │ │ │ │ ├── asta_incoming_call_list_t.start.hpp │ │ │ │ ├── asta_state_t.end.hpp │ │ │ │ ├── asta_state_t.start.hpp │ │ │ │ ├── asta_timed_out_call_info_t.end.hpp │ │ │ │ ├── asta_timed_out_call_info_t.start.hpp │ │ │ │ ├── asta_wait_context_t.end.hpp │ │ │ │ ├── asta_wait_context_t.start.hpp │ │ │ │ ├── async_client_call_retry_context_t.end.hpp │ │ │ │ ├── async_client_call_retry_context_t.start.hpp │ │ │ │ ├── async_com_client_call_t.end.hpp │ │ │ │ ├── async_com_client_call_t.start.hpp │ │ │ │ ├── async_com_server_call_t.end.hpp │ │ │ │ ├── async_com_server_call_t.start.hpp │ │ │ │ ├── async_delegate_storage_t.end.hpp │ │ │ │ ├── async_delegate_storage_t.start.hpp │ │ │ │ ├── async_duplicate_extents_status_t.end.hpp │ │ │ │ ├── async_duplicate_extents_status_t.start.hpp │ │ │ │ ├── async_i_advise_sink2_vtbl_t.end.hpp │ │ │ │ ├── async_i_advise_sink2_vtbl_t.start.hpp │ │ │ │ ├── async_i_advise_sink_vtbl_t.end.hpp │ │ │ │ ├── async_i_advise_sink_vtbl_t.start.hpp │ │ │ │ ├── async_operation_storage_t.end.hpp │ │ │ │ ├── async_operation_storage_t.start.hpp │ │ │ │ ├── atom_basic_information_t.end.hpp │ │ │ │ ├── atom_basic_information_t.start.hpp │ │ │ │ ├── atom_table_information_t.end.hpp │ │ │ │ ├── atom_table_information_t.start.hpp │ │ │ │ ├── authenticode_extra_cert_chain_policy_para_t.end.hpp │ │ │ │ ├── authenticode_extra_cert_chain_policy_para_t.start.hpp │ │ │ │ ├── authenticode_extra_cert_chain_policy_status_t.end.hpp │ │ │ │ ├── authenticode_extra_cert_chain_policy_status_t.start.hpp │ │ │ │ ├── authenticode_ts_extra_cert_chain_policy_para_t.end.hpp │ │ │ │ ├── authenticode_ts_extra_cert_chain_policy_para_t.start.hpp │ │ │ │ ├── auto_blob_t.end.hpp │ │ │ │ ├── auto_blob_t.start.hpp │ │ │ │ ├── auto_net_trace_activity_t.end.hpp │ │ │ │ ├── auto_net_trace_activity_t.start.hpp │ │ │ │ ├── avrf_client_id_wow64_t.end.hpp │ │ │ │ ├── avrf_client_id_wow64_t.start.hpp │ │ │ │ ├── avrf_memory_range_t.end.hpp │ │ │ │ ├── avrf_memory_range_t.start.hpp │ │ │ │ ├── avrf_process_handle_tracing_entry_wow64_t.end.hpp │ │ │ │ ├── avrf_process_handle_tracing_entry_wow64_t.start.hpp │ │ │ │ ├── avrf_process_handle_tracing_query_wow64_t.end.hpp │ │ │ │ ├── avrf_process_handle_tracing_query_wow64_t.start.hpp │ │ │ │ ├── b_crypt_buffer_desc_t.end.hpp │ │ │ │ ├── b_crypt_buffer_desc_t.start.hpp │ │ │ │ ├── b_crypt_buffer_t.end.hpp │ │ │ │ ├── b_crypt_buffer_t.start.hpp │ │ │ │ ├── bcrypt_algorithm_identifier_t.end.hpp │ │ │ │ ├── bcrypt_algorithm_identifier_t.start.hpp │ │ │ │ ├── bcrypt_authenticated_cipher_mode_info_t.end.hpp │ │ │ │ ├── bcrypt_authenticated_cipher_mode_info_t.start.hpp │ │ │ │ ├── bcrypt_dh_key_blob_t.end.hpp │ │ │ │ ├── bcrypt_dh_key_blob_t.start.hpp │ │ │ │ ├── bcrypt_dh_parameter_header_t.end.hpp │ │ │ │ ├── bcrypt_dh_parameter_header_t.start.hpp │ │ │ │ ├── bcrypt_dsa_key_blob_t.end.hpp │ │ │ │ ├── bcrypt_dsa_key_blob_t.start.hpp │ │ │ │ ├── bcrypt_dsa_key_blob_v2_t.end.hpp │ │ │ │ ├── bcrypt_dsa_key_blob_v2_t.start.hpp │ │ │ │ ├── bcrypt_dsa_parameter_header_t.end.hpp │ │ │ │ ├── bcrypt_dsa_parameter_header_t.start.hpp │ │ │ │ ├── bcrypt_dsa_parameter_header_v2_t.end.hpp │ │ │ │ ├── bcrypt_dsa_parameter_header_v2_t.start.hpp │ │ │ │ ├── bcrypt_ecc_curve_names_t.end.hpp │ │ │ │ ├── bcrypt_ecc_curve_names_t.start.hpp │ │ │ │ ├── bcrypt_eccfullkey_blob_t.end.hpp │ │ │ │ ├── bcrypt_eccfullkey_blob_t.start.hpp │ │ │ │ ├── bcrypt_ecckey_blob_t.end.hpp │ │ │ │ ├── bcrypt_ecckey_blob_t.start.hpp │ │ │ │ ├── bcrypt_interface_version_t.end.hpp │ │ │ │ ├── bcrypt_interface_version_t.start.hpp │ │ │ │ ├── bcrypt_key_blob_t.end.hpp │ │ │ │ ├── bcrypt_key_blob_t.start.hpp │ │ │ │ ├── bcrypt_key_data_blob_header_t.end.hpp │ │ │ │ ├── bcrypt_key_data_blob_header_t.start.hpp │ │ │ │ ├── bcrypt_key_lengths_struct_t.end.hpp │ │ │ │ ├── bcrypt_key_lengths_struct_t.start.hpp │ │ │ │ ├── bcrypt_multi_hash_operation_t.end.hpp │ │ │ │ ├── bcrypt_multi_hash_operation_t.start.hpp │ │ │ │ ├── bcrypt_multi_object_length_struct_t.end.hpp │ │ │ │ ├── bcrypt_multi_object_length_struct_t.start.hpp │ │ │ │ ├── bcrypt_oaep_padding_info_t.end.hpp │ │ │ │ ├── bcrypt_oaep_padding_info_t.start.hpp │ │ │ │ ├── bcrypt_oid_list_t.end.hpp │ │ │ │ ├── bcrypt_oid_list_t.start.hpp │ │ │ │ ├── bcrypt_oid_t.end.hpp │ │ │ │ ├── bcrypt_oid_t.start.hpp │ │ │ │ ├── bcrypt_pkcs1_padding_info_t.end.hpp │ │ │ │ ├── bcrypt_pkcs1_padding_info_t.start.hpp │ │ │ │ ├── bcrypt_provider_name_t.end.hpp │ │ │ │ ├── bcrypt_provider_name_t.start.hpp │ │ │ │ ├── bcrypt_pss_padding_info_t.end.hpp │ │ │ │ ├── bcrypt_pss_padding_info_t.start.hpp │ │ │ │ ├── bcrypt_rsakey_blob_t.end.hpp │ │ │ │ ├── bcrypt_rsakey_blob_t.start.hpp │ │ │ │ ├── bitmapv4header_t.end.hpp │ │ │ │ ├── bitmapv4header_t.start.hpp │ │ │ │ ├── bitmapv5header_t.end.hpp │ │ │ │ ├── bitmapv5header_t.start.hpp │ │ │ │ ├── blendfunction_t.end.hpp │ │ │ │ ├── blendfunction_t.start.hpp │ │ │ │ ├── break_on_status_buffer_t.end.hpp │ │ │ │ ├── break_on_status_buffer_t.start.hpp │ │ │ │ ├── bridge_sta_state_t.end.hpp │ │ │ │ ├── bridge_sta_state_t.start.hpp │ │ │ │ ├── bsminfo_t.end.hpp │ │ │ │ ├── bsminfo_t.start.hpp │ │ │ │ ├── bsp_catalog_scm_t.end.hpp │ │ │ │ ├── bsp_catalog_scm_t.start.hpp │ │ │ │ ├── built_in_class_cache_t.end.hpp │ │ │ │ ├── built_in_class_cache_t.start.hpp │ │ │ │ ├── bulk_security_test_data_t.end.hpp │ │ │ │ ├── bulk_security_test_data_t.start.hpp │ │ │ │ ├── by_handle_file_information_t.end.hpp │ │ │ │ ├── by_handle_file_information_t.start.hpp │ │ │ │ ├── byte_blob_t.end.hpp │ │ │ │ ├── byte_blob_t.start.hpp │ │ │ │ ├── byte_sizedarr_t.end.hpp │ │ │ │ ├── byte_sizedarr_t.start.hpp │ │ │ │ ├── c2_security_t.end.hpp │ │ │ │ ├── c2_security_t.start.hpp │ │ │ │ ├── c_abstract_marshaling_stream_t.end.hpp │ │ │ │ ├── c_abstract_marshaling_stream_t.start.hpp │ │ │ │ ├── c_abstract_stream_t.end.hpp │ │ │ │ ├── c_abstract_stream_t.start.hpp │ │ │ │ ├── c_activatable_class_id_hash_table_t.end.hpp │ │ │ │ ├── c_activatable_class_id_hash_table_t.start.hpp │ │ │ │ ├── c_activatable_class_registration_t.end.hpp │ │ │ │ ├── c_activatable_class_registration_t.start.hpp │ │ │ │ ├── c_activation_filter_context_t.end.hpp │ │ │ │ ├── c_activation_filter_context_t.start.hpp │ │ │ │ ├── c_activation_store_t.end.hpp │ │ │ │ ├── c_activation_store_t.start.hpp │ │ │ │ ├── c_addr_exclusion_list_t.end.hpp │ │ │ │ ├── c_addr_exclusion_list_t.start.hpp │ │ │ │ ├── c_agg_id_t.end.hpp │ │ │ │ ├── c_agg_id_t.start.hpp │ │ │ │ ├── c_agile_reference_marshaled_t.end.hpp │ │ │ │ ├── c_agile_reference_marshaled_t.start.hpp │ │ │ │ ├── c_agile_reference_via_git_t.end.hpp │ │ │ │ ├── c_agile_reference_via_git_t.start.hpp │ │ │ │ ├── c_apartment_hash_table_t.end.hpp │ │ │ │ ├── c_apartment_hash_table_t.start.hpp │ │ │ │ ├── c_apt_call_ctrl_t.end.hpp │ │ │ │ ├── c_apt_call_ctrl_t.start.hpp │ │ │ │ ├── c_array_f_value_t.end.hpp │ │ │ │ ├── c_array_f_value_t.start.hpp │ │ │ │ ├── c_async_call_t.end.hpp │ │ │ │ ├── c_async_call_t.start.hpp │ │ │ │ ├── c_async_state_machine_t.end.hpp │ │ │ │ ├── c_async_state_machine_t.start.hpp │ │ │ │ ├── c_async_unknown_mgr_t.end.hpp │ │ │ │ ├── c_async_unknown_mgr_t.start.hpp │ │ │ │ ├── c_atom_t.end.hpp │ │ │ │ ├── c_atom_t.start.hpp │ │ │ │ ├── c_base_interface_data_marshaling_stream_t.end.hpp │ │ │ │ ├── c_base_interface_data_marshaling_stream_t.start.hpp │ │ │ │ ├── c_base_m_interface_pointer_marshaling_stream_t.end.hpp │ │ │ │ ├── c_base_m_interface_pointer_marshaling_stream_t.start.hpp │ │ │ │ ├── c_base_marshaling_stream_on_buffer_t.end.hpp │ │ │ │ ├── c_base_marshaling_stream_on_buffer_t.start.hpp │ │ │ │ ├── c_bool_t.end.hpp │ │ │ │ ├── c_bool_t.start.hpp │ │ │ │ ├── c_buffer_t.end.hpp │ │ │ │ ├── c_buffer_t.start.hpp │ │ │ │ ├── c_cache_t.end.hpp │ │ │ │ ├── c_cache_t.start.hpp │ │ │ │ ├── c_channel_handle_t.end.hpp │ │ │ │ ├── c_channel_handle_t.start.hpp │ │ │ │ ├── c_channel_object_t.end.hpp │ │ │ │ ├── c_channel_object_t.start.hpp │ │ │ │ ├── c_cli_modal_loop_t.end.hpp │ │ │ │ ├── c_cli_modal_loop_t.start.hpp │ │ │ │ ├── c_client_call_mgr_t.end.hpp │ │ │ │ ├── c_client_call_mgr_t.start.hpp │ │ │ │ ├── c_client_call_t.end.hpp │ │ │ │ ├── c_client_call_t.start.hpp │ │ │ │ ├── c_client_channel_t.end.hpp │ │ │ │ ├── c_client_channel_t.start.hpp │ │ │ │ ├── c_client_security_t.end.hpp │ │ │ │ ├── c_client_security_t.start.hpp │ │ │ │ ├── c_com_activator_t.end.hpp │ │ │ │ ├── c_com_activator_t.start.hpp │ │ │ │ ├── c_com_apartment_t.end.hpp │ │ │ │ ├── c_com_apartment_t.start.hpp │ │ │ │ ├── c_com_catalog_t.end.hpp │ │ │ │ ├── c_com_catalog_t.start.hpp │ │ │ │ ├── c_com_class_info_t.end.hpp │ │ │ │ ├── c_com_class_info_t.start.hpp │ │ │ │ ├── c_com_no_class_info_t.end.hpp │ │ │ │ ├── c_com_no_class_info_t.start.hpp │ │ │ │ ├── c_com_process_info_t.end.hpp │ │ │ │ ├── c_com_process_info_t.start.hpp │ │ │ │ ├── c_com_reg_catalog_t.end.hpp │ │ │ │ ├── c_com_reg_catalog_t.start.hpp │ │ │ │ ├── c_com_sx_s_catalog_t.end.hpp │ │ │ │ ├── c_com_sx_s_catalog_t.start.hpp │ │ │ │ ├── c_com_sx_s_class_info_t.end.hpp │ │ │ │ ├── c_com_sx_s_class_info_t.start.hpp │ │ │ │ ├── c_context_life_t.end.hpp │ │ │ │ ├── c_context_life_t.start.hpp │ │ │ │ ├── c_context_prop_list_t.end.hpp │ │ │ │ ├── c_context_prop_list_t.start.hpp │ │ │ │ ├── c_context_switcher_t.end.hpp │ │ │ │ ├── c_context_switcher_t.start.hpp │ │ │ │ ├── c_continue_t.end.hpp │ │ │ │ ├── c_continue_t.start.hpp │ │ │ │ ├── c_ctx_call_t.end.hpp │ │ │ │ ├── c_ctx_call_t.start.hpp │ │ │ │ ├── c_ctx_chnl_t.end.hpp │ │ │ │ ├── c_ctx_chnl_t.start.hpp │ │ │ │ ├── c_ctx_com_chnl_t.end.hpp │ │ │ │ ├── c_ctx_com_chnl_t.start.hpp │ │ │ │ ├── c_ctx_connection_manager_t.end.hpp │ │ │ │ ├── c_ctx_connection_manager_t.start.hpp │ │ │ │ ├── c_ctx_prop_hash_table_t.end.hpp │ │ │ │ ├── c_ctx_prop_hash_table_t.start.hpp │ │ │ │ ├── c_ctx_uuid_hash_table_t.end.hpp │ │ │ │ ├── c_ctx_uuid_hash_table_t.start.hpp │ │ │ │ ├── c_custom_attribute_enumerator_t.end.hpp │ │ │ │ ├── c_custom_attribute_enumerator_t.start.hpp │ │ │ │ ├── c_custom_properties_t.end.hpp │ │ │ │ ├── c_custom_properties_t.start.hpp │ │ │ │ ├── c_debug_event_fire_t.end.hpp │ │ │ │ ├── c_debug_event_fire_t.start.hpp │ │ │ │ ├── c_dest_object_t.end.hpp │ │ │ │ ├── c_dest_object_t.start.hpp │ │ │ │ ├── c_dest_object_wrapper_t.end.hpp │ │ │ │ ├── c_dest_object_wrapper_t.start.hpp │ │ │ │ ├── c_dll_host_t.end.hpp │ │ │ │ ├── c_dll_host_t.start.hpp │ │ │ │ ├── c_dual_string_array_t.end.hpp │ │ │ │ ├── c_dual_string_array_t.start.hpp │ │ │ │ ├── c_eff_perms_cache_luid_t.end.hpp │ │ │ │ ├── c_eff_perms_cache_luid_t.start.hpp │ │ │ │ ├── c_endpoint_entry_t.end.hpp │ │ │ │ ├── c_endpoint_entry_t.start.hpp │ │ │ │ ├── c_endpoints_table_t.end.hpp │ │ │ │ ├── c_endpoints_table_t.start.hpp │ │ │ │ ├── c_enum_context_props_t.end.hpp │ │ │ │ ├── c_enum_context_props_t.start.hpp │ │ │ │ ├── c_error_object_t.end.hpp │ │ │ │ ├── c_error_object_t.start.hpp │ │ │ │ ├── c_event_enumerator_t.end.hpp │ │ │ │ ├── c_event_enumerator_t.start.hpp │ │ │ │ ├── c_ext_hash_table_t.end.hpp │ │ │ │ ├── c_ext_hash_table_t.start.hpp │ │ │ │ ├── c_extension_all_packages_iterator_t.end.hpp │ │ │ │ ├── c_extension_all_packages_iterator_t.start.hpp │ │ │ │ ├── c_extension_main_and_optional_packages_iterator_t.end.hpp │ │ │ │ ├── c_extension_main_and_optional_packages_iterator_t.start.hpp │ │ │ │ ├── c_extension_packages_iterator_t.end.hpp │ │ │ │ ├── c_extension_packages_iterator_t.start.hpp │ │ │ │ ├── c_extension_registration_t.end.hpp │ │ │ │ ├── c_extension_registration_t.start.hpp │ │ │ │ ├── c_extension_registrations_iterator_t.end.hpp │ │ │ │ ├── c_extension_registrations_iterator_t.start.hpp │ │ │ │ ├── c_fast_bh_t.end.hpp │ │ │ │ ├── c_fast_bh_t.start.hpp │ │ │ │ ├── c_fm_ctrl_unknown_t.end.hpp │ │ │ │ ├── c_fm_ctrl_unknown_t.start.hpp │ │ │ │ ├── c_free_marshaler_t.end.hpp │ │ │ │ ├── c_free_marshaler_t.start.hpp │ │ │ │ ├── c_global_options_t.end.hpp │ │ │ │ ├── c_global_options_t.start.hpp │ │ │ │ ├── c_guid_str_t.end.hpp │ │ │ │ ├── c_guid_str_t.start.hpp │ │ │ │ ├── c_hash_table_t.end.hpp │ │ │ │ ├── c_hash_table_t.start.hpp │ │ │ │ ├── c_hwnd_t.end.hpp │ │ │ │ ├── c_hwnd_t.start.hpp │ │ │ │ ├── c_interface_impl_enumerator_t.end.hpp │ │ │ │ ├── c_interface_impl_enumerator_t.start.hpp │ │ │ │ ├── c_internal_page_allocator_t.end.hpp │ │ │ │ ├── c_internal_page_allocator_t.start.hpp │ │ │ │ ├── c_list_element_t.end.hpp │ │ │ │ ├── c_list_element_t.start.hpp │ │ │ │ ├── c_local_machine_names_t.end.hpp │ │ │ │ ├── c_local_machine_names_t.start.hpp │ │ │ │ ├── c_lock2_t.end.hpp │ │ │ │ ├── c_lock2_t.start.hpp │ │ │ │ ├── c_machine_global_object_table_t.end.hpp │ │ │ │ ├── c_machine_global_object_table_t.start.hpp │ │ │ │ ├── c_machine_names_helper_t.end.hpp │ │ │ │ ├── c_machine_names_helper_t.start.hpp │ │ │ │ ├── c_malloc_t.end.hpp │ │ │ │ ├── c_malloc_t.start.hpp │ │ │ │ ├── c_manual_reset_event_t.end.hpp │ │ │ │ ├── c_manual_reset_event_t.start.hpp │ │ │ │ ├── c_map_key_to_value_t.end.hpp │ │ │ │ ├── c_map_key_to_value_t.start.hpp │ │ │ │ ├── c_marshaling_stream_on_user_marshal_callback_t.end.hpp │ │ │ │ ├── c_marshaling_stream_on_user_marshal_callback_t.start.hpp │ │ │ │ ├── c_mem_stm_t.end.hpp │ │ │ │ ├── c_mem_stm_t.start.hpp │ │ │ │ ├── c_member_ref_enumerator_t.end.hpp │ │ │ │ ├── c_member_ref_enumerator_t.start.hpp │ │ │ │ ├── c_message_call_t.end.hpp │ │ │ │ ├── c_message_call_t.start.hpp │ │ │ │ ├── c_method_enumerator_t.end.hpp │ │ │ │ ├── c_method_enumerator_t.start.hpp │ │ │ │ ├── c_method_parameter_enumerator_t.end.hpp │ │ │ │ ├── c_method_parameter_enumerator_t.start.hpp │ │ │ │ ├── c_mgot_item_t.end.hpp │ │ │ │ ├── c_mgot_item_t.start.hpp │ │ │ │ ├── c_multi_guid_hash_table_t.end.hpp │ │ │ │ ├── c_multi_guid_hash_table_t.start.hpp │ │ │ │ ├── c_mutex_sem2_t.end.hpp │ │ │ │ ├── c_mutex_sem2_t.start.hpp │ │ │ │ ├── c_name_hash_table_t.end.hpp │ │ │ │ ├── c_name_hash_table_t.start.hpp │ │ │ │ ├── c_ndr_stream_t.end.hpp │ │ │ │ ├── c_ndr_stream_t.start.hpp │ │ │ │ ├── c_no_enum_t.end.hpp │ │ │ │ ├── c_no_enum_t.start.hpp │ │ │ │ ├── c_obj_server_t.end.hpp │ │ │ │ ├── c_obj_server_t.start.hpp │ │ │ │ ├── c_object_context_t.end.hpp │ │ │ │ ├── c_object_context_t.start.hpp │ │ │ │ ├── c_ole32_debug_event_fire_t.end.hpp │ │ │ │ ├── c_ole32_debug_event_fire_t.start.hpp │ │ │ │ ├── c_ole_condition_variable_t.end.hpp │ │ │ │ ├── c_ole_condition_variable_t.start.hpp │ │ │ │ ├── c_ole_static_lock_t.end.hpp │ │ │ │ ├── c_ole_static_lock_t.start.hpp │ │ │ │ ├── c_ole_static_mutex_sem_t.end.hpp │ │ │ │ ├── c_ole_static_mutex_sem_t.start.hpp │ │ │ │ ├── c_ole_tls_t.end.hpp │ │ │ │ ├── c_ole_tls_t.start.hpp │ │ │ │ ├── c_packaged_com_catalog_t.end.hpp │ │ │ │ ├── c_packaged_com_catalog_t.start.hpp │ │ │ │ ├── c_page_allocator_t.end.hpp │ │ │ │ ├── c_page_allocator_t.start.hpp │ │ │ │ ├── c_per_interface_ps_factory_t.end.hpp │ │ │ │ ├── c_per_interface_ps_factory_t.start.hpp │ │ │ │ ├── c_pipe_proxy_imp_t.end.hpp │ │ │ │ ├── c_pipe_proxy_imp_t.start.hpp │ │ │ │ ├── c_pipe_ps_factory_t.end.hpp │ │ │ │ ├── c_pipe_ps_factory_t.start.hpp │ │ │ │ ├── c_pointer_hash_table_t.end.hpp │ │ │ │ ├── c_pointer_hash_table_t.start.hpp │ │ │ │ ├── c_policy_set_t.end.hpp │ │ │ │ ├── c_policy_set_t.start.hpp │ │ │ │ ├── c_private_hive_catalog_t.end.hpp │ │ │ │ ├── c_private_hive_catalog_t.start.hpp │ │ │ │ ├── c_proc_gen_t.end.hpp │ │ │ │ ├── c_proc_gen_t.start.hpp │ │ │ │ ├── c_property_enumerator_t.end.hpp │ │ │ │ ├── c_property_enumerator_t.start.hpp │ │ │ │ ├── c_punk_for_release_t.end.hpp │ │ │ │ ├── c_punk_for_release_t.start.hpp │ │ │ │ ├── c_read_interface_data_from_internal_source_marshaling_stream_t.end.hpp │ │ │ │ ├── c_read_interface_data_from_internal_source_marshaling_stream_t.start.hpp │ │ │ │ ├── c_read_interface_data_with_source_attributes_marshaling_stream_t.end.hpp │ │ │ │ ├── c_read_interface_data_with_source_attributes_marshaling_stream_t.start.hpp │ │ │ │ ├── c_read_m_interface_pointer_with_source_attributes_marshaling_stream_t.end.hpp │ │ │ │ ├── c_read_m_interface_pointer_with_source_attributes_marshaling_stream_t.start.hpp │ │ │ │ ├── c_read_with_source_attributes_marshaling_stream_on_buffer_t.end.hpp │ │ │ │ ├── c_read_with_source_attributes_marshaling_stream_on_buffer_t.start.hpp │ │ │ │ ├── c_ref_cache_t.end.hpp │ │ │ │ ├── c_ref_cache_t.start.hpp │ │ │ │ ├── c_ref_mutex_auto_lock_t.end.hpp │ │ │ │ ├── c_ref_mutex_auto_lock_t.start.hpp │ │ │ │ ├── c_ref_mutex_sem_t.end.hpp │ │ │ │ ├── c_ref_mutex_sem_t.start.hpp │ │ │ │ ├── c_remote_unknown_t.end.hpp │ │ │ │ ├── c_remote_unknown_t.start.hpp │ │ │ │ ├── c_restricted_error_t.end.hpp │ │ │ │ ├── c_restricted_error_t.start.hpp │ │ │ │ ├── c_restricted_error_wrapper_t.end.hpp │ │ │ │ ├── c_restricted_error_wrapper_t.start.hpp │ │ │ │ ├── c_rot_hint_table_t.end.hpp │ │ │ │ ├── c_rot_hint_table_t.start.hpp │ │ │ │ ├── c_rpc_call_t.end.hpp │ │ │ │ ├── c_rpc_call_t.start.hpp │ │ │ │ ├── c_rpc_helper_t.end.hpp │ │ │ │ ├── c_rpc_helper_t.start.hpp │ │ │ │ ├── c_rpc_options_t.end.hpp │ │ │ │ ├── c_rpc_options_t.start.hpp │ │ │ │ ├── c_rpc_resolver_t.end.hpp │ │ │ │ ├── c_rpc_resolver_t.start.hpp │ │ │ │ ├── c_rpc_thread_t.end.hpp │ │ │ │ ├── c_rpc_thread_t.start.hpp │ │ │ │ ├── c_server_channel_t.end.hpp │ │ │ │ ├── c_server_channel_t.start.hpp │ │ │ │ ├── c_server_security_t.end.hpp │ │ │ │ ├── c_server_security_t.start.hpp │ │ │ │ ├── c_sid_str_t.end.hpp │ │ │ │ ├── c_sid_str_t.start.hpp │ │ │ │ ├── c_split_qi_t.end.hpp │ │ │ │ ├── c_split_qi_t.start.hpp │ │ │ │ ├── c_spy_table_t.end.hpp │ │ │ │ ├── c_spy_table_t.start.hpp │ │ │ │ ├── c_srv_call_state_t.end.hpp │ │ │ │ ├── c_srv_call_state_t.start.hpp │ │ │ │ ├── c_static_read_lock_t.end.hpp │ │ │ │ ├── c_static_read_lock_t.start.hpp │ │ │ │ ├── c_static_write_lock_t.end.hpp │ │ │ │ ├── c_static_write_lock_t.start.hpp │ │ │ │ ├── c_std_class_factory_t.end.hpp │ │ │ │ ├── c_std_class_factory_t.start.hpp │ │ │ │ ├── c_std_event_t.end.hpp │ │ │ │ ├── c_std_event_t.start.hpp │ │ │ │ ├── c_std_identity_t.end.hpp │ │ │ │ ├── c_std_identity_t.start.hpp │ │ │ │ ├── c_std_marshal_t.end.hpp │ │ │ │ ├── c_std_marshal_t.start.hpp │ │ │ │ ├── c_std_proxy_buffer_map_t.end.hpp │ │ │ │ ├── c_std_proxy_buffer_map_t.start.hpp │ │ │ │ ├── c_std_wrapper_t.end.hpp │ │ │ │ ├── c_std_wrapper_t.start.hpp │ │ │ │ ├── c_stm_buf_read_t.end.hpp │ │ │ │ ├── c_stm_buf_read_t.start.hpp │ │ │ │ ├── c_stm_buf_t.end.hpp │ │ │ │ ├── c_stm_buf_t.start.hpp │ │ │ │ ├── c_stm_buf_write_t.end.hpp │ │ │ │ ├── c_stm_buf_write_t.start.hpp │ │ │ │ ├── c_stream_on_buffer_t.end.hpp │ │ │ │ ├── c_stream_on_buffer_t.start.hpp │ │ │ │ ├── c_string_hash_table_t.end.hpp │ │ │ │ ├── c_string_hash_table_t.start.hpp │ │ │ │ ├── c_surrogate_activator_t.end.hpp │ │ │ │ ├── c_surrogate_activator_t.start.hpp │ │ │ │ ├── c_surrogate_process_activator_t.end.hpp │ │ │ │ ├── c_surrogate_process_activator_t.start.hpp │ │ │ │ ├── c_surrogated_object_list_t.end.hpp │ │ │ │ ├── c_surrogated_object_list_t.start.hpp │ │ │ │ ├── c_suspend_monitor_t.end.hpp │ │ │ │ ├── c_suspend_monitor_t.start.hpp │ │ │ │ ├── c_sync_client_call_t.end.hpp │ │ │ │ ├── c_sync_client_call_t.start.hpp │ │ │ │ ├── c_synchronize_container_t.end.hpp │ │ │ │ ├── c_synchronize_container_t.start.hpp │ │ │ │ ├── c_system_registry_catalog_t.end.hpp │ │ │ │ ├── c_system_registry_catalog_t.start.hpp │ │ │ │ ├── c_thread_stack_t.end.hpp │ │ │ │ ├── c_thread_stack_t.start.hpp │ │ │ │ ├── c_tmp_mk_eq_buf_t.end.hpp │ │ │ │ ├── c_tmp_mk_eq_buf_t.start.hpp │ │ │ │ ├── c_type_factory_t.end.hpp │ │ │ │ ├── c_type_factory_t.start.hpp │ │ │ │ ├── c_type_field_enumerator_t.end.hpp │ │ │ │ ├── c_type_field_enumerator_t.start.hpp │ │ │ │ ├── c_type_gen_t.end.hpp │ │ │ │ ├── c_type_gen_t.start.hpp │ │ │ │ ├── c_type_marshal_t.end.hpp │ │ │ │ ├── c_type_marshal_t.start.hpp │ │ │ │ ├── c_user_marshal_info_t.end.hpp │ │ │ │ ├── c_user_marshal_info_t.start.hpp │ │ │ │ ├── c_verifier_stack_data_t.end.hpp │ │ │ │ ├── c_verifier_stack_data_t.start.hpp │ │ │ │ ├── c_verifier_tls_data_t.end.hpp │ │ │ │ ├── c_verifier_tls_data_t.start.hpp │ │ │ │ ├── c_win_rt_activation_store_catalog_t.end.hpp │ │ │ │ ├── c_win_rt_activation_store_catalog_t.start.hpp │ │ │ │ ├── c_winrt_async_client_call_channel_t.end.hpp │ │ │ │ ├── c_winrt_async_client_call_channel_t.start.hpp │ │ │ │ ├── c_winrt_async_server_call_channel_t.end.hpp │ │ │ │ ├── c_winrt_async_server_call_channel_t.start.hpp │ │ │ │ ├── c_world_security_descriptor_t.end.hpp │ │ │ │ ├── c_world_security_descriptor_t.start.hpp │ │ │ │ ├── c_write_interface_data_marshaling_stream_t.end.hpp │ │ │ │ ├── c_write_interface_data_marshaling_stream_t.start.hpp │ │ │ │ ├── c_write_marshaling_stream_on_buffer_t.end.hpp │ │ │ │ ├── c_write_marshaling_stream_on_buffer_t.start.hpp │ │ │ │ ├── call_chain_info_for_local_this_t.end.hpp │ │ │ │ ├── call_chain_info_for_local_this_t.start.hpp │ │ │ │ ├── call_frame_t.end.hpp │ │ │ │ ├── call_frame_t.start.hpp │ │ │ │ ├── caller_info_t.end.hpp │ │ │ │ ├── caller_info_t.start.hpp │ │ │ │ ├── careful_buffer_reader_t.end.hpp │ │ │ │ ├── careful_buffer_reader_t.start.hpp │ │ │ │ ├── carefully_query_new_interface_context_t.end.hpp │ │ │ │ ├── carefully_query_new_interface_context_t.start.hpp │ │ │ │ ├── causality_control_callback_t.end.hpp │ │ │ │ ├── causality_control_callback_t.start.hpp │ │ │ │ ├── cdword_hash_table_t.end.hpp │ │ │ │ ├── cdword_hash_table_t.start.hpp │ │ │ │ ├── cee_section_reloc_extra_t.end.hpp │ │ │ │ ├── cee_section_reloc_extra_t.start.hpp │ │ │ │ ├── cert_access_description_t.end.hpp │ │ │ │ ├── cert_access_description_t.start.hpp │ │ │ │ ├── cert_alt_name_entry_t.end.hpp │ │ │ │ ├── cert_alt_name_entry_t.start.hpp │ │ │ │ ├── cert_alt_name_info_t.end.hpp │ │ │ │ ├── cert_alt_name_info_t.start.hpp │ │ │ │ ├── cert_authority_info_access_t.end.hpp │ │ │ │ ├── cert_authority_info_access_t.start.hpp │ │ │ │ ├── cert_authority_key_id2_info_t.end.hpp │ │ │ │ ├── cert_authority_key_id2_info_t.start.hpp │ │ │ │ ├── cert_authority_key_id_info_t.end.hpp │ │ │ │ ├── cert_authority_key_id_info_t.start.hpp │ │ │ │ ├── cert_basic_constraints2_info_t.end.hpp │ │ │ │ ├── cert_basic_constraints2_info_t.start.hpp │ │ │ │ ├── cert_basic_constraints_info_t.end.hpp │ │ │ │ ├── cert_basic_constraints_info_t.start.hpp │ │ │ │ ├── cert_biometric_data_t.end.hpp │ │ │ │ ├── cert_biometric_data_t.start.hpp │ │ │ │ ├── cert_biometric_ext_info_t.end.hpp │ │ │ │ ├── cert_biometric_ext_info_t.start.hpp │ │ │ │ ├── cert_chain_context_t.end.hpp │ │ │ │ ├── cert_chain_context_t.start.hpp │ │ │ │ ├── cert_chain_element_t.end.hpp │ │ │ │ ├── cert_chain_element_t.start.hpp │ │ │ │ ├── cert_chain_engine_config_t.end.hpp │ │ │ │ ├── cert_chain_engine_config_t.start.hpp │ │ │ │ ├── cert_chain_find_by_issuer_para_t.end.hpp │ │ │ │ ├── cert_chain_find_by_issuer_para_t.start.hpp │ │ │ │ ├── cert_chain_para_t.end.hpp │ │ │ │ ├── cert_chain_para_t.start.hpp │ │ │ │ ├── cert_chain_policy_para_t.end.hpp │ │ │ │ ├── cert_chain_policy_para_t.start.hpp │ │ │ │ ├── cert_chain_policy_status_t.end.hpp │ │ │ │ ├── cert_chain_policy_status_t.start.hpp │ │ │ │ ├── cert_chain_t.end.hpp │ │ │ │ ├── cert_chain_t.start.hpp │ │ │ │ ├── cert_context_t.end.hpp │ │ │ │ ├── cert_context_t.start.hpp │ │ │ │ ├── cert_create_context_para_t.end.hpp │ │ │ │ ├── cert_create_context_para_t.start.hpp │ │ │ │ ├── cert_crl_context_pair_t.end.hpp │ │ │ │ ├── cert_crl_context_pair_t.start.hpp │ │ │ │ ├── cert_dh_parameters_t.end.hpp │ │ │ │ ├── cert_dh_parameters_t.start.hpp │ │ │ │ ├── cert_dss_parameters_t.end.hpp │ │ │ │ ├── cert_dss_parameters_t.start.hpp │ │ │ │ ├── cert_ecc_signature_t.end.hpp │ │ │ │ ├── cert_ecc_signature_t.start.hpp │ │ │ │ ├── cert_extension_t.end.hpp │ │ │ │ ├── cert_extension_t.start.hpp │ │ │ │ ├── cert_extensions_t.end.hpp │ │ │ │ ├── cert_extensions_t.start.hpp │ │ │ │ ├── cert_fortezza_data_prop_t.end.hpp │ │ │ │ ├── cert_fortezza_data_prop_t.start.hpp │ │ │ │ ├── cert_general_subtree_t.end.hpp │ │ │ │ ├── cert_general_subtree_t.start.hpp │ │ │ │ ├── cert_hashed_url_t.end.hpp │ │ │ │ ├── cert_hashed_url_t.start.hpp │ │ │ │ ├── cert_id_t.end.hpp │ │ │ │ ├── cert_id_t.start.hpp │ │ │ │ ├── cert_info_t.end.hpp │ │ │ │ ├── cert_info_t.start.hpp │ │ │ │ ├── cert_issuer_serial_number_t.end.hpp │ │ │ │ ├── cert_issuer_serial_number_t.start.hpp │ │ │ │ ├── cert_key_attributes_info_t.end.hpp │ │ │ │ ├── cert_key_attributes_info_t.start.hpp │ │ │ │ ├── cert_key_context_t.end.hpp │ │ │ │ ├── cert_key_context_t.start.hpp │ │ │ │ ├── cert_key_usage_restriction_info_t.end.hpp │ │ │ │ ├── cert_key_usage_restriction_info_t.start.hpp │ │ │ │ ├── cert_keygen_request_info_t.end.hpp │ │ │ │ ├── cert_keygen_request_info_t.start.hpp │ │ │ │ ├── cert_ldap_store_opened_para_t.end.hpp │ │ │ │ ├── cert_ldap_store_opened_para_t.start.hpp │ │ │ │ ├── cert_logotype_audio_info_t.end.hpp │ │ │ │ ├── cert_logotype_audio_info_t.start.hpp │ │ │ │ ├── cert_logotype_audio_t.end.hpp │ │ │ │ ├── cert_logotype_audio_t.start.hpp │ │ │ │ ├── cert_logotype_data_t.end.hpp │ │ │ │ ├── cert_logotype_data_t.start.hpp │ │ │ │ ├── cert_logotype_details_t.end.hpp │ │ │ │ ├── cert_logotype_details_t.start.hpp │ │ │ │ ├── cert_logotype_ext_info_t.end.hpp │ │ │ │ ├── cert_logotype_ext_info_t.start.hpp │ │ │ │ ├── cert_logotype_image_info_t.end.hpp │ │ │ │ ├── cert_logotype_image_info_t.start.hpp │ │ │ │ ├── cert_logotype_image_t.end.hpp │ │ │ │ ├── cert_logotype_image_t.start.hpp │ │ │ │ ├── cert_logotype_info_t.end.hpp │ │ │ │ ├── cert_logotype_info_t.start.hpp │ │ │ │ ├── cert_logotype_reference_t.end.hpp │ │ │ │ ├── cert_logotype_reference_t.start.hpp │ │ │ │ ├── cert_name_constraints_info_t.end.hpp │ │ │ │ ├── cert_name_constraints_info_t.start.hpp │ │ │ │ ├── cert_name_info_t.end.hpp │ │ │ │ ├── cert_name_info_t.start.hpp │ │ │ │ ├── cert_name_value_t.end.hpp │ │ │ │ ├── cert_name_value_t.start.hpp │ │ │ │ ├── cert_or_crl_blob_t.end.hpp │ │ │ │ ├── cert_or_crl_blob_t.start.hpp │ │ │ │ ├── cert_or_crl_bundle_t.end.hpp │ │ │ │ ├── cert_or_crl_bundle_t.start.hpp │ │ │ │ ├── cert_other_logotype_info_t.end.hpp │ │ │ │ ├── cert_other_logotype_info_t.start.hpp │ │ │ │ ├── cert_other_name_t.end.hpp │ │ │ │ ├── cert_other_name_t.start.hpp │ │ │ │ ├── cert_pair_t.end.hpp │ │ │ │ ├── cert_pair_t.start.hpp │ │ │ │ ├── cert_physical_store_info_t.end.hpp │ │ │ │ ├── cert_physical_store_info_t.start.hpp │ │ │ │ ├── cert_policies_info_t.end.hpp │ │ │ │ ├── cert_policies_info_t.start.hpp │ │ │ │ ├── cert_policy95_qualifier1_t.end.hpp │ │ │ │ ├── cert_policy95_qualifier1_t.start.hpp │ │ │ │ ├── cert_policy_constraints_info_t.end.hpp │ │ │ │ ├── cert_policy_constraints_info_t.start.hpp │ │ │ │ ├── cert_policy_id_t.end.hpp │ │ │ │ ├── cert_policy_id_t.start.hpp │ │ │ │ ├── cert_policy_info_t.end.hpp │ │ │ │ ├── cert_policy_info_t.start.hpp │ │ │ │ ├── cert_policy_mapping_t.end.hpp │ │ │ │ ├── cert_policy_mapping_t.start.hpp │ │ │ │ ├── cert_policy_mappings_info_t.end.hpp │ │ │ │ ├── cert_policy_mappings_info_t.start.hpp │ │ │ │ ├── cert_policy_qualifier_info_t.end.hpp │ │ │ │ ├── cert_policy_qualifier_info_t.start.hpp │ │ │ │ ├── cert_policy_qualifier_notice_reference_t.end.hpp │ │ │ │ ├── cert_policy_qualifier_notice_reference_t.start.hpp │ │ │ │ ├── cert_policy_qualifier_user_notice_t.end.hpp │ │ │ │ ├── cert_policy_qualifier_user_notice_t.start.hpp │ │ │ │ ├── cert_private_key_validity_t.end.hpp │ │ │ │ ├── cert_private_key_validity_t.start.hpp │ │ │ │ ├── cert_public_key_info_t.end.hpp │ │ │ │ ├── cert_public_key_info_t.start.hpp │ │ │ │ ├── cert_qc_statement_t.end.hpp │ │ │ │ ├── cert_qc_statement_t.start.hpp │ │ │ │ ├── cert_qc_statements_ext_info_t.end.hpp │ │ │ │ ├── cert_qc_statements_ext_info_t.start.hpp │ │ │ │ ├── cert_rdn_attr_t.end.hpp │ │ │ │ ├── cert_rdn_attr_t.start.hpp │ │ │ │ ├── cert_rdn_t.end.hpp │ │ │ │ ├── cert_rdn_t.start.hpp │ │ │ │ ├── cert_registry_store_client_gpt_para_t.end.hpp │ │ │ │ ├── cert_registry_store_client_gpt_para_t.start.hpp │ │ │ │ ├── cert_registry_store_roaming_para_t.end.hpp │ │ │ │ ├── cert_registry_store_roaming_para_t.start.hpp │ │ │ │ ├── cert_request_info_t.end.hpp │ │ │ │ ├── cert_request_info_t.start.hpp │ │ │ │ ├── cert_revocation_chain_para_t.end.hpp │ │ │ │ ├── cert_revocation_chain_para_t.start.hpp │ │ │ │ ├── cert_revocation_crl_info_t.end.hpp │ │ │ │ ├── cert_revocation_crl_info_t.start.hpp │ │ │ │ ├── cert_revocation_info_t.end.hpp │ │ │ │ ├── cert_revocation_info_t.start.hpp │ │ │ │ ├── cert_revocation_para_t.end.hpp │ │ │ │ ├── cert_revocation_para_t.start.hpp │ │ │ │ ├── cert_revocation_status_t.end.hpp │ │ │ │ ├── cert_revocation_status_t.start.hpp │ │ │ │ ├── cert_select_chain_para_t.end.hpp │ │ │ │ ├── cert_select_chain_para_t.start.hpp │ │ │ │ ├── cert_select_criteria_t.end.hpp │ │ │ │ ├── cert_select_criteria_t.start.hpp │ │ │ │ ├── cert_server_ocsp_response_context_t.end.hpp │ │ │ │ ├── cert_server_ocsp_response_context_t.start.hpp │ │ │ │ ├── cert_server_ocsp_response_open_para_t.end.hpp │ │ │ │ ├── cert_server_ocsp_response_open_para_t.start.hpp │ │ │ │ ├── cert_signed_content_info_t.end.hpp │ │ │ │ ├── cert_signed_content_info_t.start.hpp │ │ │ │ ├── cert_simple_chain_t.end.hpp │ │ │ │ ├── cert_simple_chain_t.start.hpp │ │ │ │ ├── cert_store_prov_find_info_t.end.hpp │ │ │ │ ├── cert_store_prov_find_info_t.start.hpp │ │ │ │ ├── cert_store_prov_info_t.end.hpp │ │ │ │ ├── cert_store_prov_info_t.start.hpp │ │ │ │ ├── cert_strong_sign_para_t.end.hpp │ │ │ │ ├── cert_strong_sign_para_t.start.hpp │ │ │ │ ├── cert_strong_sign_serialized_info_t.end.hpp │ │ │ │ ├── cert_strong_sign_serialized_info_t.start.hpp │ │ │ │ ├── cert_supported_algorithm_info_t.end.hpp │ │ │ │ ├── cert_supported_algorithm_info_t.start.hpp │ │ │ │ ├── cert_system_store_info_t.end.hpp │ │ │ │ ├── cert_system_store_info_t.start.hpp │ │ │ │ ├── cert_system_store_relocate_para_t.end.hpp │ │ │ │ ├── cert_system_store_relocate_para_t.start.hpp │ │ │ │ ├── cert_template_ext_t.end.hpp │ │ │ │ ├── cert_template_ext_t.start.hpp │ │ │ │ ├── cert_tpm_specification_info_t.end.hpp │ │ │ │ ├── cert_tpm_specification_info_t.start.hpp │ │ │ │ ├── cert_trust_list_info_t.end.hpp │ │ │ │ ├── cert_trust_list_info_t.start.hpp │ │ │ │ ├── cert_trust_status_t.end.hpp │ │ │ │ ├── cert_trust_status_t.start.hpp │ │ │ │ ├── cert_usage_match_t.end.hpp │ │ │ │ ├── cert_usage_match_t.start.hpp │ │ │ │ ├── cert_x942_dh_parameters_t.end.hpp │ │ │ │ ├── cert_x942_dh_parameters_t.start.hpp │ │ │ │ ├── cert_x942_dh_validation_params_t.end.hpp │ │ │ │ ├── cert_x942_dh_validation_params_t.start.hpp │ │ │ │ ├── cf_access_control_t.end.hpp │ │ │ │ ├── cf_access_control_t.start.hpp │ │ │ │ ├── cfg_call_target_info_t.end.hpp │ │ │ │ ├── cfg_call_target_info_t.start.hpp │ │ │ │ ├── cfg_call_target_list_information_t.end.hpp │ │ │ │ ├── cfg_call_target_list_information_t.start.hpp │ │ │ │ ├── cgip_message_param_t.end.hpp │ │ │ │ ├── cgip_message_param_t.start.hpp │ │ │ │ ├── char_info_t.end.hpp │ │ │ │ ├── char_info_t.start.hpp │ │ │ │ ├── chstring_util_t.end.hpp │ │ │ │ ├── chstring_util_t.start.hpp │ │ │ │ ├── cid_object_t.end.hpp │ │ │ │ ├── cid_object_t.start.hpp │ │ │ │ ├── claim_security_attribute_fqbn_value_t.end.hpp │ │ │ │ ├── claim_security_attribute_fqbn_value_t.start.hpp │ │ │ │ ├── claim_security_attribute_octet_string_value_t.end.hpp │ │ │ │ ├── claim_security_attribute_octet_string_value_t.start.hpp │ │ │ │ ├── claim_security_attribute_relative_v1_t.end.hpp │ │ │ │ ├── claim_security_attribute_relative_v1_t.start.hpp │ │ │ │ ├── claim_security_attribute_v1_t.end.hpp │ │ │ │ ├── claim_security_attribute_v1_t.start.hpp │ │ │ │ ├── claim_security_attributes_information_t.end.hpp │ │ │ │ ├── claim_security_attributes_information_t.start.hpp │ │ │ │ ├── class_id_machine_registration_entry_properties_t.end.hpp │ │ │ │ ├── class_id_machine_registration_entry_properties_t.start.hpp │ │ │ │ ├── class_id_registration_entry_properties_t.end.hpp │ │ │ │ ├── class_id_registration_entry_properties_t.start.hpp │ │ │ │ ├── class_info_candidate_t.end.hpp │ │ │ │ ├── class_info_candidate_t.start.hpp │ │ │ │ ├── classic_event_id_t.end.hpp │ │ │ │ ├── classic_event_id_t.start.hpp │ │ │ │ ├── classic_sta_state_t.end.hpp │ │ │ │ ├── classic_sta_state_t.start.hpp │ │ │ │ ├── client_call_retry_context_t.end.hpp │ │ │ │ ├── client_call_retry_context_t.start.hpp │ │ │ │ ├── client_call_return_t.end.hpp │ │ │ │ ├── client_call_return_t.start.hpp │ │ │ │ ├── client_call_t.end.hpp │ │ │ │ ├── client_call_t.start.hpp │ │ │ │ ├── client_call_tracing_info_t.end.hpp │ │ │ │ ├── client_call_tracing_info_t.start.hpp │ │ │ │ ├── cloud_command_t.end.hpp │ │ │ │ ├── cloud_command_t.start.hpp │ │ │ │ ├── cloud_data_transfer_t.end.hpp │ │ │ │ ├── cloud_data_transfer_t.start.hpp │ │ │ │ ├── cloud_property_blob_context_t.end.hpp │ │ │ │ ├── cloud_property_blob_context_t.start.hpp │ │ │ │ ├── cloud_provider_get_external_info_t.end.hpp │ │ │ │ ├── cloud_provider_get_external_info_t.start.hpp │ │ │ │ ├── cloud_provider_message_t.end.hpp │ │ │ │ ├── cloud_provider_message_t.start.hpp │ │ │ │ ├── cloud_provider_set_external_info_t.end.hpp │ │ │ │ ├── cloud_provider_set_external_info_t.start.hpp │ │ │ │ ├── cluster_range_t.end.hpp │ │ │ │ ├── cluster_range_t.start.hpp │ │ │ │ ├── cmc_add_attributes_info_t.end.hpp │ │ │ │ ├── cmc_add_attributes_info_t.start.hpp │ │ │ │ ├── cmc_add_extensions_info_t.end.hpp │ │ │ │ ├── cmc_add_extensions_info_t.start.hpp │ │ │ │ ├── cmc_data_info_t.end.hpp │ │ │ │ ├── cmc_data_info_t.start.hpp │ │ │ │ ├── cmc_pend_info_t.end.hpp │ │ │ │ ├── cmc_pend_info_t.start.hpp │ │ │ │ ├── cmc_response_info_t.end.hpp │ │ │ │ ├── cmc_response_info_t.start.hpp │ │ │ │ ├── cmc_status_info_t.end.hpp │ │ │ │ ├── cmc_status_info_t.start.hpp │ │ │ │ ├── cmc_tagged_attribute_t.end.hpp │ │ │ │ ├── cmc_tagged_attribute_t.start.hpp │ │ │ │ ├── cmc_tagged_cert_request_t.end.hpp │ │ │ │ ├── cmc_tagged_cert_request_t.start.hpp │ │ │ │ ├── cmc_tagged_content_info_t.end.hpp │ │ │ │ ├── cmc_tagged_content_info_t.start.hpp │ │ │ │ ├── cmc_tagged_other_msg_t.end.hpp │ │ │ │ ├── cmc_tagged_other_msg_t.start.hpp │ │ │ │ ├── cmc_tagged_request_t.end.hpp │ │ │ │ ├── cmc_tagged_request_t.start.hpp │ │ │ │ ├── cmipid_hash_table_t.end.hpp │ │ │ │ ├── cmipid_hash_table_t.start.hpp │ │ │ │ ├── cmre_inner_unknown_t.end.hpp │ │ │ │ ├── cmre_inner_unknown_t.start.hpp │ │ │ │ ├── cms_dh_key_info_t.end.hpp │ │ │ │ ├── cms_dh_key_info_t.start.hpp │ │ │ │ ├── cms_key_info_t.end.hpp │ │ │ │ ├── cms_key_info_t.start.hpp │ │ │ │ ├── cmsg_cms_recipient_info_t.end.hpp │ │ │ │ ├── cmsg_cms_recipient_info_t.start.hpp │ │ │ │ ├── cmsg_cms_signer_info_t.end.hpp │ │ │ │ ├── cmsg_cms_signer_info_t.start.hpp │ │ │ │ ├── cmsg_cng_content_decrypt_info_t.end.hpp │ │ │ │ ├── cmsg_cng_content_decrypt_info_t.start.hpp │ │ │ │ ├── cmsg_content_encrypt_info_t.end.hpp │ │ │ │ ├── cmsg_content_encrypt_info_t.start.hpp │ │ │ │ ├── cmsg_ctrl_add_signer_unauth_attr_para_t.end.hpp │ │ │ │ ├── cmsg_ctrl_add_signer_unauth_attr_para_t.start.hpp │ │ │ │ ├── cmsg_ctrl_decrypt_para_t.end.hpp │ │ │ │ ├── cmsg_ctrl_decrypt_para_t.start.hpp │ │ │ │ ├── cmsg_ctrl_del_signer_unauth_attr_para_t.end.hpp │ │ │ │ ├── cmsg_ctrl_del_signer_unauth_attr_para_t.start.hpp │ │ │ │ ├── cmsg_ctrl_key_agree_decrypt_para_t.end.hpp │ │ │ │ ├── cmsg_ctrl_key_agree_decrypt_para_t.start.hpp │ │ │ │ ├── cmsg_ctrl_key_trans_decrypt_para_t.end.hpp │ │ │ │ ├── cmsg_ctrl_key_trans_decrypt_para_t.start.hpp │ │ │ │ ├── cmsg_ctrl_mail_list_decrypt_para_t.end.hpp │ │ │ │ ├── cmsg_ctrl_mail_list_decrypt_para_t.start.hpp │ │ │ │ ├── cmsg_ctrl_verify_signature_ex_para_t.end.hpp │ │ │ │ ├── cmsg_ctrl_verify_signature_ex_para_t.start.hpp │ │ │ │ ├── cmsg_encrypted_encode_info_t.end.hpp │ │ │ │ ├── cmsg_encrypted_encode_info_t.start.hpp │ │ │ │ ├── cmsg_enveloped_encode_info_t.end.hpp │ │ │ │ ├── cmsg_enveloped_encode_info_t.start.hpp │ │ │ │ ├── cmsg_hashed_encode_info_t.end.hpp │ │ │ │ ├── cmsg_hashed_encode_info_t.start.hpp │ │ │ │ ├── cmsg_key_agree_encrypt_info_t.end.hpp │ │ │ │ ├── cmsg_key_agree_encrypt_info_t.start.hpp │ │ │ │ ├── cmsg_key_agree_key_encrypt_info_t.end.hpp │ │ │ │ ├── cmsg_key_agree_key_encrypt_info_t.start.hpp │ │ │ │ ├── cmsg_key_agree_recipient_encode_info_t.end.hpp │ │ │ │ ├── cmsg_key_agree_recipient_encode_info_t.start.hpp │ │ │ │ ├── cmsg_key_agree_recipient_info_t.end.hpp │ │ │ │ ├── cmsg_key_agree_recipient_info_t.start.hpp │ │ │ │ ├── cmsg_key_trans_encrypt_info_t.end.hpp │ │ │ │ ├── cmsg_key_trans_encrypt_info_t.start.hpp │ │ │ │ ├── cmsg_key_trans_recipient_encode_info_t.end.hpp │ │ │ │ ├── cmsg_key_trans_recipient_encode_info_t.start.hpp │ │ │ │ ├── cmsg_key_trans_recipient_info_t.end.hpp │ │ │ │ ├── cmsg_key_trans_recipient_info_t.start.hpp │ │ │ │ ├── cmsg_mail_list_encrypt_info_t.end.hpp │ │ │ │ ├── cmsg_mail_list_encrypt_info_t.start.hpp │ │ │ │ ├── cmsg_mail_list_recipient_encode_info_t.end.hpp │ │ │ │ ├── cmsg_mail_list_recipient_encode_info_t.start.hpp │ │ │ │ ├── cmsg_mail_list_recipient_info_t.end.hpp │ │ │ │ ├── cmsg_mail_list_recipient_info_t.start.hpp │ │ │ │ ├── cmsg_rc2_aux_info_t.end.hpp │ │ │ │ ├── cmsg_rc2_aux_info_t.start.hpp │ │ │ │ ├── cmsg_rc4_aux_info_t.end.hpp │ │ │ │ ├── cmsg_rc4_aux_info_t.start.hpp │ │ │ │ ├── cmsg_recipient_encode_info_t.end.hpp │ │ │ │ ├── cmsg_recipient_encode_info_t.start.hpp │ │ │ │ ├── cmsg_recipient_encrypted_key_encode_info_t.end.hpp │ │ │ │ ├── cmsg_recipient_encrypted_key_encode_info_t.start.hpp │ │ │ │ ├── cmsg_recipient_encrypted_key_info_t.end.hpp │ │ │ │ ├── cmsg_recipient_encrypted_key_info_t.start.hpp │ │ │ │ ├── cmsg_signed_and_enveloped_encode_info_t.end.hpp │ │ │ │ ├── cmsg_signed_and_enveloped_encode_info_t.start.hpp │ │ │ │ ├── cmsg_signed_encode_info_t.end.hpp │ │ │ │ ├── cmsg_signed_encode_info_t.start.hpp │ │ │ │ ├── cmsg_signer_encode_info_t.end.hpp │ │ │ │ ├── cmsg_signer_encode_info_t.start.hpp │ │ │ │ ├── cmsg_signer_info_t.end.hpp │ │ │ │ ├── cmsg_signer_info_t.start.hpp │ │ │ │ ├── cmsg_sp3_compatible_aux_info_t.end.hpp │ │ │ │ ├── cmsg_sp3_compatible_aux_info_t.start.hpp │ │ │ │ ├── cmsg_stream_info_t.end.hpp │ │ │ │ ├── cmsg_stream_info_t.start.hpp │ │ │ │ ├── co_access_control_t.end.hpp │ │ │ │ ├── co_access_control_t.start.hpp │ │ │ │ ├── co_get_standard_marshal_in_progress_t.end.hpp │ │ │ │ ├── co_get_standard_marshal_in_progress_t.start.hpp │ │ │ │ ├── co_process_events_context_t.end.hpp │ │ │ │ ├── co_process_events_context_t.start.hpp │ │ │ │ ├── coauthidentity_t.end.hpp │ │ │ │ ├── coauthidentity_t.start.hpp │ │ │ │ ├── coauthinfo_t.end.hpp │ │ │ │ ├── coauthinfo_t.start.hpp │ │ │ │ ├── coid_hash_table_t.end.hpp │ │ │ │ ├── coid_hash_table_t.start.hpp │ │ │ │ ├── cole_drag_drop_helper_t.end.hpp │ │ │ │ ├── cole_drag_drop_helper_t.start.hpp │ │ │ │ ├── com_call_trace_activity_t.end.hpp │ │ │ │ ├── com_call_trace_activity_t.start.hpp │ │ │ │ ├── com_catalog_cache_section_t.end.hpp │ │ │ │ ├── com_catalog_cache_section_t.start.hpp │ │ │ │ ├── com_class_registration_entry_properties_t.end.hpp │ │ │ │ ├── com_class_registration_entry_properties_t.start.hpp │ │ │ │ ├── com_error_t.end.hpp │ │ │ │ ├── com_error_t.start.hpp │ │ │ │ ├── com_interface_registration_entry_properties_t.end.hpp │ │ │ │ ├── com_interface_registration_entry_properties_t.start.hpp │ │ │ │ ├── com_package_for_user_entry_properties_t.end.hpp │ │ │ │ ├── com_package_for_user_entry_properties_t.start.hpp │ │ │ │ ├── com_package_install_order_entry_properties_t.end.hpp │ │ │ │ ├── com_package_install_order_entry_properties_t.start.hpp │ │ │ │ ├── com_proxy_stub_registration_entry_properties_t.end.hpp │ │ │ │ ├── com_proxy_stub_registration_entry_properties_t.start.hpp │ │ │ │ ├── com_server_registration_entry_properties_t.end.hpp │ │ │ │ ├── com_server_registration_entry_properties_t.start.hpp │ │ │ │ ├── com_treat_as_class_registration_entry_properties_t.end.hpp │ │ │ │ ├── com_treat_as_class_registration_entry_properties_t.start.hpp │ │ │ │ ├── com_type_lib_version_registration_entry_properties_t.end.hpp │ │ │ │ ├── com_type_lib_version_registration_entry_properties_t.start.hpp │ │ │ │ ├── com_win_rt_activation_properties_data_t.end.hpp │ │ │ │ ├── com_win_rt_activation_properties_data_t.start.hpp │ │ │ │ ├── com_win_rt_activation_properties_t.end.hpp │ │ │ │ ├── com_win_rt_activation_properties_t.start.hpp │ │ │ │ ├── comm_fault_offsets_t.end.hpp │ │ │ │ ├── comm_fault_offsets_t.start.hpp │ │ │ │ ├── commconfig_t.end.hpp │ │ │ │ ├── commconfig_t.start.hpp │ │ │ │ ├── commprop_t.end.hpp │ │ │ │ ├── commprop_t.start.hpp │ │ │ │ ├── commtimeouts_t.end.hpp │ │ │ │ ├── commtimeouts_t.start.hpp │ │ │ │ ├── compat_cache_flags_t.end.hpp │ │ │ │ ├── compat_cache_flags_t.start.hpp │ │ │ │ ├── compatibility_context_element_t.end.hpp │ │ │ │ ├── compatibility_context_element_t.start.hpp │ │ │ │ ├── complex_t.end.hpp │ │ │ │ ├── complex_t.start.hpp │ │ │ │ ├── component_filter_t.end.hpp │ │ │ │ ├── component_filter_t.start.hpp │ │ │ │ ├── compound_access_allowed_ace_t.end.hpp │ │ │ │ ├── compound_access_allowed_ace_t.start.hpp │ │ │ │ ├── comstat_t.end.hpp │ │ │ │ ├── comstat_t.start.hpp │ │ │ │ ├── confirmsafety_t.end.hpp │ │ │ │ ├── confirmsafety_t.start.hpp │ │ │ │ ├── connectdlgstructa_t.end.hpp │ │ │ │ ├── connectdlgstructa_t.start.hpp │ │ │ │ ├── connectdlgstructw_t.end.hpp │ │ │ │ ├── connectdlgstructw_t.start.hpp │ │ │ │ ├── console_cursor_info_t.end.hpp │ │ │ │ ├── console_cursor_info_t.start.hpp │ │ │ │ ├── console_font_info_t.end.hpp │ │ │ │ ├── console_font_info_t.start.hpp │ │ │ │ ├── console_font_infoex_t.end.hpp │ │ │ │ ├── console_font_infoex_t.start.hpp │ │ │ │ ├── console_history_info_t.end.hpp │ │ │ │ ├── console_history_info_t.start.hpp │ │ │ │ ├── console_readconsole_control_t.end.hpp │ │ │ │ ├── console_readconsole_control_t.start.hpp │ │ │ │ ├── console_screen_buffer_info_t.end.hpp │ │ │ │ ├── console_screen_buffer_info_t.start.hpp │ │ │ │ ├── console_screen_buffer_infoex_t.end.hpp │ │ │ │ ├── console_screen_buffer_infoex_t.start.hpp │ │ │ │ ├── console_selection_info_t.end.hpp │ │ │ │ ├── console_selection_info_t.start.hpp │ │ │ │ ├── container_extent_array_t.end.hpp │ │ │ │ ├── container_extent_array_t.start.hpp │ │ │ │ ├── container_extent_t.end.hpp │ │ │ │ ├── container_extent_t.start.hpp │ │ │ │ ├── container_id_helper_t.end.hpp │ │ │ │ ├── container_id_helper_t.start.hpp │ │ │ │ ├── container_root_info_input_t.end.hpp │ │ │ │ ├── container_root_info_input_t.start.hpp │ │ │ │ ├── container_root_info_output_t.end.hpp │ │ │ │ ├── container_root_info_output_t.start.hpp │ │ │ │ ├── container_volume_state_t.end.hpp │ │ │ │ ├── container_volume_state_t.start.hpp │ │ │ │ ├── containerthat_t.end.hpp │ │ │ │ ├── containerthat_t.start.hpp │ │ │ │ ├── containerthis_t.end.hpp │ │ │ │ ├── containerthis_t.start.hpp │ │ │ │ ├── containerversion_for_negotiation_t.end.hpp │ │ │ │ ├── containerversion_for_negotiation_t.start.hpp │ │ │ │ ├── containerversion_t.end.hpp │ │ │ │ ├── containerversion_t.start.hpp │ │ │ │ ├── context_chunk_t.end.hpp │ │ │ │ ├── context_chunk_t.start.hpp │ │ │ │ ├── context_ex_t.end.hpp │ │ │ │ ├── context_ex_t.start.hpp │ │ │ │ ├── context_handle_element_t.end.hpp │ │ │ │ ├── context_handle_element_t.start.hpp │ │ │ │ ├── context_info_t.end.hpp │ │ │ │ ├── context_info_t.start.hpp │ │ │ │ ├── coord_t.end.hpp │ │ │ │ ├── coord_t.start.hpp │ │ │ │ ├── copyfile2_extended_parameters_t.end.hpp │ │ │ │ ├── copyfile2_extended_parameters_t.start.hpp │ │ │ │ ├── copyfile2_extended_parameters_v2_t.end.hpp │ │ │ │ ├── copyfile2_extended_parameters_v2_t.start.hpp │ │ │ │ ├── copyfile2_message_t.end.hpp │ │ │ │ ├── copyfile2_message_t.start.hpp │ │ │ │ ├── cor_field_offset_t.end.hpp │ │ │ │ ├── cor_field_offset_t.start.hpp │ │ │ │ ├── cor_native_link_t.end.hpp │ │ │ │ ├── cor_native_link_t.start.hpp │ │ │ │ ├── cor_secattr_t.end.hpp │ │ │ │ ├── cor_secattr_t.start.hpp │ │ │ │ ├── correlation_context_t.end.hpp │ │ │ │ ├── correlation_context_t.start.hpp │ │ │ │ ├── coserverinfo_t.end.hpp │ │ │ │ ├── coserverinfo_t.start.hpp │ │ │ │ ├── coverage_module_info_t.end.hpp │ │ │ │ ├── coverage_module_info_t.start.hpp │ │ │ │ ├── coverage_module_request_t.end.hpp │ │ │ │ ├── coverage_module_request_t.start.hpp │ │ │ │ ├── coverage_modules_t.end.hpp │ │ │ │ ├── coverage_modules_t.start.hpp │ │ │ │ ├── coverage_section_header_t.end.hpp │ │ │ │ ├── coverage_section_header_t.start.hpp │ │ │ │ ├── coverage_unloaded_module_entry_t.end.hpp │ │ │ │ ├── coverage_unloaded_module_entry_t.start.hpp │ │ │ │ ├── cp_unk_list_t.end.hpp │ │ │ │ ├── cp_unk_list_t.start.hpp │ │ │ │ ├── cpid_hash_table_t.end.hpp │ │ │ │ ├── cpid_hash_table_t.start.hpp │ │ │ │ ├── cpinfo_t.end.hpp │ │ │ │ ├── cpinfo_t.start.hpp │ │ │ │ ├── cpinfoex_a_t.end.hpp │ │ │ │ ├── cpinfoex_a_t.start.hpp │ │ │ │ ├── cpinfoex_w_t.end.hpp │ │ │ │ ├── cpinfoex_w_t.start.hpp │ │ │ │ ├── cps_hash_table_t.end.hpp │ │ │ │ ├── cps_hash_table_t.start.hpp │ │ │ │ ├── cps_urls_t.end.hpp │ │ │ │ ├── cps_urls_t.start.hpp │ │ │ │ ├── cpu_config_record_t.end.hpp │ │ │ │ ├── cpu_config_record_t.start.hpp │ │ │ │ ├── create_process_debug_info_t.end.hpp │ │ │ │ ├── create_process_debug_info_t.start.hpp │ │ │ │ ├── create_thread_debug_info_t.end.hpp │ │ │ │ ├── create_thread_debug_info_t.start.hpp │ │ │ │ ├── create_usn_journal_data_t.end.hpp │ │ │ │ ├── create_usn_journal_data_t.start.hpp │ │ │ │ ├── createfile2_extended_parameters_t.end.hpp │ │ │ │ ├── createfile2_extended_parameters_t.start.hpp │ │ │ │ ├── crl_context_t.end.hpp │ │ │ │ ├── crl_context_t.start.hpp │ │ │ │ ├── crl_dist_point_name_t.end.hpp │ │ │ │ ├── crl_dist_point_name_t.start.hpp │ │ │ │ ├── crl_dist_point_t.end.hpp │ │ │ │ ├── crl_dist_point_t.start.hpp │ │ │ │ ├── crl_dist_points_info_t.end.hpp │ │ │ │ ├── crl_dist_points_info_t.start.hpp │ │ │ │ ├── crl_entry_t.end.hpp │ │ │ │ ├── crl_entry_t.start.hpp │ │ │ │ ├── crl_find_issued_for_para_t.end.hpp │ │ │ │ ├── crl_find_issued_for_para_t.start.hpp │ │ │ │ ├── crl_info_t.end.hpp │ │ │ │ ├── crl_info_t.start.hpp │ │ │ │ ├── crl_issuing_dist_point_t.end.hpp │ │ │ │ ├── crl_issuing_dist_point_t.start.hpp │ │ │ │ ├── crl_revocation_info_t.end.hpp │ │ │ │ ├── crl_revocation_info_t.start.hpp │ │ │ │ ├── cross_cert_dist_points_info_t.end.hpp │ │ │ │ ├── cross_cert_dist_points_info_t.start.hpp │ │ │ │ ├── crt_double_t.end.hpp │ │ │ │ ├── crt_double_t.start.hpp │ │ │ │ ├── crt_float_t.end.hpp │ │ │ │ ├── crt_float_t.start.hpp │ │ │ │ ├── crt_mem_state_t.end.hpp │ │ │ │ ├── crt_mem_state_t.start.hpp │ │ │ │ ├── crw_lock_t.end.hpp │ │ │ │ ├── crw_lock_t.start.hpp │ │ │ │ ├── crypt_3des_key_state_t.end.hpp │ │ │ │ ├── crypt_3des_key_state_t.start.hpp │ │ │ │ ├── crypt_aes_128_key_state_t.end.hpp │ │ │ │ ├── crypt_aes_128_key_state_t.start.hpp │ │ │ │ ├── crypt_aes_256_key_state_t.end.hpp │ │ │ │ ├── crypt_aes_256_key_state_t.start.hpp │ │ │ │ ├── crypt_algorithm_identifier_t.end.hpp │ │ │ │ ├── crypt_algorithm_identifier_t.start.hpp │ │ │ │ ├── crypt_async_retrieval_completion_t.end.hpp │ │ │ │ ├── crypt_async_retrieval_completion_t.start.hpp │ │ │ │ ├── crypt_attribute_t.end.hpp │ │ │ │ ├── crypt_attribute_t.start.hpp │ │ │ │ ├── crypt_attribute_type_value_t.end.hpp │ │ │ │ ├── crypt_attribute_type_value_t.start.hpp │ │ │ │ ├── crypt_attributes_t.end.hpp │ │ │ │ ├── crypt_attributes_t.start.hpp │ │ │ │ ├── crypt_bit_blob_t.end.hpp │ │ │ │ ├── crypt_bit_blob_t.start.hpp │ │ │ │ ├── crypt_blob_array_t.end.hpp │ │ │ │ ├── crypt_blob_array_t.start.hpp │ │ │ │ ├── crypt_content_info_sequence_of_any_t.end.hpp │ │ │ │ ├── crypt_content_info_sequence_of_any_t.start.hpp │ │ │ │ ├── crypt_content_info_t.end.hpp │ │ │ │ ├── crypt_content_info_t.start.hpp │ │ │ │ ├── crypt_context_config_t.end.hpp │ │ │ │ ├── crypt_context_config_t.start.hpp │ │ │ │ ├── crypt_context_function_config_t.end.hpp │ │ │ │ ├── crypt_context_function_config_t.start.hpp │ │ │ │ ├── crypt_context_function_providers_t.end.hpp │ │ │ │ ├── crypt_context_function_providers_t.start.hpp │ │ │ │ ├── crypt_context_functions_t.end.hpp │ │ │ │ ├── crypt_context_functions_t.start.hpp │ │ │ │ ├── crypt_contexts_t.end.hpp │ │ │ │ ├── crypt_contexts_t.start.hpp │ │ │ │ ├── crypt_credentials_t.end.hpp │ │ │ │ ├── crypt_credentials_t.start.hpp │ │ │ │ ├── crypt_csp_provider_t.end.hpp │ │ │ │ ├── crypt_csp_provider_t.start.hpp │ │ │ │ ├── crypt_decode_para_t.end.hpp │ │ │ │ ├── crypt_decode_para_t.start.hpp │ │ │ │ ├── crypt_decrypt_message_para_t.end.hpp │ │ │ │ ├── crypt_decrypt_message_para_t.start.hpp │ │ │ │ ├── crypt_default_context_multi_oid_para_t.end.hpp │ │ │ │ ├── crypt_default_context_multi_oid_para_t.start.hpp │ │ │ │ ├── crypt_des_key_state_t.end.hpp │ │ │ │ ├── crypt_des_key_state_t.start.hpp │ │ │ │ ├── crypt_ecc_cms_shared_info_t.end.hpp │ │ │ │ ├── crypt_ecc_cms_shared_info_t.start.hpp │ │ │ │ ├── crypt_ecc_private_key_info_t.end.hpp │ │ │ │ ├── crypt_ecc_private_key_info_t.start.hpp │ │ │ │ ├── crypt_encode_para_t.end.hpp │ │ │ │ ├── crypt_encode_para_t.start.hpp │ │ │ │ ├── crypt_encrypt_message_para_t.end.hpp │ │ │ │ ├── crypt_encrypt_message_para_t.start.hpp │ │ │ │ ├── crypt_encrypted_private_key_info_t.end.hpp │ │ │ │ ├── crypt_encrypted_private_key_info_t.start.hpp │ │ │ │ ├── crypt_enrollment_name_value_pair_t.end.hpp │ │ │ │ ├── crypt_enrollment_name_value_pair_t.start.hpp │ │ │ │ ├── crypt_get_time_valid_object_extra_info_t.end.hpp │ │ │ │ ├── crypt_get_time_valid_object_extra_info_t.start.hpp │ │ │ │ ├── crypt_hash_info_t.end.hpp │ │ │ │ ├── crypt_hash_info_t.start.hpp │ │ │ │ ├── crypt_hash_message_para_t.end.hpp │ │ │ │ ├── crypt_hash_message_para_t.start.hpp │ │ │ │ ├── crypt_image_ref_t.end.hpp │ │ │ │ ├── crypt_image_ref_t.start.hpp │ │ │ │ ├── crypt_image_reg_t.end.hpp │ │ │ │ ├── crypt_image_reg_t.start.hpp │ │ │ │ ├── crypt_interface_reg_t.end.hpp │ │ │ │ ├── crypt_interface_reg_t.start.hpp │ │ │ │ ├── crypt_key_prov_info_t.end.hpp │ │ │ │ ├── crypt_key_prov_info_t.start.hpp │ │ │ │ ├── crypt_key_prov_param_t.end.hpp │ │ │ │ ├── crypt_key_prov_param_t.start.hpp │ │ │ │ ├── crypt_key_sign_message_para_t.end.hpp │ │ │ │ ├── crypt_key_sign_message_para_t.start.hpp │ │ │ │ ├── crypt_key_verify_message_para_t.end.hpp │ │ │ │ ├── crypt_key_verify_message_para_t.start.hpp │ │ │ │ ├── crypt_mask_gen_algorithm_t.end.hpp │ │ │ │ ├── crypt_mask_gen_algorithm_t.start.hpp │ │ │ │ ├── crypt_object_locator_provider_table_t.end.hpp │ │ │ │ ├── crypt_object_locator_provider_table_t.start.hpp │ │ │ │ ├── crypt_objid_table_t.end.hpp │ │ │ │ ├── crypt_objid_table_t.start.hpp │ │ │ │ ├── crypt_oid_func_entry_t.end.hpp │ │ │ │ ├── crypt_oid_func_entry_t.start.hpp │ │ │ │ ├── crypt_oid_info_t.end.hpp │ │ │ │ ├── crypt_oid_info_t.start.hpp │ │ │ │ ├── crypt_password_credentialsa_t.end.hpp │ │ │ │ ├── crypt_password_credentialsa_t.start.hpp │ │ │ │ ├── crypt_password_credentialsw_t.end.hpp │ │ │ │ ├── crypt_password_credentialsw_t.start.hpp │ │ │ │ ├── crypt_pkcs12_pbe_params_t.end.hpp │ │ │ │ ├── crypt_pkcs12_pbe_params_t.start.hpp │ │ │ │ ├── crypt_pkcs8_export_params_t.end.hpp │ │ │ │ ├── crypt_pkcs8_export_params_t.start.hpp │ │ │ │ ├── crypt_pkcs8_import_params_t.end.hpp │ │ │ │ ├── crypt_pkcs8_import_params_t.start.hpp │ │ │ │ ├── crypt_private_key_info_t.end.hpp │ │ │ │ ├── crypt_private_key_info_t.start.hpp │ │ │ │ ├── crypt_property_ref_t.end.hpp │ │ │ │ ├── crypt_property_ref_t.start.hpp │ │ │ │ ├── crypt_provider_ref_t.end.hpp │ │ │ │ ├── crypt_provider_ref_t.start.hpp │ │ │ │ ├── crypt_provider_refs_t.end.hpp │ │ │ │ ├── crypt_provider_refs_t.start.hpp │ │ │ │ ├── crypt_provider_reg_t.end.hpp │ │ │ │ ├── crypt_provider_reg_t.start.hpp │ │ │ │ ├── crypt_providers_t.end.hpp │ │ │ │ ├── crypt_providers_t.start.hpp │ │ │ │ ├── crypt_psource_algorithm_t.end.hpp │ │ │ │ ├── crypt_psource_algorithm_t.start.hpp │ │ │ │ ├── crypt_rc2_cbc_parameters_t.end.hpp │ │ │ │ ├── crypt_rc2_cbc_parameters_t.start.hpp │ │ │ │ ├── crypt_rc4_key_state_t.end.hpp │ │ │ │ ├── crypt_rc4_key_state_t.start.hpp │ │ │ │ ├── crypt_retrieve_aux_info_t.end.hpp │ │ │ │ ├── crypt_retrieve_aux_info_t.start.hpp │ │ │ │ ├── crypt_rsa_ssa_pss_parameters_t.end.hpp │ │ │ │ ├── crypt_rsa_ssa_pss_parameters_t.start.hpp │ │ │ │ ├── crypt_rsaes_oaep_parameters_t.end.hpp │ │ │ │ ├── crypt_rsaes_oaep_parameters_t.start.hpp │ │ │ │ ├── crypt_sequence_of_any_t.end.hpp │ │ │ │ ├── crypt_sequence_of_any_t.start.hpp │ │ │ │ ├── crypt_sign_message_para_t.end.hpp │ │ │ │ ├── crypt_sign_message_para_t.start.hpp │ │ │ │ ├── crypt_smart_card_root_info_t.end.hpp │ │ │ │ ├── crypt_smart_card_root_info_t.start.hpp │ │ │ │ ├── crypt_smime_capabilities_t.end.hpp │ │ │ │ ├── crypt_smime_capabilities_t.start.hpp │ │ │ │ ├── crypt_smime_capability_t.end.hpp │ │ │ │ ├── crypt_smime_capability_t.start.hpp │ │ │ │ ├── crypt_time_stamp_request_info_t.end.hpp │ │ │ │ ├── crypt_time_stamp_request_info_t.start.hpp │ │ │ │ ├── crypt_timestamp_accuracy_t.end.hpp │ │ │ │ ├── crypt_timestamp_accuracy_t.start.hpp │ │ │ │ ├── crypt_timestamp_context_t.end.hpp │ │ │ │ ├── crypt_timestamp_context_t.start.hpp │ │ │ │ ├── crypt_timestamp_info_t.end.hpp │ │ │ │ ├── crypt_timestamp_info_t.start.hpp │ │ │ │ ├── crypt_timestamp_para_t.end.hpp │ │ │ │ ├── crypt_timestamp_para_t.start.hpp │ │ │ │ ├── crypt_timestamp_request_t.end.hpp │ │ │ │ ├── crypt_timestamp_request_t.start.hpp │ │ │ │ ├── crypt_timestamp_response_t.end.hpp │ │ │ │ ├── crypt_timestamp_response_t.start.hpp │ │ │ │ ├── crypt_url_array_t.end.hpp │ │ │ │ ├── crypt_url_array_t.start.hpp │ │ │ │ ├── crypt_url_info_t.end.hpp │ │ │ │ ├── crypt_url_info_t.start.hpp │ │ │ │ ├── crypt_verify_cert_sign_strong_properties_info_t.end.hpp │ │ │ │ ├── crypt_verify_cert_sign_strong_properties_info_t.start.hpp │ │ │ │ ├── crypt_verify_cert_sign_weak_hash_info_t.end.hpp │ │ │ │ ├── crypt_verify_cert_sign_weak_hash_info_t.start.hpp │ │ │ │ ├── crypt_verify_message_para_t.end.hpp │ │ │ │ ├── crypt_verify_message_para_t.start.hpp │ │ │ │ ├── crypt_x942_other_info_t.end.hpp │ │ │ │ ├── crypt_x942_other_info_t.start.hpp │ │ │ │ ├── cryptnet_url_cache_flush_info_t.end.hpp │ │ │ │ ├── cryptnet_url_cache_flush_info_t.start.hpp │ │ │ │ ├── cryptnet_url_cache_pre_fetch_info_t.end.hpp │ │ │ │ ├── cryptnet_url_cache_pre_fetch_info_t.start.hpp │ │ │ │ ├── cryptnet_url_cache_response_info_t.end.hpp │ │ │ │ ├── cryptnet_url_cache_response_info_t.start.hpp │ │ │ │ ├── cryptoapi_blob_t.end.hpp │ │ │ │ ├── cryptoapi_blob_t.start.hpp │ │ │ │ ├── cryptprotect_promptstruct_t.end.hpp │ │ │ │ ├── cryptprotect_promptstruct_t.start.hpp │ │ │ │ ├── cs_frame_t.end.hpp │ │ │ │ ├── cs_frame_t.start.hpp │ │ │ │ ├── csc_inner_unknown_t.end.hpp │ │ │ │ ├── csc_inner_unknown_t.start.hpp │ │ │ │ ├── cst_inner_unknown_t.end.hpp │ │ │ │ ├── cst_inner_unknown_t.start.hpp │ │ │ │ ├── csv_control_param_t.end.hpp │ │ │ │ ├── csv_control_param_t.start.hpp │ │ │ │ ├── csv_is_owned_by_csvfs_t.end.hpp │ │ │ │ ├── csv_is_owned_by_csvfs_t.start.hpp │ │ │ │ ├── csv_mgmt_lock_t.end.hpp │ │ │ │ ├── csv_mgmt_lock_t.start.hpp │ │ │ │ ├── csv_namespace_info_t.end.hpp │ │ │ │ ├── csv_namespace_info_t.start.hpp │ │ │ │ ├── csv_query_file_revision_file_id_128_t.end.hpp │ │ │ │ ├── csv_query_file_revision_file_id_128_t.start.hpp │ │ │ │ ├── csv_query_file_revision_t.end.hpp │ │ │ │ ├── csv_query_file_revision_t.start.hpp │ │ │ │ ├── csv_query_mds_path_t.end.hpp │ │ │ │ ├── csv_query_mds_path_t.start.hpp │ │ │ │ ├── csv_query_mds_path_v2_t.end.hpp │ │ │ │ ├── csv_query_mds_path_v2_t.start.hpp │ │ │ │ ├── csv_query_redirect_state_t.end.hpp │ │ │ │ ├── csv_query_redirect_state_t.start.hpp │ │ │ │ ├── csv_query_veto_file_direct_io_output_t.end.hpp │ │ │ │ ├── csv_query_veto_file_direct_io_output_t.start.hpp │ │ │ │ ├── csv_query_volume_id_t.end.hpp │ │ │ │ ├── csv_query_volume_id_t.start.hpp │ │ │ │ ├── csv_query_volume_redirect_state_t.end.hpp │ │ │ │ ├── csv_query_volume_redirect_state_t.start.hpp │ │ │ │ ├── csv_set_volume_id_t.end.hpp │ │ │ │ ├── csv_set_volume_id_t.start.hpp │ │ │ │ ├── ctl_any_subject_info_t.end.hpp │ │ │ │ ├── ctl_any_subject_info_t.start.hpp │ │ │ │ ├── ctl_context_t.end.hpp │ │ │ │ ├── ctl_context_t.start.hpp │ │ │ │ ├── ctl_entry_t.end.hpp │ │ │ │ ├── ctl_entry_t.start.hpp │ │ │ │ ├── ctl_find_subject_para_t.end.hpp │ │ │ │ ├── ctl_find_subject_para_t.start.hpp │ │ │ │ ├── ctl_find_usage_para_t.end.hpp │ │ │ │ ├── ctl_find_usage_para_t.start.hpp │ │ │ │ ├── ctl_info_t.end.hpp │ │ │ │ ├── ctl_info_t.start.hpp │ │ │ │ ├── ctl_usage_match_t.end.hpp │ │ │ │ ├── ctl_usage_match_t.start.hpp │ │ │ │ ├── ctl_usage_t.end.hpp │ │ │ │ ├── ctl_usage_t.start.hpp │ │ │ │ ├── ctl_verify_usage_para_t.end.hpp │ │ │ │ ├── ctl_verify_usage_para_t.start.hpp │ │ │ │ ├── ctl_verify_usage_status_t.end.hpp │ │ │ │ ├── ctl_verify_usage_status_t.start.hpp │ │ │ │ ├── ctx_entry_t.end.hpp │ │ │ │ ├── ctx_entry_t.start.hpp │ │ │ │ ├── currencyfmt_a_t.end.hpp │ │ │ │ ├── currencyfmt_a_t.start.hpp │ │ │ │ ├── currencyfmt_w_t.end.hpp │ │ │ │ ├── currencyfmt_w_t.start.hpp │ │ │ │ ├── custmact_midl_expr_format_string_t.end.hpp │ │ │ │ ├── custmact_midl_expr_format_string_t.start.hpp │ │ │ │ ├── custmact_midl_proc_format_string_t.end.hpp │ │ │ │ ├── custmact_midl_proc_format_string_t.start.hpp │ │ │ │ ├── custmact_midl_type_format_string_t.end.hpp │ │ │ │ ├── custmact_midl_type_format_string_t.start.hpp │ │ │ │ ├── custom_remote_reply_scm_info_t.end.hpp │ │ │ │ ├── custom_remote_reply_scm_info_t.start.hpp │ │ │ │ ├── custom_remote_request_scm_info_t.end.hpp │ │ │ │ ├── custom_remote_request_scm_info_t.start.hpp │ │ │ │ ├── customdb_exe_reg_db_entry_t.end.hpp │ │ │ │ ├── customdb_exe_reg_db_entry_t.start.hpp │ │ │ │ ├── customdb_exe_reg_info_t.end.hpp │ │ │ │ ├── customdb_exe_reg_info_t.start.hpp │ │ │ │ ├── customdb_reg_info_t.end.hpp │ │ │ │ ├── customdb_reg_info_t.start.hpp │ │ │ │ ├── cuuid_hash_table_t.end.hpp │ │ │ │ ├── cuuid_hash_table_t.start.hpp │ │ │ │ ├── cv_struct_t.end.hpp │ │ │ │ ├── cv_struct_t.start.hpp │ │ │ │ ├── db_header_t.end.hpp │ │ │ │ ├── db_header_t.start.hpp │ │ │ │ ├── dcb_t.end.hpp │ │ │ │ ├── dcb_t.start.hpp │ │ │ │ ├── dcom_container_protocol_types_midl_expr_format_string_t.end.hpp │ │ │ │ ├── dcom_container_protocol_types_midl_expr_format_string_t.start.hpp │ │ │ │ ├── dcom_container_protocol_types_midl_proc_format_string_t.end.hpp │ │ │ │ ├── dcom_container_protocol_types_midl_proc_format_string_t.start.hpp │ │ │ │ ├── dcom_container_protocol_types_midl_type_format_string_t.end.hpp │ │ │ │ ├── dcom_container_protocol_types_midl_type_format_string_t.start.hpp │ │ │ │ ├── dconst_t.end.hpp │ │ │ │ ├── dconst_t.start.hpp │ │ │ │ ├── debug_event_t.end.hpp │ │ │ │ ├── debug_event_t.start.hpp │ │ │ │ ├── debug_information_machine_registration_entry_properties_t.end.hpp │ │ │ │ ├── debug_information_machine_registration_entry_properties_t.start.hpp │ │ │ │ ├── debug_information_registration_entry_properties_t.end.hpp │ │ │ │ ├── debug_information_registration_entry_properties_t.start.hpp │ │ │ │ ├── decryption_status_buffer_t.end.hpp │ │ │ │ ├── decryption_status_buffer_t.start.hpp │ │ │ │ ├── dedup_chunk_information_hash32_t.end.hpp │ │ │ │ ├── dedup_chunk_information_hash32_t.start.hpp │ │ │ │ ├── dedup_file_operation_t.end.hpp │ │ │ │ ├── dedup_file_operation_t.start.hpp │ │ │ │ ├── dedup_query_file_hashes_input_buffer_t.end.hpp │ │ │ │ ├── dedup_query_file_hashes_input_buffer_t.start.hpp │ │ │ │ ├── default_sync_client_call_retry_context_t.end.hpp │ │ │ │ ├── default_sync_client_call_retry_context_t.start.hpp │ │ │ │ ├── define_storage_reserve_input_t.end.hpp │ │ │ │ ├── define_storage_reserve_input_t.start.hpp │ │ │ │ ├── delayload_info_t.end.hpp │ │ │ │ ├── delayload_info_t.start.hpp │ │ │ │ ├── delayload_proc_descriptor_t.end.hpp │ │ │ │ ├── delayload_proc_descriptor_t.start.hpp │ │ │ │ ├── delete_storage_reserve_input_t.end.hpp │ │ │ │ ├── delete_storage_reserve_input_t.start.hpp │ │ │ │ ├── delete_usn_journal_data_t.end.hpp │ │ │ │ ├── delete_usn_journal_data_t.start.hpp │ │ │ │ ├── device_catalog_t.end.hpp │ │ │ │ ├── device_catalog_t.start.hpp │ │ │ │ ├── device_catalogs_t.end.hpp │ │ │ │ ├── device_catalogs_t.start.hpp │ │ │ │ ├── devicemode_a_t.end.hpp │ │ │ │ ├── devicemode_a_t.start.hpp │ │ │ │ ├── devicemode_w_t.end.hpp │ │ │ │ ├── devicemode_w_t.start.hpp │ │ │ │ ├── discdlgstructa_t.end.hpp │ │ │ │ ├── discdlgstructa_t.start.hpp │ │ │ │ ├── discdlgstructw_t.end.hpp │ │ │ │ ├── discdlgstructw_t.start.hpp │ │ │ │ ├── disk_space_information_t.end.hpp │ │ │ │ ├── disk_space_information_t.start.hpp │ │ │ │ ├── dispatcher_context_arm64_t.end.hpp │ │ │ │ ├── dispatcher_context_arm64_t.start.hpp │ │ │ │ ├── dispatcher_context_nonvolreg_arm64_t.end.hpp │ │ │ │ ├── dispatcher_context_nonvolreg_arm64_t.start.hpp │ │ │ │ ├── dispatcher_context_t.end.hpp │ │ │ │ ├── dispatcher_context_t.start.hpp │ │ │ │ ├── display_devicea_t.end.hpp │ │ │ │ ├── display_devicea_t.start.hpp │ │ │ │ ├── display_devicew_t.end.hpp │ │ │ │ ├── display_devicew_t.start.hpp │ │ │ │ ├── displayconfig_2dregion_t.end.hpp │ │ │ │ ├── displayconfig_2dregion_t.start.hpp │ │ │ │ ├── displayconfig_adapter_name_t.end.hpp │ │ │ │ ├── displayconfig_adapter_name_t.start.hpp │ │ │ │ ├── displayconfig_desktop_image_info_t.end.hpp │ │ │ │ ├── displayconfig_desktop_image_info_t.start.hpp │ │ │ │ ├── displayconfig_device_info_header_t.end.hpp │ │ │ │ ├── displayconfig_device_info_header_t.start.hpp │ │ │ │ ├── displayconfig_get_advanced_color_info_t.end.hpp │ │ │ │ ├── displayconfig_get_advanced_color_info_t.start.hpp │ │ │ │ ├── displayconfig_get_monitor_specialization_t.end.hpp │ │ │ │ ├── displayconfig_get_monitor_specialization_t.start.hpp │ │ │ │ ├── displayconfig_mode_info_t.end.hpp │ │ │ │ ├── displayconfig_mode_info_t.start.hpp │ │ │ │ ├── displayconfig_path_info_t.end.hpp │ │ │ │ ├── displayconfig_path_info_t.start.hpp │ │ │ │ ├── displayconfig_path_source_info_t.end.hpp │ │ │ │ ├── displayconfig_path_source_info_t.start.hpp │ │ │ │ ├── displayconfig_path_target_info_t.end.hpp │ │ │ │ ├── displayconfig_path_target_info_t.start.hpp │ │ │ │ ├── displayconfig_rational_t.end.hpp │ │ │ │ ├── displayconfig_rational_t.start.hpp │ │ │ │ ├── displayconfig_sdr_white_level_t.end.hpp │ │ │ │ ├── displayconfig_sdr_white_level_t.start.hpp │ │ │ │ ├── displayconfig_set_advanced_color_state_t.end.hpp │ │ │ │ ├── displayconfig_set_advanced_color_state_t.start.hpp │ │ │ │ ├── displayconfig_set_monitor_specialization_t.end.hpp │ │ │ │ ├── displayconfig_set_monitor_specialization_t.start.hpp │ │ │ │ ├── displayconfig_set_target_persistence_t.end.hpp │ │ │ │ ├── displayconfig_set_target_persistence_t.start.hpp │ │ │ │ ├── displayconfig_source_device_name_t.end.hpp │ │ │ │ ├── displayconfig_source_device_name_t.start.hpp │ │ │ │ ├── displayconfig_source_mode_t.end.hpp │ │ │ │ ├── displayconfig_source_mode_t.start.hpp │ │ │ │ ├── displayconfig_support_virtual_resolution_t.end.hpp │ │ │ │ ├── displayconfig_support_virtual_resolution_t.start.hpp │ │ │ │ ├── displayconfig_target_base_type_t.end.hpp │ │ │ │ ├── displayconfig_target_base_type_t.start.hpp │ │ │ │ ├── displayconfig_target_device_name_flags_t.end.hpp │ │ │ │ ├── displayconfig_target_device_name_flags_t.start.hpp │ │ │ │ ├── displayconfig_target_device_name_t.end.hpp │ │ │ │ ├── displayconfig_target_device_name_t.start.hpp │ │ │ │ ├── displayconfig_target_mode_t.end.hpp │ │ │ │ ├── displayconfig_target_mode_t.start.hpp │ │ │ │ ├── displayconfig_target_preferred_mode_t.end.hpp │ │ │ │ ├── displayconfig_target_preferred_mode_t.start.hpp │ │ │ │ ├── displayconfig_video_signal_info_t.end.hpp │ │ │ │ ├── displayconfig_video_signal_info_t.start.hpp │ │ │ │ ├── div_t.end.hpp │ │ │ │ ├── div_t.start.hpp │ │ │ │ ├── dlgitemtemplate_t.end.hpp │ │ │ │ ├── dlgitemtemplate_t.start.hpp │ │ │ │ ├── dlgtemplate_t.end.hpp │ │ │ │ ├── dlgtemplate_t.start.hpp │ │ │ │ ├── dll_instantiation_properties_t.end.hpp │ │ │ │ ├── dll_instantiation_properties_t.start.hpp │ │ │ │ ├── docinfoa_t.end.hpp │ │ │ │ ├── docinfoa_t.start.hpp │ │ │ │ ├── docinfow_t.end.hpp │ │ │ │ ├── docinfow_t.start.hpp │ │ │ │ ├── double_val_t.end.hpp │ │ │ │ ├── double_val_t.start.hpp │ │ │ │ ├── dpc_test_watchdog_configuration_t.end.hpp │ │ │ │ ├── dpc_test_watchdog_configuration_t.start.hpp │ │ │ │ ├── dpc_watchdog_global_triage_block_t.end.hpp │ │ │ │ ├── dpc_watchdog_global_triage_block_t.start.hpp │ │ │ │ ├── drawpatrect_t.end.hpp │ │ │ │ ├── drawpatrect_t.start.hpp │ │ │ │ ├── driver_verifier_thunk_pairs_t.end.hpp │ │ │ │ ├── driver_verifier_thunk_pairs_t.start.hpp │ │ │ │ ├── dssseed_t.end.hpp │ │ │ │ ├── dssseed_t.start.hpp │ │ │ │ ├── duplicate_extents_data32_t.end.hpp │ │ │ │ ├── duplicate_extents_data32_t.start.hpp │ │ │ │ ├── duplicate_extents_data_ex32_t.end.hpp │ │ │ │ ├── duplicate_extents_data_ex32_t.start.hpp │ │ │ │ ├── duplicate_extents_data_ex_t.end.hpp │ │ │ │ ├── duplicate_extents_data_ex_t.start.hpp │ │ │ │ ├── duplicate_extents_data_t.end.hpp │ │ │ │ ├── duplicate_extents_data_t.start.hpp │ │ │ │ ├── dvtdinfo_t.end.hpp │ │ │ │ ├── dvtdinfo_t.start.hpp │ │ │ │ ├── dword_blob_t.end.hpp │ │ │ │ ├── dword_blob_t.start.hpp │ │ │ │ ├── eh_exception_record_t.end.hpp │ │ │ │ ├── eh_exception_record_t.start.hpp │ │ │ │ ├── eisa_dma_configuration_t.end.hpp │ │ │ │ ├── eisa_dma_configuration_t.start.hpp │ │ │ │ ├── eisa_irq_configuration_t.end.hpp │ │ │ │ ├── eisa_irq_configuration_t.start.hpp │ │ │ │ ├── eisa_irq_descriptor_t.end.hpp │ │ │ │ ├── eisa_irq_descriptor_t.start.hpp │ │ │ │ ├── eisa_memory_configuration_t.end.hpp │ │ │ │ ├── eisa_memory_configuration_t.start.hpp │ │ │ │ ├── eisa_memory_type_t.end.hpp │ │ │ │ ├── eisa_memory_type_t.start.hpp │ │ │ │ ├── eisa_port_configuration_t.end.hpp │ │ │ │ ├── eisa_port_configuration_t.start.hpp │ │ │ │ ├── eisa_port_descriptor_t.end.hpp │ │ │ │ ├── eisa_port_descriptor_t.start.hpp │ │ │ │ ├── enable_trace_parameters_t.end.hpp │ │ │ │ ├── enable_trace_parameters_t.start.hpp │ │ │ │ ├── enable_trace_parameters_v1_t.end.hpp │ │ │ │ ├── enable_trace_parameters_v1_t.start.hpp │ │ │ │ ├── enclave_create_info_sgx_t.end.hpp │ │ │ │ ├── enclave_create_info_sgx_t.start.hpp │ │ │ │ ├── enclave_create_info_vbs_basic_t.end.hpp │ │ │ │ ├── enclave_create_info_vbs_basic_t.start.hpp │ │ │ │ ├── enclave_create_info_vbs_t.end.hpp │ │ │ │ ├── enclave_create_info_vbs_t.start.hpp │ │ │ │ ├── enclave_init_info_sgx_t.end.hpp │ │ │ │ ├── enclave_init_info_sgx_t.start.hpp │ │ │ │ ├── enclave_init_info_vbs_basic_t.end.hpp │ │ │ │ ├── enclave_init_info_vbs_basic_t.start.hpp │ │ │ │ ├── enclave_init_info_vbs_t.end.hpp │ │ │ │ ├── enclave_init_info_vbs_t.start.hpp │ │ │ │ ├── enclave_load_data_vbs_basic_t.end.hpp │ │ │ │ ├── enclave_load_data_vbs_basic_t.start.hpp │ │ │ │ ├── enclave_load_info_vbs_t.end.hpp │ │ │ │ ├── enclave_load_info_vbs_t.start.hpp │ │ │ │ ├── encrypted_data_info_t.end.hpp │ │ │ │ ├── encrypted_data_info_t.start.hpp │ │ │ │ ├── encryption_buffer_t.end.hpp │ │ │ │ ├── encryption_buffer_t.start.hpp │ │ │ │ ├── encryption_key_ctrl_input_t.end.hpp │ │ │ │ ├── encryption_key_ctrl_input_t.start.hpp │ │ │ │ ├── enlistment_basic_information_t.end.hpp │ │ │ │ ├── enlistment_basic_information_t.start.hpp │ │ │ │ ├── enlistment_crm_information_t.end.hpp │ │ │ │ ├── enlistment_crm_information_t.start.hpp │ │ │ │ ├── ensure_in_valid_com_thread_and_apartment_in_scope_t.end.hpp │ │ │ │ ├── ensure_in_valid_com_thread_and_apartment_in_scope_t.start.hpp │ │ │ │ ├── entry_t.end.hpp │ │ │ │ ├── entry_t.start.hpp │ │ │ │ ├── enum_service_status_processa_t.end.hpp │ │ │ │ ├── enum_service_status_processa_t.start.hpp │ │ │ │ ├── enum_service_status_processw_t.end.hpp │ │ │ │ ├── enum_service_status_processw_t.start.hpp │ │ │ │ ├── enum_service_statusa_t.end.hpp │ │ │ │ ├── enum_service_statusa_t.start.hpp │ │ │ │ ├── enum_service_statusw_t.end.hpp │ │ │ │ ├── enum_service_statusw_t.start.hpp │ │ │ │ ├── error_information_extent_v1_t.end.hpp │ │ │ │ ├── error_information_extent_v1_t.start.hpp │ │ │ │ ├── error_object_data_t.end.hpp │ │ │ │ ├── error_object_data_t.start.hpp │ │ │ │ ├── error_object_with_associated_passthrough_data_t.end.hpp │ │ │ │ ├── error_object_with_associated_passthrough_data_t.start.hpp │ │ │ │ ├── ev_extra_cert_chain_policy_para_t.end.hpp │ │ │ │ ├── ev_extra_cert_chain_policy_para_t.start.hpp │ │ │ │ ├── ev_extra_cert_chain_policy_status_t.end.hpp │ │ │ │ ├── ev_extra_cert_chain_policy_status_t.start.hpp │ │ │ │ ├── event_basic_information_t.end.hpp │ │ │ │ ├── event_basic_information_t.start.hpp │ │ │ │ ├── event_entry_lookup_table_t.end.hpp │ │ │ │ ├── event_entry_lookup_table_t.start.hpp │ │ │ │ ├── event_entry_t.end.hpp │ │ │ │ ├── event_entry_t.start.hpp │ │ │ │ ├── event_extended_item_event_key_t.end.hpp │ │ │ │ ├── event_extended_item_event_key_t.start.hpp │ │ │ │ ├── event_extended_item_instance_t.end.hpp │ │ │ │ ├── event_extended_item_instance_t.start.hpp │ │ │ │ ├── event_extended_item_pebs_index_t.end.hpp │ │ │ │ ├── event_extended_item_pebs_index_t.start.hpp │ │ │ │ ├── event_extended_item_pmc_counters_t.end.hpp │ │ │ │ ├── event_extended_item_pmc_counters_t.start.hpp │ │ │ │ ├── event_extended_item_process_start_key_t.end.hpp │ │ │ │ ├── event_extended_item_process_start_key_t.start.hpp │ │ │ │ ├── event_extended_item_related_activityid_t.end.hpp │ │ │ │ ├── event_extended_item_related_activityid_t.start.hpp │ │ │ │ ├── event_extended_item_stack_key32_t.end.hpp │ │ │ │ ├── event_extended_item_stack_key32_t.start.hpp │ │ │ │ ├── event_extended_item_stack_key64_t.end.hpp │ │ │ │ ├── event_extended_item_stack_key64_t.start.hpp │ │ │ │ ├── event_extended_item_stack_trace32_t.end.hpp │ │ │ │ ├── event_extended_item_stack_trace32_t.start.hpp │ │ │ │ ├── event_extended_item_stack_trace64_t.end.hpp │ │ │ │ ├── event_extended_item_stack_trace64_t.start.hpp │ │ │ │ ├── event_extended_item_ts_id_t.end.hpp │ │ │ │ ├── event_extended_item_ts_id_t.start.hpp │ │ │ │ ├── event_filter_event_id_t.end.hpp │ │ │ │ ├── event_filter_event_id_t.start.hpp │ │ │ │ ├── event_filter_event_name_t.end.hpp │ │ │ │ ├── event_filter_event_name_t.start.hpp │ │ │ │ ├── event_instance_guid_header_t.end.hpp │ │ │ │ ├── event_instance_guid_header_t.start.hpp │ │ │ │ ├── event_instance_header_t.end.hpp │ │ │ │ ├── event_instance_header_t.start.hpp │ │ │ │ ├── event_instance_info_t.end.hpp │ │ │ │ ├── event_instance_info_t.start.hpp │ │ │ │ ├── event_pool_entry_t.end.hpp │ │ │ │ ├── event_pool_entry_t.start.hpp │ │ │ │ ├── event_registration_token_t.end.hpp │ │ │ │ ├── event_registration_token_t.start.hpp │ │ │ │ ├── event_trace_t.end.hpp │ │ │ │ ├── event_trace_t.start.hpp │ │ │ │ ├── eventlog_full_information_t.end.hpp │ │ │ │ ├── eventlog_full_information_t.start.hpp │ │ │ │ ├── eventlogrecord_t.end.hpp │ │ │ │ ├── eventlogrecord_t.start.hpp │ │ │ │ ├── eventsforlogfile_t.end.hpp │ │ │ │ ├── eventsforlogfile_t.start.hpp │ │ │ │ ├── exception_debug_info_t.end.hpp │ │ │ │ ├── exception_debug_info_t.start.hpp │ │ │ │ ├── exception_handling_result_t.end.hpp │ │ │ │ ├── exception_handling_result_t.start.hpp │ │ │ │ ├── exception_log_t.end.hpp │ │ │ │ ├── exception_log_t.start.hpp │ │ │ │ ├── exception_t.end.hpp │ │ │ │ ├── exception_t.start.hpp │ │ │ │ ├── exfat_statistics_t.end.hpp │ │ │ │ ├── exfat_statistics_t.start.hpp │ │ │ │ ├── exit_process_debug_info_t.end.hpp │ │ │ │ ├── exit_process_debug_info_t.start.hpp │ │ │ │ ├── exit_thread_debug_info_t.end.hpp │ │ │ │ ├── exit_thread_debug_info_t.start.hpp │ │ │ │ ├── expandable_string_t.end.hpp │ │ │ │ ├── expandable_string_t.start.hpp │ │ │ │ ├── explicit_access_w_t.end.hpp │ │ │ │ ├── explicit_access_w_t.start.hpp │ │ │ │ ├── extended_encrypted_data_info_t.end.hpp │ │ │ │ ├── extended_encrypted_data_info_t.start.hpp │ │ │ │ ├── extension_activation_context_properties_data_t.end.hpp │ │ │ │ ├── extension_activation_context_properties_data_t.start.hpp │ │ │ │ ├── extension_activation_context_properties_t.end.hpp │ │ │ │ ├── extension_activation_context_properties_t.start.hpp │ │ │ │ ├── extension_registration_entry_properties_t.end.hpp │ │ │ │ ├── extension_registration_entry_properties_t.start.hpp │ │ │ │ ├── extent_read_cache_info_buffer_t.end.hpp │ │ │ │ ├── extent_read_cache_info_buffer_t.start.hpp │ │ │ │ ├── fat_statistics_t.end.hpp │ │ │ │ ├── fat_statistics_t.start.hpp │ │ │ │ ├── fiber_t.end.hpp │ │ │ │ ├── fiber_t.start.hpp │ │ │ │ ├── file_access_information_t.end.hpp │ │ │ │ ├── file_access_information_t.start.hpp │ │ │ │ ├── file_alignment_info_t.end.hpp │ │ │ │ ├── file_alignment_info_t.start.hpp │ │ │ │ ├── file_alignment_information_t.end.hpp │ │ │ │ ├── file_alignment_information_t.start.hpp │ │ │ │ ├── file_all_information_t.end.hpp │ │ │ │ ├── file_all_information_t.start.hpp │ │ │ │ ├── file_allocated_range_buffer_t.end.hpp │ │ │ │ ├── file_allocated_range_buffer_t.start.hpp │ │ │ │ ├── file_allocation_info_t.end.hpp │ │ │ │ ├── file_allocation_info_t.start.hpp │ │ │ │ ├── file_allocation_information_t.end.hpp │ │ │ │ ├── file_allocation_information_t.start.hpp │ │ │ │ ├── file_attribute_tag_info_t.end.hpp │ │ │ │ ├── file_attribute_tag_info_t.start.hpp │ │ │ │ ├── file_attribute_tag_information_t.end.hpp │ │ │ │ ├── file_attribute_tag_information_t.start.hpp │ │ │ │ ├── file_basic_info_t.end.hpp │ │ │ │ ├── file_basic_info_t.start.hpp │ │ │ │ ├── file_both_dir_information_t.end.hpp │ │ │ │ ├── file_both_dir_information_t.start.hpp │ │ │ │ ├── file_case_sensitive_info_t.end.hpp │ │ │ │ ├── file_case_sensitive_info_t.start.hpp │ │ │ │ ├── file_case_sensitive_information_t.end.hpp │ │ │ │ ├── file_case_sensitive_information_t.start.hpp │ │ │ │ ├── file_completion_information_t.end.hpp │ │ │ │ ├── file_completion_information_t.start.hpp │ │ │ │ ├── file_compression_info_t.end.hpp │ │ │ │ ├── file_compression_info_t.start.hpp │ │ │ │ ├── file_compression_information_t.end.hpp │ │ │ │ ├── file_compression_information_t.start.hpp │ │ │ │ ├── file_desired_storage_class_information_t.end.hpp │ │ │ │ ├── file_desired_storage_class_information_t.start.hpp │ │ │ │ ├── file_directory_information_t.end.hpp │ │ │ │ ├── file_directory_information_t.start.hpp │ │ │ │ ├── file_disposition_info_ex_t.end.hpp │ │ │ │ ├── file_disposition_info_ex_t.start.hpp │ │ │ │ ├── file_disposition_info_t.end.hpp │ │ │ │ ├── file_disposition_info_t.start.hpp │ │ │ │ ├── file_disposition_information_ex_t.end.hpp │ │ │ │ ├── file_disposition_information_ex_t.start.hpp │ │ │ │ ├── file_disposition_information_t.end.hpp │ │ │ │ ├── file_disposition_information_t.start.hpp │ │ │ │ ├── file_ea_information_t.end.hpp │ │ │ │ ├── file_ea_information_t.start.hpp │ │ │ │ ├── file_end_of_file_info_t.end.hpp │ │ │ │ ├── file_end_of_file_info_t.start.hpp │ │ │ │ ├── file_end_of_file_information_ex_t.end.hpp │ │ │ │ ├── file_end_of_file_information_ex_t.start.hpp │ │ │ │ ├── file_end_of_file_information_t.end.hpp │ │ │ │ ├── file_end_of_file_information_t.start.hpp │ │ │ │ ├── file_fs_attribute_information_t.end.hpp │ │ │ │ ├── file_fs_attribute_information_t.start.hpp │ │ │ │ ├── file_fs_control_information_t.end.hpp │ │ │ │ ├── file_fs_control_information_t.start.hpp │ │ │ │ ├── file_fs_data_copy_information_t.end.hpp │ │ │ │ ├── file_fs_data_copy_information_t.start.hpp │ │ │ │ ├── file_fs_device_information_t.end.hpp │ │ │ │ ├── file_fs_device_information_t.start.hpp │ │ │ │ ├── file_fs_driver_path_information_t.end.hpp │ │ │ │ ├── file_fs_driver_path_information_t.start.hpp │ │ │ │ ├── file_fs_full_size_information_ex_t.end.hpp │ │ │ │ ├── file_fs_full_size_information_ex_t.start.hpp │ │ │ │ ├── file_fs_full_size_information_t.end.hpp │ │ │ │ ├── file_fs_full_size_information_t.start.hpp │ │ │ │ ├── file_fs_label_information_t.end.hpp │ │ │ │ ├── file_fs_label_information_t.start.hpp │ │ │ │ ├── file_fs_metadata_size_information_t.end.hpp │ │ │ │ ├── file_fs_metadata_size_information_t.start.hpp │ │ │ │ ├── file_fs_objectid_information_t.end.hpp │ │ │ │ ├── file_fs_objectid_information_t.start.hpp │ │ │ │ ├── file_fs_persistent_volume_information_t.end.hpp │ │ │ │ ├── file_fs_persistent_volume_information_t.start.hpp │ │ │ │ ├── file_fs_sector_size_information_t.end.hpp │ │ │ │ ├── file_fs_sector_size_information_t.start.hpp │ │ │ │ ├── file_fs_size_information_t.end.hpp │ │ │ │ ├── file_fs_size_information_t.start.hpp │ │ │ │ ├── file_fs_volume_flags_information_t.end.hpp │ │ │ │ ├── file_fs_volume_flags_information_t.start.hpp │ │ │ │ ├── file_fs_volume_information_t.end.hpp │ │ │ │ ├── file_fs_volume_information_t.start.hpp │ │ │ │ ├── file_full_dir_info_t.end.hpp │ │ │ │ ├── file_full_dir_info_t.start.hpp │ │ │ │ ├── file_full_dir_information_t.end.hpp │ │ │ │ ├── file_full_dir_information_t.start.hpp │ │ │ │ ├── file_get_ea_information_t.end.hpp │ │ │ │ ├── file_get_ea_information_t.start.hpp │ │ │ │ ├── file_id_128_t.end.hpp │ │ │ │ ├── file_id_128_t.start.hpp │ │ │ │ ├── file_id_both_dir_info_t.end.hpp │ │ │ │ ├── file_id_both_dir_info_t.start.hpp │ │ │ │ ├── file_id_both_dir_information_t.end.hpp │ │ │ │ ├── file_id_both_dir_information_t.start.hpp │ │ │ │ ├── file_id_descriptor_t.end.hpp │ │ │ │ ├── file_id_descriptor_t.start.hpp │ │ │ │ ├── file_id_extd_both_dir_information_t.end.hpp │ │ │ │ ├── file_id_extd_both_dir_information_t.start.hpp │ │ │ │ ├── file_id_extd_dir_info_t.end.hpp │ │ │ │ ├── file_id_extd_dir_info_t.start.hpp │ │ │ │ ├── file_id_extd_dir_information_t.end.hpp │ │ │ │ ├── file_id_extd_dir_information_t.start.hpp │ │ │ │ ├── file_id_full_dir_information_t.end.hpp │ │ │ │ ├── file_id_full_dir_information_t.start.hpp │ │ │ │ ├── file_id_global_tx_dir_information_t.end.hpp │ │ │ │ ├── file_id_global_tx_dir_information_t.start.hpp │ │ │ │ ├── file_id_info_t.end.hpp │ │ │ │ ├── file_id_info_t.start.hpp │ │ │ │ ├── file_id_information_t.end.hpp │ │ │ │ ├── file_id_information_t.start.hpp │ │ │ │ ├── file_information_definition_t.end.hpp │ │ │ │ ├── file_information_definition_t.start.hpp │ │ │ │ ├── file_initiate_repair_output_buffer_t.end.hpp │ │ │ │ ├── file_initiate_repair_output_buffer_t.start.hpp │ │ │ │ ├── file_internal_information_t.end.hpp │ │ │ │ ├── file_internal_information_t.start.hpp │ │ │ │ ├── file_io_completion_information_t.end.hpp │ │ │ │ ├── file_io_completion_information_t.start.hpp │ │ │ │ ├── file_io_completion_notification_information_t.end.hpp │ │ │ │ ├── file_io_completion_notification_information_t.start.hpp │ │ │ │ ├── file_io_priority_hint_info_t.end.hpp │ │ │ │ ├── file_io_priority_hint_info_t.start.hpp │ │ │ │ ├── file_io_priority_hint_information_ex_t.end.hpp │ │ │ │ ├── file_io_priority_hint_information_ex_t.start.hpp │ │ │ │ ├── file_io_priority_hint_information_t.end.hpp │ │ │ │ ├── file_io_priority_hint_information_t.start.hpp │ │ │ │ ├── file_iostatusblock_range_information_t.end.hpp │ │ │ │ ├── file_iostatusblock_range_information_t.start.hpp │ │ │ │ ├── file_is_remote_device_information_t.end.hpp │ │ │ │ ├── file_is_remote_device_information_t.start.hpp │ │ │ │ ├── file_known_folder_information_t.end.hpp │ │ │ │ ├── file_known_folder_information_t.start.hpp │ │ │ │ ├── file_layout_entry_t.end.hpp │ │ │ │ ├── file_layout_entry_t.start.hpp │ │ │ │ ├── file_layout_info_entry_t.end.hpp │ │ │ │ ├── file_layout_info_entry_t.start.hpp │ │ │ │ ├── file_layout_name_entry_t.end.hpp │ │ │ │ ├── file_layout_name_entry_t.start.hpp │ │ │ │ ├── file_level_trim_output_t.end.hpp │ │ │ │ ├── file_level_trim_output_t.start.hpp │ │ │ │ ├── file_level_trim_range_t.end.hpp │ │ │ │ ├── file_level_trim_range_t.start.hpp │ │ │ │ ├── file_level_trim_t.end.hpp │ │ │ │ ├── file_level_trim_t.start.hpp │ │ │ │ ├── file_link_entry_full_id_information_t.end.hpp │ │ │ │ ├── file_link_entry_full_id_information_t.start.hpp │ │ │ │ ├── file_link_entry_information_t.end.hpp │ │ │ │ ├── file_link_entry_information_t.start.hpp │ │ │ │ ├── file_link_information_t.end.hpp │ │ │ │ ├── file_link_information_t.start.hpp │ │ │ │ ├── file_links_full_id_information_t.end.hpp │ │ │ │ ├── file_links_full_id_information_t.start.hpp │ │ │ │ ├── file_links_information_t.end.hpp │ │ │ │ ├── file_links_information_t.start.hpp │ │ │ │ ├── file_mailslot_peek_buffer_t.end.hpp │ │ │ │ ├── file_mailslot_peek_buffer_t.start.hpp │ │ │ │ ├── file_mailslot_query_information_t.end.hpp │ │ │ │ ├── file_mailslot_query_information_t.start.hpp │ │ │ │ ├── file_mailslot_set_information_t.end.hpp │ │ │ │ ├── file_mailslot_set_information_t.start.hpp │ │ │ │ ├── file_make_compatible_buffer_t.end.hpp │ │ │ │ ├── file_make_compatible_buffer_t.start.hpp │ │ │ │ ├── file_memory_partition_information_t.end.hpp │ │ │ │ ├── file_memory_partition_information_t.start.hpp │ │ │ │ ├── file_mode_information_t.end.hpp │ │ │ │ ├── file_mode_information_t.start.hpp │ │ │ │ ├── file_move_cluster_information_t.end.hpp │ │ │ │ ├── file_move_cluster_information_t.start.hpp │ │ │ │ ├── file_name_info_t.end.hpp │ │ │ │ ├── file_name_info_t.start.hpp │ │ │ │ ├── file_name_information_t.end.hpp │ │ │ │ ├── file_name_information_t.start.hpp │ │ │ │ ├── file_network_physical_name_information_t.end.hpp │ │ │ │ ├── file_network_physical_name_information_t.start.hpp │ │ │ │ ├── file_notify_extended_information_t.end.hpp │ │ │ │ ├── file_notify_extended_information_t.start.hpp │ │ │ │ ├── file_notify_information_t.end.hpp │ │ │ │ ├── file_notify_information_t.start.hpp │ │ │ │ ├── file_numa_node_information_t.end.hpp │ │ │ │ ├── file_numa_node_information_t.start.hpp │ │ │ │ ├── file_objectid_buffer_t.end.hpp │ │ │ │ ├── file_objectid_buffer_t.start.hpp │ │ │ │ ├── file_objectid_information_t.end.hpp │ │ │ │ ├── file_objectid_information_t.start.hpp │ │ │ │ ├── file_path_t.end.hpp │ │ │ │ ├── file_path_t.start.hpp │ │ │ │ ├── file_pipe_assign_event_buffer_t.end.hpp │ │ │ │ ├── file_pipe_assign_event_buffer_t.start.hpp │ │ │ │ ├── file_pipe_client_process_buffer_ex_t.end.hpp │ │ │ │ ├── file_pipe_client_process_buffer_ex_t.start.hpp │ │ │ │ ├── file_pipe_client_process_buffer_t.end.hpp │ │ │ │ ├── file_pipe_client_process_buffer_t.start.hpp │ │ │ │ ├── file_pipe_client_process_buffer_v2_t.end.hpp │ │ │ │ ├── file_pipe_client_process_buffer_v2_t.start.hpp │ │ │ │ ├── file_pipe_create_symlink_input_t.end.hpp │ │ │ │ ├── file_pipe_create_symlink_input_t.start.hpp │ │ │ │ ├── file_pipe_delete_symlink_input_t.end.hpp │ │ │ │ ├── file_pipe_delete_symlink_input_t.start.hpp │ │ │ │ ├── file_pipe_event_buffer_t.end.hpp │ │ │ │ ├── file_pipe_event_buffer_t.start.hpp │ │ │ │ ├── file_pipe_event_enum_input_buffer_t.end.hpp │ │ │ │ ├── file_pipe_event_enum_input_buffer_t.start.hpp │ │ │ │ ├── file_pipe_event_enum_output_buffer_t.end.hpp │ │ │ │ ├── file_pipe_event_enum_output_buffer_t.start.hpp │ │ │ │ ├── file_pipe_event_select_buffer_t.end.hpp │ │ │ │ ├── file_pipe_event_select_buffer_t.start.hpp │ │ │ │ ├── file_pipe_information_t.end.hpp │ │ │ │ ├── file_pipe_information_t.start.hpp │ │ │ │ ├── file_pipe_local_information_t.end.hpp │ │ │ │ ├── file_pipe_local_information_t.start.hpp │ │ │ │ ├── file_pipe_peek_buffer_t.end.hpp │ │ │ │ ├── file_pipe_peek_buffer_t.start.hpp │ │ │ │ ├── file_pipe_remote_information_t.end.hpp │ │ │ │ ├── file_pipe_remote_information_t.start.hpp │ │ │ │ ├── file_pipe_silo_arrival_input_t.end.hpp │ │ │ │ ├── file_pipe_silo_arrival_input_t.start.hpp │ │ │ │ ├── file_pipe_wait_for_buffer_t.end.hpp │ │ │ │ ├── file_pipe_wait_for_buffer_t.start.hpp │ │ │ │ ├── file_position_information_t.end.hpp │ │ │ │ ├── file_position_information_t.start.hpp │ │ │ │ ├── file_prefetch_ex_t.end.hpp │ │ │ │ ├── file_prefetch_ex_t.start.hpp │ │ │ │ ├── file_prefetch_t.end.hpp │ │ │ │ ├── file_prefetch_t.start.hpp │ │ │ │ ├── file_process_ids_using_file_information_t.end.hpp │ │ │ │ ├── file_process_ids_using_file_information_t.start.hpp │ │ │ │ ├── file_provider_external_info_v0_t.end.hpp │ │ │ │ ├── file_provider_external_info_v0_t.start.hpp │ │ │ │ ├── file_provider_external_info_v1_t.end.hpp │ │ │ │ ├── file_provider_external_info_v1_t.start.hpp │ │ │ │ ├── file_query_metadata_optimization_output_t.end.hpp │ │ │ │ ├── file_query_metadata_optimization_output_t.start.hpp │ │ │ │ ├── file_query_on_disk_vol_info_buffer_t.end.hpp │ │ │ │ ├── file_query_on_disk_vol_info_buffer_t.start.hpp │ │ │ │ ├── file_query_sparing_buffer_t.end.hpp │ │ │ │ ├── file_query_sparing_buffer_t.start.hpp │ │ │ │ ├── file_query_storage_reserve_id_information_ex_t.end.hpp │ │ │ │ ├── file_query_storage_reserve_id_information_ex_t.start.hpp │ │ │ │ ├── file_reference_range_t.end.hpp │ │ │ │ ├── file_reference_range_t.start.hpp │ │ │ │ ├── file_region_info_t.end.hpp │ │ │ │ ├── file_region_info_t.start.hpp │ │ │ │ ├── file_region_input_t.end.hpp │ │ │ │ ├── file_region_input_t.start.hpp │ │ │ │ ├── file_region_output_t.end.hpp │ │ │ │ ├── file_region_output_t.start.hpp │ │ │ │ ├── file_remote_protocol_info_t.end.hpp │ │ │ │ ├── file_remote_protocol_info_t.start.hpp │ │ │ │ ├── file_remote_protocol_information_t.end.hpp │ │ │ │ ├── file_remote_protocol_information_t.start.hpp │ │ │ │ ├── file_rename_info_t.end.hpp │ │ │ │ ├── file_rename_info_t.start.hpp │ │ │ │ ├── file_rename_information_t.end.hpp │ │ │ │ ├── file_rename_information_t.start.hpp │ │ │ │ ├── file_reparse_point_information_t.end.hpp │ │ │ │ ├── file_reparse_point_information_t.start.hpp │ │ │ │ ├── file_set_defect_mgmt_buffer_t.end.hpp │ │ │ │ ├── file_set_defect_mgmt_buffer_t.start.hpp │ │ │ │ ├── file_set_sparse_buffer_t.end.hpp │ │ │ │ ├── file_set_sparse_buffer_t.start.hpp │ │ │ │ ├── file_set_storage_reserve_id_information_ex_t.end.hpp │ │ │ │ ├── file_set_storage_reserve_id_information_ex_t.start.hpp │ │ │ │ ├── file_sfio_reserve_information_t.end.hpp │ │ │ │ ├── file_sfio_reserve_information_t.start.hpp │ │ │ │ ├── file_sfio_volume_information_t.end.hpp │ │ │ │ ├── file_sfio_volume_information_t.start.hpp │ │ │ │ ├── file_standard_info_t.end.hpp │ │ │ │ ├── file_standard_info_t.start.hpp │ │ │ │ ├── file_standard_information_ex_t.end.hpp │ │ │ │ ├── file_standard_information_ex_t.start.hpp │ │ │ │ ├── file_standard_link_information_t.end.hpp │ │ │ │ ├── file_standard_link_information_t.start.hpp │ │ │ │ ├── file_stat_information_t.end.hpp │ │ │ │ ├── file_stat_information_t.start.hpp │ │ │ │ ├── file_stat_lx_information_t.end.hpp │ │ │ │ ├── file_stat_lx_information_t.start.hpp │ │ │ │ ├── file_storage_info_t.end.hpp │ │ │ │ ├── file_storage_info_t.start.hpp │ │ │ │ ├── file_storage_reserve_id_information_t.end.hpp │ │ │ │ ├── file_storage_reserve_id_information_t.start.hpp │ │ │ │ ├── file_storage_tier_region_t.end.hpp │ │ │ │ ├── file_storage_tier_region_t.start.hpp │ │ │ │ ├── file_storage_tier_t.end.hpp │ │ │ │ ├── file_storage_tier_t.start.hpp │ │ │ │ ├── file_stream_info_t.end.hpp │ │ │ │ ├── file_stream_info_t.start.hpp │ │ │ │ ├── file_stream_information_t.end.hpp │ │ │ │ ├── file_stream_information_t.start.hpp │ │ │ │ ├── file_system_recognition_information_t.end.hpp │ │ │ │ ├── file_system_recognition_information_t.start.hpp │ │ │ │ ├── file_tracking_information_t.end.hpp │ │ │ │ ├── file_tracking_information_t.start.hpp │ │ │ │ ├── file_type_notification_input_t.end.hpp │ │ │ │ ├── file_type_notification_input_t.start.hpp │ │ │ │ ├── file_valid_data_length_information_t.end.hpp │ │ │ │ ├── file_valid_data_length_information_t.start.hpp │ │ │ │ ├── file_volume_name_information_t.end.hpp │ │ │ │ ├── file_volume_name_information_t.start.hpp │ │ │ │ ├── file_zero_data_information_ex_t.end.hpp │ │ │ │ ├── file_zero_data_information_ex_t.start.hpp │ │ │ │ ├── file_zero_data_information_t.end.hpp │ │ │ │ ├── file_zero_data_information_t.start.hpp │ │ │ │ ├── filemuiinfo_t.end.hpp │ │ │ │ ├── filemuiinfo_t.start.hpp │ │ │ │ ├── fileoffset_information_t.end.hpp │ │ │ │ ├── fileoffset_information_t.start.hpp │ │ │ │ ├── filesystem_statistics_ex_t.end.hpp │ │ │ │ ├── filesystem_statistics_ex_t.start.hpp │ │ │ │ ├── filesystem_statistics_t.end.hpp │ │ │ │ ├── filesystem_statistics_t.start.hpp │ │ │ │ ├── filetime_t.end.hpp │ │ │ │ ├── filetime_t.start.hpp │ │ │ │ ├── find_by_sid_data_t.end.hpp │ │ │ │ ├── find_by_sid_data_t.start.hpp │ │ │ │ ├── find_by_sid_output_t.end.hpp │ │ │ │ ├── find_by_sid_output_t.start.hpp │ │ │ │ ├── find_info_t.end.hpp │ │ │ │ ├── find_info_t.start.hpp │ │ │ │ ├── findfirstactivationcontextsection_t.end.hpp │ │ │ │ ├── findfirstactivationcontextsection_t.start.hpp │ │ │ │ ├── fixed_t.end.hpp │ │ │ │ ├── fixed_t.start.hpp │ │ │ │ ├── flag_stgmedium_t.end.hpp │ │ │ │ ├── flag_stgmedium_t.start.hpp │ │ │ │ ├── flagged_byte_blob_t.end.hpp │ │ │ │ ├── flagged_byte_blob_t.start.hpp │ │ │ │ ├── flagged_word_blob_t.end.hpp │ │ │ │ ├── flagged_word_blob_t.start.hpp │ │ │ │ ├── flags_t.end.hpp │ │ │ │ ├── flags_t.start.hpp │ │ │ │ ├── flashwinfo_t.end.hpp │ │ │ │ ├── flashwinfo_t.start.hpp │ │ │ │ ├── float128_t.end.hpp │ │ │ │ ├── float128_t.start.hpp │ │ │ │ ├── float_const_t.end.hpp │ │ │ │ ├── float_const_t.start.hpp │ │ │ │ ├── float_val_t.end.hpp │ │ │ │ ├── float_val_t.start.hpp │ │ │ │ ├── fls_data_t.end.hpp │ │ │ │ ├── fls_data_t.start.hpp │ │ │ │ ├── fnsave_format_t.end.hpp │ │ │ │ ├── fnsave_format_t.start.hpp │ │ │ │ ├── focus_event_record_t.end.hpp │ │ │ │ ├── focus_event_record_t.start.hpp │ │ │ │ ├── four_part_version_t.end.hpp │ │ │ │ ├── four_part_version_t.start.hpp │ │ │ │ ├── fp_128_t.end.hpp │ │ │ │ ├── fp_128_t.start.hpp │ │ │ │ ├── fp_32_t.end.hpp │ │ │ │ ├── fp_32_t.start.hpp │ │ │ │ ├── fp_64_t.end.hpp │ │ │ │ ├── fp_64_t.start.hpp │ │ │ │ ├── fp_80_t.end.hpp │ │ │ │ ├── fp_80_t.start.hpp │ │ │ │ ├── fp_ieee_record_t.end.hpp │ │ │ │ ├── fp_ieee_record_t.start.hpp │ │ │ │ ├── fp_ieee_value_t.end.hpp │ │ │ │ ├── fp_ieee_value_t.start.hpp │ │ │ │ ├── fpo_data_t.end.hpp │ │ │ │ ├── fpo_data_t.start.hpp │ │ │ │ ├── fsctl_get_integrity_information_buffer_t.end.hpp │ │ │ │ ├── fsctl_get_integrity_information_buffer_t.start.hpp │ │ │ │ ├── fsctl_ghost_file_extents_input_buffer_t.end.hpp │ │ │ │ ├── fsctl_ghost_file_extents_input_buffer_t.start.hpp │ │ │ │ ├── fsctl_offload_read_input_t.end.hpp │ │ │ │ ├── fsctl_offload_read_input_t.start.hpp │ │ │ │ ├── fsctl_offload_read_output_t.end.hpp │ │ │ │ ├── fsctl_offload_read_output_t.start.hpp │ │ │ │ ├── fsctl_offload_write_input_t.end.hpp │ │ │ │ ├── fsctl_offload_write_input_t.start.hpp │ │ │ │ ├── fsctl_offload_write_output_t.end.hpp │ │ │ │ ├── fsctl_offload_write_output_t.start.hpp │ │ │ │ ├── fsctl_query_fat_bpb_buffer_t.end.hpp │ │ │ │ ├── fsctl_query_fat_bpb_buffer_t.start.hpp │ │ │ │ ├── fsctl_query_ghosted_file_extents_input_range_t.end.hpp │ │ │ │ ├── fsctl_query_ghosted_file_extents_input_range_t.start.hpp │ │ │ │ ├── fsctl_query_ghosted_file_extents_output_t.end.hpp │ │ │ │ ├── fsctl_query_ghosted_file_extents_output_t.start.hpp │ │ │ │ ├── fsctl_query_region_info_input_t.end.hpp │ │ │ │ ├── fsctl_query_region_info_input_t.start.hpp │ │ │ │ ├── fsctl_query_region_info_output_t.end.hpp │ │ │ │ ├── fsctl_query_region_info_output_t.start.hpp │ │ │ │ ├── fsctl_query_storage_classes_output_t.end.hpp │ │ │ │ ├── fsctl_query_storage_classes_output_t.start.hpp │ │ │ │ ├── fsctl_query_volume_numa_info_output_t.end.hpp │ │ │ │ ├── fsctl_query_volume_numa_info_output_t.start.hpp │ │ │ │ ├── fsctl_set_integrity_information_buffer_ex_t.end.hpp │ │ │ │ ├── fsctl_set_integrity_information_buffer_ex_t.start.hpp │ │ │ │ ├── fsctl_set_integrity_information_buffer_t.end.hpp │ │ │ │ ├── fsctl_set_integrity_information_buffer_t.start.hpp │ │ │ │ ├── fsctl_unmap_space_input_buffer_t.end.hpp │ │ │ │ ├── fsctl_unmap_space_input_buffer_t.start.hpp │ │ │ │ ├── fsctl_unmap_space_output_t.end.hpp │ │ │ │ ├── fsctl_unmap_space_output_t.start.hpp │ │ │ │ ├── ft_t.end.hpp │ │ │ │ ├── ft_t.start.hpp │ │ │ │ ├── ftm_marshaled_object_container_t.end.hpp │ │ │ │ ├── ftm_marshaled_object_container_t.start.hpp │ │ │ │ ├── full_ptr_to_refid_element_t.end.hpp │ │ │ │ ├── full_ptr_to_refid_element_t.start.hpp │ │ │ │ ├── full_ptr_xlat_tables_t.end.hpp │ │ │ │ ├── full_ptr_xlat_tables_t.start.hpp │ │ │ │ ├── fw_frame_t.end.hpp │ │ │ │ ├── fw_frame_t.start.hpp │ │ │ │ ├── fxsave_format_wx86_t.end.hpp │ │ │ │ ├── fxsave_format_wx86_t.start.hpp │ │ │ │ ├── gdi_nonremote_t.end.hpp │ │ │ │ ├── gdi_nonremote_t.start.hpp │ │ │ │ ├── gdi_object_t.end.hpp │ │ │ │ ├── gdi_object_t.start.hpp │ │ │ │ ├── geh_hresult_t.end.hpp │ │ │ │ ├── geh_hresult_t.start.hpp │ │ │ │ ├── generic_binding_info_t.end.hpp │ │ │ │ ├── generic_binding_info_t.start.hpp │ │ │ │ ├── generic_binding_routine_pair_t.end.hpp │ │ │ │ ├── generic_binding_routine_pair_t.start.hpp │ │ │ │ ├── generic_debug_event_t.end.hpp │ │ │ │ ├── generic_debug_event_t.start.hpp │ │ │ │ ├── generic_pipe_type_t.end.hpp │ │ │ │ ├── generic_pipe_type_t.start.hpp │ │ │ │ ├── get_filter_file_identifier_input_t.end.hpp │ │ │ │ ├── get_filter_file_identifier_input_t.start.hpp │ │ │ │ ├── get_filter_file_identifier_output_t.end.hpp │ │ │ │ ├── get_filter_file_identifier_output_t.start.hpp │ │ │ │ ├── ghosted_file_extent_t.end.hpp │ │ │ │ ├── ghosted_file_extent_t.start.hpp │ │ │ │ ├── gip_entry_t.end.hpp │ │ │ │ ├── gip_entry_t.start.hpp │ │ │ │ ├── glyphmetrics_t.end.hpp │ │ │ │ ├── glyphmetrics_t.start.hpp │ │ │ │ ├── glyphmetricsfloat_t.end.hpp │ │ │ │ ├── glyphmetricsfloat_t.start.hpp │ │ │ │ ├── gradient_rect_t.end.hpp │ │ │ │ ├── gradient_rect_t.start.hpp │ │ │ │ ├── gradient_triangle_t.end.hpp │ │ │ │ ├── gradient_triangle_t.start.hpp │ │ │ │ ├── gs_handler_data_t.end.hpp │ │ │ │ ├── gs_handler_data_t.start.hpp │ │ │ │ ├── guid_string_t.end.hpp │ │ │ │ ├── guid_string_t.start.hpp │ │ │ │ ├── guid_t.end.hpp │ │ │ │ ├── guid_t.start.hpp │ │ │ │ ├── ham_activity_callback_payload_t.end.hpp │ │ │ │ ├── ham_activity_callback_payload_t.start.hpp │ │ │ │ ├── ham_activity_properties_flags_t.end.hpp │ │ │ │ ├── ham_activity_properties_flags_t.start.hpp │ │ │ │ ├── ham_activity_properties_t.end.hpp │ │ │ │ ├── ham_activity_properties_t.start.hpp │ │ │ │ ├── ham_activity_revoke_flags_t.end.hpp │ │ │ │ ├── ham_activity_revoke_flags_t.start.hpp │ │ │ │ ├── ham_activity_start_flags_t.end.hpp │ │ │ │ ├── ham_activity_start_flags_t.start.hpp │ │ │ │ ├── ham_activity_started_payload_t.end.hpp │ │ │ │ ├── ham_activity_started_payload_t.start.hpp │ │ │ │ ├── ham_external_resource_mask_t.end.hpp │ │ │ │ ├── ham_external_resource_mask_t.start.hpp │ │ │ │ ├── ham_pend_durations_t.end.hpp │ │ │ │ ├── ham_pend_durations_t.start.hpp │ │ │ │ ├── handle_holder_t.end.hpp │ │ │ │ ├── handle_holder_t.start.hpp │ │ │ │ ├── handle_wrapper_marshal_data_header_t.end.hpp │ │ │ │ ├── handle_wrapper_marshal_data_header_t.start.hpp │ │ │ │ ├── harderror_msg_t.end.hpp │ │ │ │ ├── harderror_msg_t.start.hpp │ │ │ │ ├── hardware_counter_data_t.end.hpp │ │ │ │ ├── hardware_counter_data_t.start.hpp │ │ │ │ ├── heapinfo_t.end.hpp │ │ │ │ ├── heapinfo_t.start.hpp │ │ │ │ ├── hiberfile_bucket_t.end.hpp │ │ │ │ ├── hiberfile_bucket_t.start.hpp │ │ │ │ ├── hmac_info_t.end.hpp │ │ │ │ ├── hmac_info_t.start.hpp │ │ │ │ ├── hot_patch_image_info_t.end.hpp │ │ │ │ ├── hot_patch_image_info_t.start.hpp │ │ │ │ ├── hsm_opcode_t.end.hpp │ │ │ │ ├── hsm_opcode_t.start.hpp │ │ │ │ ├── hstring_header_internal_t.end.hpp │ │ │ │ ├── hstring_header_internal_t.start.hpp │ │ │ │ ├── https_policy_callback_data_t.end.hpp │ │ │ │ ├── https_policy_callback_data_t.start.hpp │ │ │ │ ├── hyper_sizedarr_t.end.hpp │ │ │ │ ├── hyper_sizedarr_t.start.hpp │ │ │ │ ├── i_advise_sink2_vtbl_t.end.hpp │ │ │ │ ├── i_advise_sink2_vtbl_t.start.hpp │ │ │ │ ├── i_advise_sink_vtbl_t.end.hpp │ │ │ │ ├── i_advise_sink_vtbl_t.start.hpp │ │ │ │ ├── i_async_manager_vtbl_t.end.hpp │ │ │ │ ├── i_async_manager_vtbl_t.start.hpp │ │ │ │ ├── i_async_rpc_channel_buffer_vtbl_t.end.hpp │ │ │ │ ├── i_async_rpc_channel_buffer_vtbl_t.start.hpp │ │ │ │ ├── i_bind_ctx_vtbl_t.end.hpp │ │ │ │ ├── i_bind_ctx_vtbl_t.start.hpp │ │ │ │ ├── i_call_factory_vtbl_t.end.hpp │ │ │ │ ├── i_call_factory_vtbl_t.start.hpp │ │ │ │ ├── i_channel_wrapper_vtbl_t.end.hpp │ │ │ │ ├── i_channel_wrapper_vtbl_t.start.hpp │ │ │ │ ├── i_class_factory_vtbl_t.end.hpp │ │ │ │ ├── i_class_factory_vtbl_t.start.hpp │ │ │ │ ├── i_connection_point_container_t.end.hpp │ │ │ │ ├── i_connection_point_container_t.start.hpp │ │ │ │ ├── i_connection_point_container_vtbl_t.end.hpp │ │ │ │ ├── i_connection_point_container_vtbl_t.start.hpp │ │ │ │ ├── i_connection_point_t.end.hpp │ │ │ │ ├── i_connection_point_t.start.hpp │ │ │ │ ├── i_connection_point_vtbl_t.end.hpp │ │ │ │ ├── i_connection_point_vtbl_t.start.hpp │ │ │ │ ├── i_continue_vtbl_t.end.hpp │ │ │ │ ├── i_continue_vtbl_t.start.hpp │ │ │ │ ├── i_create_per_interface_ps_factory_vtbl_t.end.hpp │ │ │ │ ├── i_create_per_interface_ps_factory_vtbl_t.start.hpp │ │ │ │ ├── i_data_object_vtbl_t.end.hpp │ │ │ │ ├── i_data_object_vtbl_t.start.hpp │ │ │ │ ├── i_dispatch_vtbl_t.end.hpp │ │ │ │ ├── i_dispatch_vtbl_t.start.hpp │ │ │ │ ├── i_enum_connection_points_t.end.hpp │ │ │ │ ├── i_enum_connection_points_t.start.hpp │ │ │ │ ├── i_enum_connection_points_vtbl_t.end.hpp │ │ │ │ ├── i_enum_connection_points_vtbl_t.start.hpp │ │ │ │ ├── i_enum_connections_t.end.hpp │ │ │ │ ├── i_enum_connections_t.start.hpp │ │ │ │ ├── i_enum_connections_vtbl_t.end.hpp │ │ │ │ ├── i_enum_connections_vtbl_t.start.hpp │ │ │ │ ├── i_enum_formatetc_vtbl_t.end.hpp │ │ │ │ ├── i_enum_formatetc_vtbl_t.start.hpp │ │ │ │ ├── i_enum_moniker_vtbl_t.end.hpp │ │ │ │ ├── i_enum_moniker_vtbl_t.start.hpp │ │ │ │ ├── i_enum_oleverb_vtbl_t.end.hpp │ │ │ │ ├── i_enum_oleverb_vtbl_t.start.hpp │ │ │ │ ├── i_enum_statdata_vtbl_t.end.hpp │ │ │ │ ├── i_enum_statdata_vtbl_t.start.hpp │ │ │ │ ├── i_enum_statpropsetstg_vtbl_t.end.hpp │ │ │ │ ├── i_enum_statpropsetstg_vtbl_t.start.hpp │ │ │ │ ├── i_enum_statpropstg_vtbl_t.end.hpp │ │ │ │ ├── i_enum_statpropstg_vtbl_t.start.hpp │ │ │ │ ├── i_enum_statstg_vtbl_t.end.hpp │ │ │ │ ├── i_enum_statstg_vtbl_t.start.hpp │ │ │ │ ├── i_enum_string_vtbl_t.end.hpp │ │ │ │ ├── i_enum_string_vtbl_t.start.hpp │ │ │ │ ├── i_enum_unknown_vtbl_t.end.hpp │ │ │ │ ├── i_enum_unknown_vtbl_t.start.hpp │ │ │ │ ├── i_face_entry_t.end.hpp │ │ │ │ ├── i_face_entry_t.start.hpp │ │ │ │ ├── i_fill_lock_bytes_vtbl_t.end.hpp │ │ │ │ ├── i_fill_lock_bytes_vtbl_t.start.hpp │ │ │ │ ├── i_lock_bytes_vtbl_t.end.hpp │ │ │ │ ├── i_lock_bytes_vtbl_t.start.hpp │ │ │ │ ├── i_malloc_vtbl_t.end.hpp │ │ │ │ ├── i_malloc_vtbl_t.start.hpp │ │ │ │ ├── i_message_param_list_t.end.hpp │ │ │ │ ├── i_message_param_list_t.start.hpp │ │ │ │ ├── i_message_param_t.end.hpp │ │ │ │ ├── i_message_param_t.start.hpp │ │ │ │ ├── i_moniker_vtbl_t.end.hpp │ │ │ │ ├── i_moniker_vtbl_t.start.hpp │ │ │ │ ├── i_ole_cache2_vtbl_t.end.hpp │ │ │ │ ├── i_ole_cache2_vtbl_t.start.hpp │ │ │ │ ├── i_ole_in_place_active_object_vtbl_t.end.hpp │ │ │ │ ├── i_ole_in_place_active_object_vtbl_t.start.hpp │ │ │ │ ├── i_ole_in_place_ui_window_vtbl_t.end.hpp │ │ │ │ ├── i_ole_in_place_ui_window_vtbl_t.start.hpp │ │ │ │ ├── i_orpc_debug_notify_vtbl_t.end.hpp │ │ │ │ ├── i_orpc_debug_notify_vtbl_t.start.hpp │ │ │ │ ├── i_per_interface_ps_factory_vtbl_t.end.hpp │ │ │ │ ├── i_per_interface_ps_factory_vtbl_t.start.hpp │ │ │ │ ├── i_record_info_vtbl_t.end.hpp │ │ │ │ ├── i_record_info_vtbl_t.start.hpp │ │ │ │ ├── i_release_marshal_buffers_vtbl_t.end.hpp │ │ │ │ ├── i_release_marshal_buffers_vtbl_t.start.hpp │ │ │ │ ├── i_rpc_channel_buffer2_vtbl_t.end.hpp │ │ │ │ ├── i_rpc_channel_buffer2_vtbl_t.start.hpp │ │ │ │ ├── i_rpc_channel_buffer3_vtbl_t.end.hpp │ │ │ │ ├── i_rpc_channel_buffer3_vtbl_t.start.hpp │ │ │ │ ├── i_rpc_channel_buffer_vtbl_t.end.hpp │ │ │ │ ├── i_rpc_channel_buffer_vtbl_t.start.hpp │ │ │ │ ├── i_rpc_proxy_buffer_vtbl_t.end.hpp │ │ │ │ ├── i_rpc_proxy_buffer_vtbl_t.start.hpp │ │ │ │ ├── i_rpc_stub_buffer_vtbl_t.end.hpp │ │ │ │ ├── i_rpc_stub_buffer_vtbl_t.start.hpp │ │ │ │ ├── i_rpc_syntax_negotiate_vtbl_t.end.hpp │ │ │ │ ├── i_rpc_syntax_negotiate_vtbl_t.start.hpp │ │ │ │ ├── i_runnable_object_vtbl_t.end.hpp │ │ │ │ ├── i_runnable_object_vtbl_t.start.hpp │ │ │ │ ├── i_running_object_table_vtbl_t.end.hpp │ │ │ │ ├── i_running_object_table_vtbl_t.start.hpp │ │ │ │ ├── i_sequential_stream_vtbl_t.end.hpp │ │ │ │ ├── i_sequential_stream_vtbl_t.start.hpp │ │ │ │ ├── i_storage_vtbl_t.end.hpp │ │ │ │ ├── i_storage_vtbl_t.start.hpp │ │ │ │ ├── i_stream_vtbl_t.end.hpp │ │ │ │ ├── i_stream_vtbl_t.start.hpp │ │ │ │ ├── i_synchronize_vtbl_t.end.hpp │ │ │ │ ├── i_synchronize_vtbl_t.start.hpp │ │ │ │ ├── i_type_comp_vtbl_t.end.hpp │ │ │ │ ├── i_type_comp_vtbl_t.start.hpp │ │ │ │ ├── i_type_info_vtbl_t.end.hpp │ │ │ │ ├── i_type_info_vtbl_t.start.hpp │ │ │ │ ├── i_type_lib_vtbl_t.end.hpp │ │ │ │ ├── i_type_lib_vtbl_t.start.hpp │ │ │ │ ├── i_unknown_vtbl_t.end.hpp │ │ │ │ ├── i_unknown_vtbl_t.start.hpp │ │ │ │ ├── i_view_object_vtbl_t.end.hpp │ │ │ │ ├── i_view_object_vtbl_t.start.hpp │ │ │ │ ├── ic_frame_t.end.hpp │ │ │ │ ├── ic_frame_t.start.hpp │ │ │ │ ├── iconinfo_t.end.hpp │ │ │ │ ├── iconinfo_t.start.hpp │ │ │ │ ├── iconinfoexa_t.end.hpp │ │ │ │ ├── iconinfoexa_t.start.hpp │ │ │ │ ├── iconinfoexw_t.end.hpp │ │ │ │ ├── iconinfoexw_t.start.hpp │ │ │ │ ├── iface_midl_expr_format_string_t.end.hpp │ │ │ │ ├── iface_midl_expr_format_string_t.start.hpp │ │ │ │ ├── iface_midl_proc_format_string_t.end.hpp │ │ │ │ ├── iface_midl_proc_format_string_t.start.hpp │ │ │ │ ├── iface_midl_type_format_string_t.end.hpp │ │ │ │ ├── iface_midl_type_format_string_t.start.hpp │ │ │ │ ├── iinspectable_midl_proc_format_string_t.end.hpp │ │ │ │ ├── iinspectable_midl_proc_format_string_t.start.hpp │ │ │ │ ├── iinspectable_midl_type_format_string_t.end.hpp │ │ │ │ ├── iinspectable_midl_type_format_string_t.start.hpp │ │ │ │ ├── iinspectablederived_midl_proc_format_string_t.end.hpp │ │ │ │ ├── iinspectablederived_midl_proc_format_string_t.start.hpp │ │ │ │ ├── iinspectablederived_midl_type_format_string_t.end.hpp │ │ │ │ ├── iinspectablederived_midl_type_format_string_t.start.hpp │ │ │ │ ├── impersonation_state_checker_t.end.hpp │ │ │ │ ├── impersonation_state_checker_t.start.hpp │ │ │ │ ├── import_object_header_t.end.hpp │ │ │ │ ├── import_object_header_t.start.hpp │ │ │ │ ├── in_frame_t.end.hpp │ │ │ │ ├── in_frame_t.start.hpp │ │ │ │ ├── index_record_t.end.hpp │ │ │ │ ├── index_record_t.start.hpp │ │ │ │ ├── initial_teb_t.end.hpp │ │ │ │ ├── initial_teb_t.start.hpp │ │ │ │ ├── inproc_class_activation_properties_t.end.hpp │ │ │ │ ├── inproc_class_activation_properties_t.start.hpp │ │ │ │ ├── input_record_t.end.hpp │ │ │ │ ├── input_record_t.start.hpp │ │ │ │ ├── installdata_t.end.hpp │ │ │ │ ├── installdata_t.start.hpp │ │ │ │ ├── installspec_t.end.hpp │ │ │ │ ├── installspec_t.start.hpp │ │ │ │ ├── instance_info_t.end.hpp │ │ │ │ ├── instance_info_t.start.hpp │ │ │ │ ├── instantiation_info_t.end.hpp │ │ │ │ ├── instantiation_info_t.start.hpp │ │ │ │ ├── interface_registration_entry_properties_t.end.hpp │ │ │ │ ├── interface_registration_entry_properties_t.start.hpp │ │ │ │ ├── interpreter_flags_t.end.hpp │ │ │ │ ├── interpreter_flags_t.start.hpp │ │ │ │ ├── interpreter_opt_flags2_t.end.hpp │ │ │ │ ├── interpreter_opt_flags2_t.start.hpp │ │ │ │ ├── interpreter_opt_flags_t.end.hpp │ │ │ │ ├── interpreter_opt_flags_t.start.hpp │ │ │ │ ├── inverted_function_table_t.end.hpp │ │ │ │ ├── inverted_function_table_t.start.hpp │ │ │ │ ├── ips_factory_buffer_vtbl_t.end.hpp │ │ │ │ ├── ips_factory_buffer_vtbl_t.start.hpp │ │ │ │ ├── ipt_trace_event_data_t.end.hpp │ │ │ │ ├── ipt_trace_event_data_t.start.hpp │ │ │ │ ├── ir_timer_extra_create_parameter_t.end.hpp │ │ │ │ ├── ir_timer_extra_create_parameter_t.start.hpp │ │ │ │ ├── irc_entry_t.end.hpp │ │ │ │ ├── irc_entry_t.start.hpp │ │ │ │ ├── irot_midl_proc_format_string_t.end.hpp │ │ │ │ ├── irot_midl_proc_format_string_t.start.hpp │ │ │ │ ├── irot_midl_type_format_string_t.end.hpp │ │ │ │ ├── irot_midl_type_format_string_t.start.hpp │ │ │ │ ├── jit_debug_info_t.end.hpp │ │ │ │ ├── jit_debug_info_t.start.hpp │ │ │ │ ├── job_set_array_t.end.hpp │ │ │ │ ├── job_set_array_t.start.hpp │ │ │ │ ├── jobobject_associate_completion_port_t.end.hpp │ │ │ │ ├── jobobject_associate_completion_port_t.start.hpp │ │ │ │ ├── jobobject_basic_accounting_information_t.end.hpp │ │ │ │ ├── jobobject_basic_accounting_information_t.start.hpp │ │ │ │ ├── jobobject_basic_and_io_accounting_information_t.end.hpp │ │ │ │ ├── jobobject_basic_and_io_accounting_information_t.start.hpp │ │ │ │ ├── jobobject_basic_limit_information_t.end.hpp │ │ │ │ ├── jobobject_basic_limit_information_t.start.hpp │ │ │ │ ├── jobobject_basic_process_id_list_t.end.hpp │ │ │ │ ├── jobobject_basic_process_id_list_t.start.hpp │ │ │ │ ├── jobobject_basic_ui_restrictions_t.end.hpp │ │ │ │ ├── jobobject_basic_ui_restrictions_t.start.hpp │ │ │ │ ├── jobobject_container_identifier_v2_t.end.hpp │ │ │ │ ├── jobobject_container_identifier_v2_t.start.hpp │ │ │ │ ├── jobobject_cpu_rate_control_information_t.end.hpp │ │ │ │ ├── jobobject_cpu_rate_control_information_t.start.hpp │ │ │ │ ├── jobobject_end_of_job_time_information_t.end.hpp │ │ │ │ ├── jobobject_end_of_job_time_information_t.start.hpp │ │ │ │ ├── jobobject_extended_accounting_information_t.end.hpp │ │ │ │ ├── jobobject_extended_accounting_information_t.start.hpp │ │ │ │ ├── jobobject_extended_accounting_information_v2_t.end.hpp │ │ │ │ ├── jobobject_extended_accounting_information_v2_t.start.hpp │ │ │ │ ├── jobobject_extended_limit_information_t.end.hpp │ │ │ │ ├── jobobject_extended_limit_information_t.start.hpp │ │ │ │ ├── jobobject_extended_limit_information_v2_t.end.hpp │ │ │ │ ├── jobobject_extended_limit_information_v2_t.start.hpp │ │ │ │ ├── jobobject_freeze_information_t.end.hpp │ │ │ │ ├── jobobject_freeze_information_t.start.hpp │ │ │ │ ├── jobobject_interference_information_t.end.hpp │ │ │ │ ├── jobobject_interference_information_t.start.hpp │ │ │ │ ├── jobobject_io_attribution_information_t.end.hpp │ │ │ │ ├── jobobject_io_attribution_information_t.start.hpp │ │ │ │ ├── jobobject_io_attribution_stats_t.end.hpp │ │ │ │ ├── jobobject_io_attribution_stats_t.start.hpp │ │ │ │ ├── jobobject_io_rate_control_information_native_t.end.hpp │ │ │ │ ├── jobobject_io_rate_control_information_native_t.start.hpp │ │ │ │ ├── jobobject_io_rate_control_information_native_v2_t.end.hpp │ │ │ │ ├── jobobject_io_rate_control_information_native_v2_t.start.hpp │ │ │ │ ├── jobobject_io_rate_control_information_native_v3_t.end.hpp │ │ │ │ ├── jobobject_io_rate_control_information_native_v3_t.start.hpp │ │ │ │ ├── jobobject_io_rate_control_information_t.end.hpp │ │ │ │ ├── jobobject_io_rate_control_information_t.start.hpp │ │ │ │ ├── jobobject_jobset_information_t.end.hpp │ │ │ │ ├── jobobject_jobset_information_t.start.hpp │ │ │ │ ├── jobobject_limit_violation_information_2_t.end.hpp │ │ │ │ ├── jobobject_limit_violation_information_2_t.start.hpp │ │ │ │ ├── jobobject_limit_violation_information_t.end.hpp │ │ │ │ ├── jobobject_limit_violation_information_t.start.hpp │ │ │ │ ├── jobobject_limit_violation_information_v2_t.end.hpp │ │ │ │ ├── jobobject_limit_violation_information_v2_t.start.hpp │ │ │ │ ├── jobobject_memory_usage_information_t.end.hpp │ │ │ │ ├── jobobject_memory_usage_information_t.start.hpp │ │ │ │ ├── jobobject_memory_usage_information_v2_t.end.hpp │ │ │ │ ├── jobobject_memory_usage_information_v2_t.start.hpp │ │ │ │ ├── jobobject_net_rate_control_information_t.end.hpp │ │ │ │ ├── jobobject_net_rate_control_information_t.start.hpp │ │ │ │ ├── jobobject_notification_limit_information_2_t.end.hpp │ │ │ │ ├── jobobject_notification_limit_information_2_t.start.hpp │ │ │ │ ├── jobobject_notification_limit_information_t.end.hpp │ │ │ │ ├── jobobject_notification_limit_information_t.start.hpp │ │ │ │ ├── jobobject_notification_limit_information_v2_t.end.hpp │ │ │ │ ├── jobobject_notification_limit_information_v2_t.start.hpp │ │ │ │ ├── jobobject_security_limit_information_t.end.hpp │ │ │ │ ├── jobobject_security_limit_information_t.start.hpp │ │ │ │ ├── jobobject_wake_information_t.end.hpp │ │ │ │ ├── jobobject_wake_information_t.start.hpp │ │ │ │ ├── jobobject_wake_information_v1_t.end.hpp │ │ │ │ ├── jobobject_wake_information_v1_t.start.hpp │ │ │ │ ├── journal_absolute_information_t.end.hpp │ │ │ │ ├── journal_absolute_information_t.start.hpp │ │ │ │ ├── journal_client_information_t.end.hpp │ │ │ │ ├── journal_client_information_t.start.hpp │ │ │ │ ├── journal_create_delete_key_information_t.end.hpp │ │ │ │ ├── journal_create_delete_key_information_t.start.hpp │ │ │ │ ├── journal_rename_key_information_t.end.hpp │ │ │ │ ├── journal_rename_key_information_t.start.hpp │ │ │ │ ├── journal_set_delete_value_information_t.end.hpp │ │ │ │ ├── journal_set_delete_value_information_t.start.hpp │ │ │ │ ├── journal_set_key_last_write_time_information_t.end.hpp │ │ │ │ ├── journal_set_key_last_write_time_information_t.start.hpp │ │ │ │ ├── journal_set_key_security_information_t.end.hpp │ │ │ │ ├── journal_set_key_security_information_t.start.hpp │ │ │ │ ├── journal_set_key_user_flags_information_t.end.hpp │ │ │ │ ├── journal_set_key_user_flags_information_t.start.hpp │ │ │ │ ├── journal_transaction_boundary_information_t.end.hpp │ │ │ │ ├── journal_transaction_boundary_information_t.start.hpp │ │ │ │ ├── jump_buffer_t.end.hpp │ │ │ │ ├── jump_buffer_t.start.hpp │ │ │ │ ├── kaffinity_enumeration_context_t.end.hpp │ │ │ │ ├── kaffinity_enumeration_context_t.start.hpp │ │ │ │ ├── kcontinue_argument_t.end.hpp │ │ │ │ ├── kcontinue_argument_t.start.hpp │ │ │ │ ├── kcrm_marshal_header_t.end.hpp │ │ │ │ ├── kcrm_marshal_header_t.start.hpp │ │ │ │ ├── kcrm_protocol_blob_t.end.hpp │ │ │ │ ├── kcrm_protocol_blob_t.start.hpp │ │ │ │ ├── kcrm_transaction_blob_t.end.hpp │ │ │ │ ├── kcrm_transaction_blob_t.start.hpp │ │ │ │ ├── kdhelp64_t.end.hpp │ │ │ │ ├── kdhelp64_t.start.hpp │ │ │ │ ├── kernel_cet_context_t.end.hpp │ │ │ │ ├── kernel_cet_context_t.start.hpp │ │ │ │ ├── kernel_user_times_t.end.hpp │ │ │ │ ├── kernel_user_times_t.start.hpp │ │ │ │ ├── key_basic_information_t.end.hpp │ │ │ │ ├── key_basic_information_t.start.hpp │ │ │ │ ├── key_cached_information_t.end.hpp │ │ │ │ ├── key_cached_information_t.start.hpp │ │ │ │ ├── key_control_flags_information_t.end.hpp │ │ │ │ ├── key_control_flags_information_t.start.hpp │ │ │ │ ├── key_event_record_t.end.hpp │ │ │ │ ├── key_event_record_t.start.hpp │ │ │ │ ├── key_flags_information_t.end.hpp │ │ │ │ ├── key_flags_information_t.start.hpp │ │ │ │ ├── key_full_information_t.end.hpp │ │ │ │ ├── key_full_information_t.start.hpp │ │ │ │ ├── key_handle_tags_information_t.end.hpp │ │ │ │ ├── key_handle_tags_information_t.start.hpp │ │ │ │ ├── key_layer_information_t.end.hpp │ │ │ │ ├── key_layer_information_t.start.hpp │ │ │ │ ├── key_name_information_t.end.hpp │ │ │ │ ├── key_name_information_t.start.hpp │ │ │ │ ├── key_node_information_t.end.hpp │ │ │ │ ├── key_node_information_t.start.hpp │ │ │ │ ├── key_open_subkeys_information_t.end.hpp │ │ │ │ ├── key_open_subkeys_information_t.start.hpp │ │ │ │ ├── key_pid_array_t.end.hpp │ │ │ │ ├── key_pid_array_t.start.hpp │ │ │ │ ├── key_refresh_info_t.end.hpp │ │ │ │ ├── key_refresh_info_t.start.hpp │ │ │ │ ├── key_set_layer_information_t.end.hpp │ │ │ │ ├── key_set_layer_information_t.start.hpp │ │ │ │ ├── key_set_virtualization_information_t.end.hpp │ │ │ │ ├── key_set_virtualization_information_t.start.hpp │ │ │ │ ├── key_trust_information_t.end.hpp │ │ │ │ ├── key_trust_information_t.start.hpp │ │ │ │ ├── key_type_subtype_t.end.hpp │ │ │ │ ├── key_type_subtype_t.start.hpp │ │ │ │ ├── key_value_basic_information_t.end.hpp │ │ │ │ ├── key_value_basic_information_t.start.hpp │ │ │ │ ├── key_value_entry_t.end.hpp │ │ │ │ ├── key_value_entry_t.start.hpp │ │ │ │ ├── key_value_layer_information_t.end.hpp │ │ │ │ ├── key_value_layer_information_t.start.hpp │ │ │ │ ├── key_value_partial_information_align64_t.end.hpp │ │ │ │ ├── key_value_partial_information_align64_t.start.hpp │ │ │ │ ├── key_value_partial_information_t.end.hpp │ │ │ │ ├── key_value_partial_information_t.start.hpp │ │ │ │ ├── key_virtualization_information_t.end.hpp │ │ │ │ ├── key_virtualization_information_t.start.hpp │ │ │ │ ├── key_wow64_flags_information_t.end.hpp │ │ │ │ ├── key_wow64_flags_information_t.start.hpp │ │ │ │ ├── key_write_time_information_t.end.hpp │ │ │ │ ├── key_write_time_information_t.start.hpp │ │ │ │ ├── knonvolatile_context_pointers_arm64_t.end.hpp │ │ │ │ ├── knonvolatile_context_pointers_arm64_t.start.hpp │ │ │ │ ├── knonvolatile_context_pointers_t.end.hpp │ │ │ │ ├── knonvolatile_context_pointers_t.start.hpp │ │ │ │ ├── known_clsid_and_scope_t.end.hpp │ │ │ │ ├── known_clsid_and_scope_t.start.hpp │ │ │ │ ├── l_ep_bi_header_t.end.hpp │ │ │ │ ├── l_ep_bi_header_t.start.hpp │ │ │ │ ├── last_exception_log_t.end.hpp │ │ │ │ ├── last_exception_log_t.start.hpp │ │ │ │ ├── lblob_t.end.hpp │ │ │ │ ├── lblob_t.start.hpp │ │ │ │ ├── lbr_trace_event_data_t.end.hpp │ │ │ │ ├── lbr_trace_event_data_t.start.hpp │ │ │ │ ├── lc_time_data_t.end.hpp │ │ │ │ ├── lc_time_data_t.start.hpp │ │ │ │ ├── lclor_midl_expr_format_string_t.end.hpp │ │ │ │ ├── lclor_midl_expr_format_string_t.start.hpp │ │ │ │ ├── lclor_midl_proc_format_string_t.end.hpp │ │ │ │ ├── lclor_midl_proc_format_string_t.start.hpp │ │ │ │ ├── lclor_midl_type_format_string_t.end.hpp │ │ │ │ ├── lclor_midl_type_format_string_t.start.hpp │ │ │ │ ├── lconv_t.end.hpp │ │ │ │ ├── lconv_t.start.hpp │ │ │ │ ├── ldbl12_t.end.hpp │ │ │ │ ├── ldbl12_t.start.hpp │ │ │ │ ├── ldiv_t.end.hpp │ │ │ │ ├── ldiv_t.start.hpp │ │ │ │ ├── ldouble_t.end.hpp │ │ │ │ ├── ldouble_t.start.hpp │ │ │ │ ├── ldouble_val_t.end.hpp │ │ │ │ ├── ldouble_val_t.start.hpp │ │ │ │ ├── ldt_entry_t.end.hpp │ │ │ │ ├── ldt_entry_t.start.hpp │ │ │ │ ├── leap_second_data_registry_entry_t.end.hpp │ │ │ │ ├── leap_second_data_registry_entry_t.start.hpp │ │ │ │ ├── learning_mode_object_information_t.end.hpp │ │ │ │ ├── learning_mode_object_information_t.start.hpp │ │ │ │ ├── legacy_free_sync_client_call_t.end.hpp │ │ │ │ ├── legacy_free_sync_client_call_t.start.hpp │ │ │ │ ├── legacy_free_sync_server_call_t.end.hpp │ │ │ │ ├── legacy_free_sync_server_call_t.start.hpp │ │ │ │ ├── link_tracking_information_t.end.hpp │ │ │ │ ├── link_tracking_information_t.start.hpp │ │ │ │ ├── lldiv_t.end.hpp │ │ │ │ ├── lldiv_t.start.hpp │ │ │ │ ├── load_asdata_table_t.end.hpp │ │ │ │ ├── load_asdata_table_t.start.hpp │ │ │ │ ├── load_dll_debug_info_t.end.hpp │ │ │ │ ├── load_dll_debug_info_t.start.hpp │ │ │ │ ├── load_dll_event_data_t.end.hpp │ │ │ │ ├── load_dll_event_data_t.start.hpp │ │ │ │ ├── localeinfo_struct_t.end.hpp │ │ │ │ ├── localeinfo_struct_t.start.hpp │ │ │ │ ├── lock_cookie_t.end.hpp │ │ │ │ ├── lock_cookie_t.start.hpp │ │ │ │ ├── lock_entry_t.end.hpp │ │ │ │ ├── lock_entry_t.start.hpp │ │ │ │ ├── logical_disk_defrag_t.end.hpp │ │ │ │ ├── logical_disk_defrag_t.start.hpp │ │ │ │ ├── logical_disk_extents_t.end.hpp │ │ │ │ ├── logical_disk_extents_t.start.hpp │ │ │ │ ├── long_sizedarr_t.end.hpp │ │ │ │ ├── long_sizedarr_t.start.hpp │ │ │ │ ├── longdouble_t.end.hpp │ │ │ │ ├── longdouble_t.start.hpp │ │ │ │ ├── lookup_stream_from_cluster_entry_t.end.hpp │ │ │ │ ├── lookup_stream_from_cluster_entry_t.start.hpp │ │ │ │ ├── lookup_stream_from_cluster_input_t.end.hpp │ │ │ │ ├── lookup_stream_from_cluster_input_t.start.hpp │ │ │ │ ├── lookup_stream_from_cluster_output_t.end.hpp │ │ │ │ ├── lookup_stream_from_cluster_output_t.start.hpp │ │ │ │ ├── loop_detector_t.end.hpp │ │ │ │ ├── loop_detector_t.start.hpp │ │ │ │ ├── lunicode_string_t.end.hpp │ │ │ │ ├── lunicode_string_t.start.hpp │ │ │ │ ├── lutf8_string_t.end.hpp │ │ │ │ ├── lutf8_string_t.start.hpp │ │ │ │ ├── machine_wide_reg_catalog_t.end.hpp │ │ │ │ ├── machine_wide_reg_catalog_t.start.hpp │ │ │ │ ├── malloc_free_struct_t.end.hpp │ │ │ │ ├── malloc_free_struct_t.start.hpp │ │ │ │ ├── manage_hot_patch_apply_image_patch_t.end.hpp │ │ │ │ ├── manage_hot_patch_apply_image_patch_t.start.hpp │ │ │ │ ├── manage_hot_patch_check_enabled_t.end.hpp │ │ │ │ ├── manage_hot_patch_check_enabled_t.start.hpp │ │ │ │ ├── manage_hot_patch_load_patch_t.end.hpp │ │ │ │ ├── manage_hot_patch_load_patch_t.start.hpp │ │ │ │ ├── manage_hot_patch_query_active_patches_t.end.hpp │ │ │ │ ├── manage_hot_patch_query_active_patches_t.start.hpp │ │ │ │ ├── manage_hot_patch_query_patches_t.end.hpp │ │ │ │ ├── manage_hot_patch_query_patches_t.start.hpp │ │ │ │ ├── manage_hot_patch_query_single_patch_t.end.hpp │ │ │ │ ├── manage_hot_patch_query_single_patch_t.start.hpp │ │ │ │ ├── manage_hot_patch_unload_patch_t.end.hpp │ │ │ │ ├── manage_hot_patch_unload_patch_t.start.hpp │ │ │ │ ├── manage_writes_to_executable_memory_t.end.hpp │ │ │ │ ├── manage_writes_to_executable_memory_t.start.hpp │ │ │ │ ├── mark_handle_info32_t.end.hpp │ │ │ │ ├── mark_handle_info32_t.start.hpp │ │ │ │ ├── mark_handle_info_t.end.hpp │ │ │ │ ├── mark_handle_info_t.start.hpp │ │ │ │ ├── marshal_params_t.end.hpp │ │ │ │ ├── marshal_params_t.start.hpp │ │ │ │ ├── marshaled_handle_storage_t.end.hpp │ │ │ │ ├── marshaled_handle_storage_t.start.hpp │ │ │ │ ├── marshaling_context_attribute_value_t.end.hpp │ │ │ │ ├── marshaling_context_attribute_value_t.start.hpp │ │ │ │ ├── mat2_t.end.hpp │ │ │ │ ├── mat2_t.start.hpp │ │ │ │ ├── maxversiontested_info_t.end.hpp │ │ │ │ ├── maxversiontested_info_t.start.hpp │ │ │ │ ├── mbstatet_t.end.hpp │ │ │ │ ├── mbstatet_t.start.hpp │ │ │ │ ├── mega_midl_expr_format_string_t.end.hpp │ │ │ │ ├── mega_midl_expr_format_string_t.start.hpp │ │ │ │ ├── mega_midl_proc_format_string_t.end.hpp │ │ │ │ ├── mega_midl_proc_format_string_t.start.hpp │ │ │ │ ├── mega_midl_type_format_string_t.end.hpp │ │ │ │ ├── mega_midl_type_format_string_t.start.hpp │ │ │ │ ├── mem_address_requirements_t.end.hpp │ │ │ │ ├── mem_address_requirements_t.start.hpp │ │ │ │ ├── memory_bad_identity_information_t.end.hpp │ │ │ │ ├── memory_bad_identity_information_t.start.hpp │ │ │ │ ├── memory_basic_information32_t.end.hpp │ │ │ │ ├── memory_basic_information32_t.start.hpp │ │ │ │ ├── memory_basic_information64_t.end.hpp │ │ │ │ ├── memory_basic_information64_t.start.hpp │ │ │ │ ├── memory_basic_information_t.end.hpp │ │ │ │ ├── memory_basic_information_t.start.hpp │ │ │ │ ├── memory_combine_information_ex2_t.end.hpp │ │ │ │ ├── memory_combine_information_ex2_t.start.hpp │ │ │ │ ├── memory_combine_information_ex_t.end.hpp │ │ │ │ ├── memory_combine_information_ex_t.start.hpp │ │ │ │ ├── memory_combine_information_t.end.hpp │ │ │ │ ├── memory_combine_information_t.start.hpp │ │ │ │ ├── memory_enclave_image_information_t.end.hpp │ │ │ │ ├── memory_enclave_image_information_t.start.hpp │ │ │ │ ├── memory_exhaustion_information_t.end.hpp │ │ │ │ ├── memory_exhaustion_information_t.start.hpp │ │ │ │ ├── memory_frame_information_t.end.hpp │ │ │ │ ├── memory_frame_information_t.start.hpp │ │ │ │ ├── memory_image_information_t.end.hpp │ │ │ │ ├── memory_image_information_t.start.hpp │ │ │ │ ├── memory_info_t.end.hpp │ │ │ │ ├── memory_info_t.start.hpp │ │ │ │ ├── memory_partition_attribute_information_t.end.hpp │ │ │ │ ├── memory_partition_attribute_information_t.start.hpp │ │ │ │ ├── memory_partition_charge_sharing_attributes_t.end.hpp │ │ │ │ ├── memory_partition_charge_sharing_attributes_t.start.hpp │ │ │ │ ├── memory_partition_charge_sharing_information_t.end.hpp │ │ │ │ ├── memory_partition_charge_sharing_information_t.start.hpp │ │ │ │ ├── memory_partition_configuration_information_t.end.hpp │ │ │ │ ├── memory_partition_configuration_information_t.start.hpp │ │ │ │ ├── memory_partition_create_large_pages_information_t.end.hpp │ │ │ │ ├── memory_partition_create_large_pages_information_t.start.hpp │ │ │ │ ├── memory_partition_dedicated_memory_attribute_t.end.hpp │ │ │ │ ├── memory_partition_dedicated_memory_attribute_t.start.hpp │ │ │ │ ├── memory_partition_dedicated_memory_information_t.end.hpp │ │ │ │ ├── memory_partition_dedicated_memory_information_t.start.hpp │ │ │ │ ├── memory_partition_dedicated_memory_open_information_t.end.hpp │ │ │ │ ├── memory_partition_dedicated_memory_open_information_t.start.hpp │ │ │ │ ├── memory_partition_initial_add_information_t.end.hpp │ │ │ │ ├── memory_partition_initial_add_information_t.start.hpp │ │ │ │ ├── memory_partition_memory_events_information_t.end.hpp │ │ │ │ ├── memory_partition_memory_events_information_t.start.hpp │ │ │ │ ├── memory_partition_node_information_t.end.hpp │ │ │ │ ├── memory_partition_node_information_t.start.hpp │ │ │ │ ├── memory_partition_node_page_information_t.end.hpp │ │ │ │ ├── memory_partition_node_page_information_t.start.hpp │ │ │ │ ├── memory_partition_page_combine_information_t.end.hpp │ │ │ │ ├── memory_partition_page_combine_information_t.start.hpp │ │ │ │ ├── memory_partition_page_range_t.end.hpp │ │ │ │ ├── memory_partition_page_range_t.start.hpp │ │ │ │ ├── memory_partition_pagefile_information_t.end.hpp │ │ │ │ ├── memory_partition_pagefile_information_t.start.hpp │ │ │ │ ├── memory_partition_transfer_information_t.end.hpp │ │ │ │ ├── memory_partition_transfer_information_t.start.hpp │ │ │ │ ├── memory_physical_contiguity_information_t.end.hpp │ │ │ │ ├── memory_physical_contiguity_information_t.start.hpp │ │ │ │ ├── memory_physical_contiguity_unit_information_t.end.hpp │ │ │ │ ├── memory_physical_contiguity_unit_information_t.start.hpp │ │ │ │ ├── memory_priority_information_t.end.hpp │ │ │ │ ├── memory_priority_information_t.start.hpp │ │ │ │ ├── memory_region_information_t.end.hpp │ │ │ │ ├── memory_region_information_t.start.hpp │ │ │ │ ├── memory_scrub_information_t.end.hpp │ │ │ │ ├── memory_scrub_information_t.start.hpp │ │ │ │ ├── memory_shared_commit_information_t.end.hpp │ │ │ │ ├── memory_shared_commit_information_t.start.hpp │ │ │ │ ├── memory_working_set_block_t.end.hpp │ │ │ │ ├── memory_working_set_block_t.start.hpp │ │ │ │ ├── memory_working_set_ex_block_t.end.hpp │ │ │ │ ├── memory_working_set_ex_block_t.start.hpp │ │ │ │ ├── memory_working_set_ex_information_t.end.hpp │ │ │ │ ├── memory_working_set_ex_information_t.start.hpp │ │ │ │ ├── memory_working_set_information_t.end.hpp │ │ │ │ ├── memory_working_set_information_t.start.hpp │ │ │ │ ├── memorystatus_t.end.hpp │ │ │ │ ├── memorystatus_t.start.hpp │ │ │ │ ├── memorystatusex_t.end.hpp │ │ │ │ ├── memorystatusex_t.start.hpp │ │ │ │ ├── memstm_t.end.hpp │ │ │ │ ├── memstm_t.start.hpp │ │ │ │ ├── menu_event_record_t.end.hpp │ │ │ │ ├── menu_event_record_t.start.hpp │ │ │ │ ├── menuitemtemplate_t.end.hpp │ │ │ │ ├── menuitemtemplate_t.start.hpp │ │ │ │ ├── menuitemtemplateheader_t.end.hpp │ │ │ │ ├── menuitemtemplateheader_t.start.hpp │ │ │ │ ├── message_resource_block_t.end.hpp │ │ │ │ ├── message_resource_block_t.start.hpp │ │ │ │ ├── message_resource_data_t.end.hpp │ │ │ │ ├── message_resource_data_t.start.hpp │ │ │ │ ├── message_resource_entry_t.end.hpp │ │ │ │ ├── message_resource_entry_t.start.hpp │ │ │ │ ├── message_trace_header_t.end.hpp │ │ │ │ ├── message_trace_header_t.start.hpp │ │ │ │ ├── message_trace_t.end.hpp │ │ │ │ ├── message_trace_t.start.hpp │ │ │ │ ├── message_trace_user_t.end.hpp │ │ │ │ ├── message_trace_user_t.start.hpp │ │ │ │ ├── mft_enum_data_v0_t.end.hpp │ │ │ │ ├── mft_enum_data_v0_t.start.hpp │ │ │ │ ├── mft_enum_data_v1_t.end.hpp │ │ │ │ ├── mft_enum_data_v1_t.start.hpp │ │ │ │ ├── mgot_name_list_t.end.hpp │ │ │ │ ├── mgot_name_list_t.start.hpp │ │ │ │ ├── mgot_scm_token_t.end.hpp │ │ │ │ ├── mgot_scm_token_t.start.hpp │ │ │ │ ├── microsoft_telemetry_assert_args_t.end.hpp │ │ │ │ ├── microsoft_telemetry_assert_args_t.start.hpp │ │ │ │ ├── microsoft_telemetry_assert_triggered_node_t.end.hpp │ │ │ │ ├── microsoft_telemetry_assert_triggered_node_t.start.hpp │ │ │ │ ├── mid_entry_t.end.hpp │ │ │ │ ├── mid_entry_t.start.hpp │ │ │ │ ├── midl_format_string_t.end.hpp │ │ │ │ ├── midl_format_string_t.start.hpp │ │ │ │ ├── midl_i_call_frame_0001_t.end.hpp │ │ │ │ ├── midl_i_call_frame_0001_t.start.hpp │ │ │ │ ├── midl_i_call_frame_0002_t.end.hpp │ │ │ │ ├── midl_i_call_frame_0002_t.start.hpp │ │ │ │ ├── midl_i_call_frame_0004_t.end.hpp │ │ │ │ ├── midl_i_call_frame_0004_t.start.hpp │ │ │ │ ├── midl_i_local_object_exporter_0001_t.end.hpp │ │ │ │ ├── midl_i_local_object_exporter_0001_t.start.hpp │ │ │ │ ├── midl_i_local_object_exporter_0002_t.end.hpp │ │ │ │ ├── midl_i_local_object_exporter_0002_t.start.hpp │ │ │ │ ├── midl_i_local_object_exporter_0003_t.end.hpp │ │ │ │ ├── midl_i_local_object_exporter_0003_t.start.hpp │ │ │ │ ├── midl_i_local_object_exporter_0004_t.end.hpp │ │ │ │ ├── midl_i_local_object_exporter_0004_t.start.hpp │ │ │ │ ├── midl_i_local_object_exporter_0005_t.end.hpp │ │ │ │ ├── midl_i_local_object_exporter_0005_t.start.hpp │ │ │ │ ├── midl_i_local_object_exporter_0007_t.end.hpp │ │ │ │ ├── midl_i_local_object_exporter_0007_t.start.hpp │ │ │ │ ├── midl_interception_info_t.end.hpp │ │ │ │ ├── midl_interception_info_t.start.hpp │ │ │ │ ├── midl_interface_method_properties_t.end.hpp │ │ │ │ ├── midl_interface_method_properties_t.start.hpp │ │ │ │ ├── midl_method_property_map_t.end.hpp │ │ │ │ ├── midl_method_property_map_t.start.hpp │ │ │ │ ├── midl_method_property_t.end.hpp │ │ │ │ ├── midl_method_property_t.start.hpp │ │ │ │ ├── midl_midl_itf_activate_0000_0010_0004_t.end.hpp │ │ │ │ ├── midl_midl_itf_activate_0000_0010_0004_t.start.hpp │ │ │ │ ├── midl_midl_itf_wtypes_0000_0001_0001_t.end.hpp │ │ │ │ ├── midl_midl_itf_wtypes_0000_0001_0001_t.start.hpp │ │ │ │ ├── midl_server_info_t.end.hpp │ │ │ │ ├── midl_server_info_t.start.hpp │ │ │ │ ├── midl_stub_desc_t.end.hpp │ │ │ │ ├── midl_stub_desc_t.start.hpp │ │ │ │ ├── midl_stub_message_t.end.hpp │ │ │ │ ├── midl_stub_message_t.start.hpp │ │ │ │ ├── midl_stubless_proxy_info_t.end.hpp │ │ │ │ ├── midl_stubless_proxy_info_t.start.hpp │ │ │ │ ├── midl_syntax_info_t.end.hpp │ │ │ │ ├── midl_syntax_info_t.start.hpp │ │ │ │ ├── midl_type_format_string_t.end.hpp │ │ │ │ ├── midl_type_format_string_t.start.hpp │ │ │ │ ├── midl_type_pickling_flags_t.end.hpp │ │ │ │ ├── midl_type_pickling_flags_t.start.hpp │ │ │ │ ├── midl_type_pickling_info_t.end.hpp │ │ │ │ ├── midl_type_pickling_info_t.start.hpp │ │ │ │ ├── midl_winrt_type_serialization_info_t.end.hpp │ │ │ │ ├── midl_winrt_type_serialization_info_t.start.hpp │ │ │ │ ├── midl_xmit_defs_0001_t.end.hpp │ │ │ │ ├── midl_xmit_defs_0001_t.start.hpp │ │ │ │ ├── midl_xmit_defs_0002_t.end.hpp │ │ │ │ ├── midl_xmit_defs_0002_t.start.hpp │ │ │ │ ├── midl_xmit_defs_0003_t.end.hpp │ │ │ │ ├── midl_xmit_defs_0003_t.start.hpp │ │ │ │ ├── midl_xmit_defs_0005_t.end.hpp │ │ │ │ ├── midl_xmit_defs_0005_t.start.hpp │ │ │ │ ├── midl_xmit_defs_0007_t.end.hpp │ │ │ │ ├── midl_xmit_defs_0007_t.start.hpp │ │ │ │ ├── midl_xmit_defs_0008_t.end.hpp │ │ │ │ ├── midl_xmit_defs_0008_t.start.hpp │ │ │ │ ├── midl_xmit_defs_0010_t.end.hpp │ │ │ │ ├── midl_xmit_defs_0010_t.start.hpp │ │ │ │ ├── midl_xmit_defs_0011_t.end.hpp │ │ │ │ ├── midl_xmit_defs_0011_t.start.hpp │ │ │ │ ├── minidump_callback_information_t.end.hpp │ │ │ │ ├── minidump_callback_information_t.start.hpp │ │ │ │ ├── minidump_callback_input_t.end.hpp │ │ │ │ ├── minidump_callback_input_t.start.hpp │ │ │ │ ├── minidump_callback_output_t.end.hpp │ │ │ │ ├── minidump_callback_output_t.start.hpp │ │ │ │ ├── minidump_exception_information_t.end.hpp │ │ │ │ ├── minidump_exception_information_t.start.hpp │ │ │ │ ├── minidump_include_module_callback_t.end.hpp │ │ │ │ ├── minidump_include_module_callback_t.start.hpp │ │ │ │ ├── minidump_include_thread_callback_t.end.hpp │ │ │ │ ├── minidump_include_thread_callback_t.start.hpp │ │ │ │ ├── minidump_io_callback_t.end.hpp │ │ │ │ ├── minidump_io_callback_t.start.hpp │ │ │ │ ├── minidump_memory_info_t.end.hpp │ │ │ │ ├── minidump_memory_info_t.start.hpp │ │ │ │ ├── minidump_module_callback_t.end.hpp │ │ │ │ ├── minidump_module_callback_t.start.hpp │ │ │ │ ├── minidump_read_memory_failure_callback_t.end.hpp │ │ │ │ ├── minidump_read_memory_failure_callback_t.start.hpp │ │ │ │ ├── minidump_thread_callback_t.end.hpp │ │ │ │ ├── minidump_thread_callback_t.start.hpp │ │ │ │ ├── minidump_thread_ex_callback_t.end.hpp │ │ │ │ ├── minidump_thread_ex_callback_t.start.hpp │ │ │ │ ├── minidump_user_stream_information_t.end.hpp │ │ │ │ ├── minidump_user_stream_information_t.start.hpp │ │ │ │ ├── minidump_user_stream_t.end.hpp │ │ │ │ ├── minidump_user_stream_t.start.hpp │ │ │ │ ├── minidump_vm_post_read_callback_t.end.hpp │ │ │ │ ├── minidump_vm_post_read_callback_t.start.hpp │ │ │ │ ├── minidump_vm_pre_read_callback_t.end.hpp │ │ │ │ ├── minidump_vm_pre_read_callback_t.start.hpp │ │ │ │ ├── minidump_vm_query_callback_t.end.hpp │ │ │ │ ├── minidump_vm_query_callback_t.start.hpp │ │ │ │ ├── mipid_t.end.hpp │ │ │ │ ├── mipid_t.start.hpp │ │ │ │ ├── mk_interface_list_entry_t.end.hpp │ │ │ │ ├── mk_interface_list_entry_t.start.hpp │ │ │ │ ├── mk_interface_list_t.end.hpp │ │ │ │ ├── mk_interface_list_t.start.hpp │ │ │ │ ├── mmpfn_identity_t.end.hpp │ │ │ │ ├── mmpfn_identity_t.start.hpp │ │ │ │ ├── mnk_eq_buf_t.end.hpp │ │ │ │ ├── mnk_eq_buf_t.start.hpp │ │ │ │ ├── modemdevcaps_t.end.hpp │ │ │ │ ├── modemdevcaps_t.start.hpp │ │ │ │ ├── modemsettings_t.end.hpp │ │ │ │ ├── modemsettings_t.start.hpp │ │ │ │ ├── modern_sta_incoming_call_data_t.end.hpp │ │ │ │ ├── modern_sta_incoming_call_data_t.start.hpp │ │ │ │ ├── modern_sta_incoming_call_list_t.end.hpp │ │ │ │ ├── modern_sta_incoming_call_list_t.start.hpp │ │ │ │ ├── modern_sta_state_t.end.hpp │ │ │ │ ├── modern_sta_state_t.start.hpp │ │ │ │ ├── modern_sta_wait_context_t.end.hpp │ │ │ │ ├── modern_sta_wait_context_t.start.hpp │ │ │ │ ├── mof_field_t.end.hpp │ │ │ │ ├── mof_field_t.start.hpp │ │ │ │ ├── mouse_event_record_t.end.hpp │ │ │ │ ├── mouse_event_record_t.start.hpp │ │ │ │ ├── move_file_data32_t.end.hpp │ │ │ │ ├── move_file_data32_t.start.hpp │ │ │ │ ├── move_file_data_t.end.hpp │ │ │ │ ├── move_file_data_t.start.hpp │ │ │ │ ├── move_file_record_data_t.end.hpp │ │ │ │ ├── move_file_record_data_t.start.hpp │ │ │ │ ├── mta_usage_globals_t.end.hpp │ │ │ │ ├── mta_usage_globals_t.start.hpp │ │ │ │ ├── mta_usage_incrementor_t.end.hpp │ │ │ │ ├── mta_usage_incrementor_t.start.hpp │ │ │ │ ├── muiccentry_t.end.hpp │ │ │ │ ├── muiccentry_t.start.hpp │ │ │ │ ├── muiccheader_t.end.hpp │ │ │ │ ├── muiccheader_t.start.hpp │ │ │ │ ├── muilangcfglist_t.end.hpp │ │ │ │ ├── muilangcfglist_t.start.hpp │ │ │ │ ├── muilangcfgnode_t.end.hpp │ │ │ │ ├── muilangcfgnode_t.start.hpp │ │ │ │ ├── muilanginfo_t.end.hpp │ │ │ │ ├── muilanginfo_t.start.hpp │ │ │ │ ├── muilanglist_t.end.hpp │ │ │ │ ├── muilanglist_t.start.hpp │ │ │ │ ├── muilanglistnode_t.end.hpp │ │ │ │ ├── muilanglistnode_t.start.hpp │ │ │ │ ├── muilanguages_t.end.hpp │ │ │ │ ├── muilanguages_t.start.hpp │ │ │ │ ├── muiregistryinfo_t.end.hpp │ │ │ │ ├── muiregistryinfo_t.start.hpp │ │ │ │ ├── muistringpool_t.end.hpp │ │ │ │ ├── muistringpool_t.start.hpp │ │ │ │ ├── multi_string_iterator_t.end.hpp │ │ │ │ ├── multi_string_iterator_t.start.hpp │ │ │ │ ├── multi_time_t.end.hpp │ │ │ │ ├── multi_time_t.start.hpp │ │ │ │ ├── mutant_basic_information_t.end.hpp │ │ │ │ ├── mutant_basic_information_t.start.hpp │ │ │ │ ├── mutant_owner_information_t.end.hpp │ │ │ │ ├── mutant_owner_information_t.start.hpp │ │ │ │ ├── n_crypt_algorithm_name_t.end.hpp │ │ │ │ ├── n_crypt_algorithm_name_t.start.hpp │ │ │ │ ├── n_crypt_key_name_t.end.hpp │ │ │ │ ├── n_crypt_key_name_t.start.hpp │ │ │ │ ├── n_crypt_provider_name_t.end.hpp │ │ │ │ ├── n_crypt_provider_name_t.start.hpp │ │ │ │ ├── nb10i_header_t.end.hpp │ │ │ │ ├── nb10i_header_t.start.hpp │ │ │ │ ├── nb10i_t.end.hpp │ │ │ │ ├── nb10i_t.start.hpp │ │ │ │ ├── ncrypt_alloc_para_t.end.hpp │ │ │ │ ├── ncrypt_alloc_para_t.start.hpp │ │ │ │ ├── ncrypt_cipher_padding_info_t.end.hpp │ │ │ │ ├── ncrypt_cipher_padding_info_t.start.hpp │ │ │ │ ├── ncrypt_exported_isolated_key_envelope_t.end.hpp │ │ │ │ ├── ncrypt_exported_isolated_key_envelope_t.start.hpp │ │ │ │ ├── ncrypt_exported_isolated_key_header_t.end.hpp │ │ │ │ ├── ncrypt_exported_isolated_key_header_t.start.hpp │ │ │ │ ├── ncrypt_isolated_key_attested_attributes_t.end.hpp │ │ │ │ ├── ncrypt_isolated_key_attested_attributes_t.start.hpp │ │ │ │ ├── ncrypt_key_access_policy_blob_t.end.hpp │ │ │ │ ├── ncrypt_key_access_policy_blob_t.start.hpp │ │ │ │ ├── ncrypt_key_attest_padding_info_t.end.hpp │ │ │ │ ├── ncrypt_key_attest_padding_info_t.start.hpp │ │ │ │ ├── ncrypt_key_blob_header_t.end.hpp │ │ │ │ ├── ncrypt_key_blob_header_t.start.hpp │ │ │ │ ├── ncrypt_pcp_hmac_auth_signature_info_t.end.hpp │ │ │ │ ├── ncrypt_pcp_hmac_auth_signature_info_t.start.hpp │ │ │ │ ├── ncrypt_pcp_raw_policydigest_t.end.hpp │ │ │ │ ├── ncrypt_pcp_raw_policydigest_t.start.hpp │ │ │ │ ├── ncrypt_pcp_tpm_fw_version_info_t.end.hpp │ │ │ │ ├── ncrypt_pcp_tpm_fw_version_info_t.start.hpp │ │ │ │ ├── ncrypt_pcp_tpm_web_authn_attestation_statement_t.end.hpp │ │ │ │ ├── ncrypt_pcp_tpm_web_authn_attestation_statement_t.start.hpp │ │ │ │ ├── ncrypt_platform_attest_padding_info_t.end.hpp │ │ │ │ ├── ncrypt_platform_attest_padding_info_t.start.hpp │ │ │ │ ├── ncrypt_supported_lengths_t.end.hpp │ │ │ │ ├── ncrypt_supported_lengths_t.start.hpp │ │ │ │ ├── ncrypt_tpm_loadable_key_blob_header_t.end.hpp │ │ │ │ ├── ncrypt_tpm_loadable_key_blob_header_t.start.hpp │ │ │ │ ├── ncrypt_tpm_platform_attestation_statement_t.end.hpp │ │ │ │ ├── ncrypt_tpm_platform_attestation_statement_t.start.hpp │ │ │ │ ├── ncrypt_ui_policy_t.end.hpp │ │ │ │ ├── ncrypt_ui_policy_t.start.hpp │ │ │ │ ├── ncrypt_vsm_key_attestation_claim_restrictions_t.end.hpp │ │ │ │ ├── ncrypt_vsm_key_attestation_claim_restrictions_t.start.hpp │ │ │ │ ├── ncrypt_vsm_key_attestation_statement_t.end.hpp │ │ │ │ ├── ncrypt_vsm_key_attestation_statement_t.start.hpp │ │ │ │ ├── ndr64_array_element_info_t.end.hpp │ │ │ │ ├── ndr64_array_element_info_t.start.hpp │ │ │ │ ├── ndr64_array_flags_t.end.hpp │ │ │ │ ├── ndr64_array_flags_t.start.hpp │ │ │ │ ├── ndr64_bind_and_notify_extension_t.end.hpp │ │ │ │ ├── ndr64_bind_and_notify_extension_t.start.hpp │ │ │ │ ├── ndr64_bind_context_t.end.hpp │ │ │ │ ├── ndr64_bind_context_t.start.hpp │ │ │ │ ├── ndr64_bind_generic_t.end.hpp │ │ │ │ ├── ndr64_bind_generic_t.start.hpp │ │ │ │ ├── ndr64_bind_primitive_t.end.hpp │ │ │ │ ├── ndr64_bind_primitive_t.start.hpp │ │ │ │ ├── ndr64_bindings_t.end.hpp │ │ │ │ ├── ndr64_bindings_t.start.hpp │ │ │ │ ├── ndr64_bogus_array_header_format_t.end.hpp │ │ │ │ ├── ndr64_bogus_array_header_format_t.start.hpp │ │ │ │ ├── ndr64_bogus_structure_header_format_t.end.hpp │ │ │ │ ├── ndr64_bogus_structure_header_format_t.start.hpp │ │ │ │ ├── ndr64_buffer_align_format_t.end.hpp │ │ │ │ ├── ndr64_buffer_align_format_t.start.hpp │ │ │ │ ├── ndr64_bufsize_pointer_queue_element_t.end.hpp │ │ │ │ ├── ndr64_bufsize_pointer_queue_element_t.start.hpp │ │ │ │ ├── ndr64_conf_array_header_format_t.end.hpp │ │ │ │ ├── ndr64_conf_array_header_format_t.start.hpp │ │ │ │ ├── ndr64_conf_bogus_structure_header_format_t.end.hpp │ │ │ │ ├── ndr64_conf_bogus_structure_header_format_t.start.hpp │ │ │ │ ├── ndr64_conf_structure_header_format_t.end.hpp │ │ │ │ ├── ndr64_conf_structure_header_format_t.start.hpp │ │ │ │ ├── ndr64_conf_var_array_header_format_t.end.hpp │ │ │ │ ├── ndr64_conf_var_array_header_format_t.start.hpp │ │ │ │ ├── ndr64_conf_var_bogus_array_header_format_t.end.hpp │ │ │ │ ├── ndr64_conf_var_bogus_array_header_format_t.start.hpp │ │ │ │ ├── ndr64_conformant_string_format_t.end.hpp │ │ │ │ ├── ndr64_conformant_string_format_t.start.hpp │ │ │ │ ├── ndr64_constant_iid_format_t.end.hpp │ │ │ │ ├── ndr64_constant_iid_format_t.start.hpp │ │ │ │ ├── ndr64_context_handle_flags_t.end.hpp │ │ │ │ ├── ndr64_context_handle_flags_t.start.hpp │ │ │ │ ├── ndr64_context_handle_format_t.end.hpp │ │ │ │ ├── ndr64_context_handle_format_t.start.hpp │ │ │ │ ├── ndr64_embedded_complex_format_t.end.hpp │ │ │ │ ├── ndr64_embedded_complex_format_t.start.hpp │ │ │ │ ├── ndr64_encapsulated_union_t.end.hpp │ │ │ │ ├── ndr64_encapsulated_union_t.start.hpp │ │ │ │ ├── ndr64_expr_const32_t.end.hpp │ │ │ │ ├── ndr64_expr_const32_t.start.hpp │ │ │ │ ├── ndr64_expr_const64_t.end.hpp │ │ │ │ ├── ndr64_expr_const64_t.start.hpp │ │ │ │ ├── ndr64_expr_noop_t.end.hpp │ │ │ │ ├── ndr64_expr_noop_t.start.hpp │ │ │ │ ├── ndr64_expr_operator_t.end.hpp │ │ │ │ ├── ndr64_expr_operator_t.start.hpp │ │ │ │ ├── ndr64_expr_var_t.end.hpp │ │ │ │ ├── ndr64_expr_var_t.start.hpp │ │ │ │ ├── ndr64_fix_array_header_format_t.end.hpp │ │ │ │ ├── ndr64_fix_array_header_format_t.start.hpp │ │ │ │ ├── ndr64_fixed_repeat_format_t.end.hpp │ │ │ │ ├── ndr64_fixed_repeat_format_t.start.hpp │ │ │ │ ├── ndr64_free_pointer_queue_element_t.end.hpp │ │ │ │ ├── ndr64_free_pointer_queue_element_t.start.hpp │ │ │ │ ├── ndr64_iid_flags_t.end.hpp │ │ │ │ ├── ndr64_iid_flags_t.start.hpp │ │ │ │ ├── ndr64_iid_format_t.end.hpp │ │ │ │ ├── ndr64_iid_format_t.start.hpp │ │ │ │ ├── ndr64_mempad_format_t.end.hpp │ │ │ │ ├── ndr64_mempad_format_t.start.hpp │ │ │ │ ├── ndr64_memsize_pointer_queue_element_t.end.hpp │ │ │ │ ├── ndr64_memsize_pointer_queue_element_t.start.hpp │ │ │ │ ├── ndr64_mrshl_pointer_queue_element_t.end.hpp │ │ │ │ ├── ndr64_mrshl_pointer_queue_element_t.start.hpp │ │ │ │ ├── ndr64_no_repeat_format_t.end.hpp │ │ │ │ ├── ndr64_no_repeat_format_t.start.hpp │ │ │ │ ├── ndr64_non_conformant_string_format_t.end.hpp │ │ │ │ ├── ndr64_non_conformant_string_format_t.start.hpp │ │ │ │ ├── ndr64_non_encapsulated_union_t.end.hpp │ │ │ │ ├── ndr64_non_encapsulated_union_t.start.hpp │ │ │ │ ├── ndr64_param_flags_t.end.hpp │ │ │ │ ├── ndr64_param_flags_t.start.hpp │ │ │ │ ├── ndr64_param_format_t.end.hpp │ │ │ │ ├── ndr64_param_format_t.start.hpp │ │ │ │ ├── ndr64_pipe_flags_t.end.hpp │ │ │ │ ├── ndr64_pipe_flags_t.start.hpp │ │ │ │ ├── ndr64_pipe_format_t.end.hpp │ │ │ │ ├── ndr64_pipe_format_t.start.hpp │ │ │ │ ├── ndr64_pointer_format_t.end.hpp │ │ │ │ ├── ndr64_pointer_format_t.start.hpp │ │ │ │ ├── ndr64_pointer_instance_header_format_t.end.hpp │ │ │ │ ├── ndr64_pointer_instance_header_format_t.start.hpp │ │ │ │ ├── ndr64_pointer_repeat_flags_t.end.hpp │ │ │ │ ├── ndr64_pointer_repeat_flags_t.start.hpp │ │ │ │ ├── ndr64_proc_flags_t.end.hpp │ │ │ │ ├── ndr64_proc_flags_t.start.hpp │ │ │ │ ├── ndr64_proc_format_t.end.hpp │ │ │ │ ├── ndr64_proc_format_t.start.hpp │ │ │ │ ├── ndr64_range_format_t.end.hpp │ │ │ │ ├── ndr64_range_format_t.start.hpp │ │ │ │ ├── ndr64_range_pipe_format_t.end.hpp │ │ │ │ ├── ndr64_range_pipe_format_t.start.hpp │ │ │ │ ├── ndr64_ranged_string_format_t.end.hpp │ │ │ │ ├── ndr64_ranged_string_format_t.start.hpp │ │ │ │ ├── ndr64_repeat_format_t.end.hpp │ │ │ │ ├── ndr64_repeat_format_t.start.hpp │ │ │ │ ├── ndr64_rpc_flags_t.end.hpp │ │ │ │ ├── ndr64_rpc_flags_t.start.hpp │ │ │ │ ├── ndr64_simple_member_format_t.end.hpp │ │ │ │ ├── ndr64_simple_member_format_t.start.hpp │ │ │ │ ├── ndr64_simple_region_format_t.end.hpp │ │ │ │ ├── ndr64_simple_region_format_t.start.hpp │ │ │ │ ├── ndr64_sized_conformant_string_format_t.end.hpp │ │ │ │ ├── ndr64_sized_conformant_string_format_t.start.hpp │ │ │ │ ├── ndr64_string_flags_t.end.hpp │ │ │ │ ├── ndr64_string_flags_t.start.hpp │ │ │ │ ├── ndr64_string_header_format_t.end.hpp │ │ │ │ ├── ndr64_string_header_format_t.start.hpp │ │ │ │ ├── ndr64_structure_flags_t.end.hpp │ │ │ │ ├── ndr64_structure_flags_t.start.hpp │ │ │ │ ├── ndr64_structure_header_format_t.end.hpp │ │ │ │ ├── ndr64_structure_header_format_t.start.hpp │ │ │ │ ├── ndr64_system_handle_format_t.end.hpp │ │ │ │ ├── ndr64_system_handle_format_t.start.hpp │ │ │ │ ├── ndr64_transmit_as_flags_t.end.hpp │ │ │ │ ├── ndr64_transmit_as_flags_t.start.hpp │ │ │ │ ├── ndr64_transmit_as_format_t.end.hpp │ │ │ │ ├── ndr64_transmit_as_format_t.start.hpp │ │ │ │ ├── ndr64_type_strict_context_handle_t.end.hpp │ │ │ │ ├── ndr64_type_strict_context_handle_t.start.hpp │ │ │ │ ├── ndr64_union_arm_selector_t.end.hpp │ │ │ │ ├── ndr64_union_arm_selector_t.start.hpp │ │ │ │ ├── ndr64_union_arm_t.end.hpp │ │ │ │ ├── ndr64_union_arm_t.start.hpp │ │ │ │ ├── ndr64_unmrshl_pointer_queue_element_t.end.hpp │ │ │ │ ├── ndr64_unmrshl_pointer_queue_element_t.start.hpp │ │ │ │ ├── ndr64_user_marshal_flags_t.end.hpp │ │ │ │ ├── ndr64_user_marshal_flags_t.start.hpp │ │ │ │ ├── ndr64_user_marshal_format_t.end.hpp │ │ │ │ ├── ndr64_user_marshal_format_t.start.hpp │ │ │ │ ├── ndr64_usr_mrshl_bufsize_pointer_queue_element_t.end.hpp │ │ │ │ ├── ndr64_usr_mrshl_bufsize_pointer_queue_element_t.start.hpp │ │ │ │ ├── ndr64_usr_mrshl_memsize_pointer_queue_element_t.end.hpp │ │ │ │ ├── ndr64_usr_mrshl_memsize_pointer_queue_element_t.start.hpp │ │ │ │ ├── ndr64_usr_mrshl_mrshl_pointer_queue_element_t.end.hpp │ │ │ │ ├── ndr64_usr_mrshl_mrshl_pointer_queue_element_t.start.hpp │ │ │ │ ├── ndr64_usr_mrshl_unmrshl_pointer_queue_element_t.end.hpp │ │ │ │ ├── ndr64_usr_mrshl_unmrshl_pointer_queue_element_t.start.hpp │ │ │ │ ├── ndr64_var_array_header_format_t.end.hpp │ │ │ │ ├── ndr64_var_array_header_format_t.start.hpp │ │ │ │ ├── ndr_alloc_all_nodes_context_t.end.hpp │ │ │ │ ├── ndr_alloc_all_nodes_context_t.start.hpp │ │ │ │ ├── ndr_alloca_context_t.end.hpp │ │ │ │ ├── ndr_alloca_context_t.start.hpp │ │ │ │ ├── ndr_async_message_t.end.hpp │ │ │ │ ├── ndr_async_message_t.start.hpp │ │ │ │ ├── ndr_bufsize_pointer_queue_element_t.end.hpp │ │ │ │ ├── ndr_bufsize_pointer_queue_element_t.start.hpp │ │ │ │ ├── ndr_callback_routines_table_t.end.hpp │ │ │ │ ├── ndr_callback_routines_table_t.start.hpp │ │ │ │ ├── ndr_context_handle_arg_desc_t.end.hpp │ │ │ │ ├── ndr_context_handle_arg_desc_t.start.hpp │ │ │ │ ├── ndr_context_handle_flags_t.end.hpp │ │ │ │ ├── ndr_context_handle_flags_t.start.hpp │ │ │ │ ├── ndr_convert_pointer_queue_element_t.end.hpp │ │ │ │ ├── ndr_convert_pointer_queue_element_t.start.hpp │ │ │ │ ├── ndr_correlation_flags_t.end.hpp │ │ │ │ ├── ndr_correlation_flags_t.start.hpp │ │ │ │ ├── ndr_correlation_info_data_t.end.hpp │ │ │ │ ├── ndr_correlation_info_data_t.start.hpp │ │ │ │ ├── ndr_correlation_info_header_t.end.hpp │ │ │ │ ├── ndr_correlation_info_header_t.start.hpp │ │ │ │ ├── ndr_correlation_info_t.end.hpp │ │ │ │ ├── ndr_correlation_info_t.start.hpp │ │ │ │ ├── ndr_cs_array_format_t.end.hpp │ │ │ │ ├── ndr_cs_array_format_t.start.hpp │ │ │ │ ├── ndr_cs_routines_t.end.hpp │ │ │ │ ├── ndr_cs_routines_t.start.hpp │ │ │ │ ├── ndr_cs_size_convert_routines_t.end.hpp │ │ │ │ ├── ndr_cs_size_convert_routines_t.start.hpp │ │ │ │ ├── ndr_cs_tag_flags_t.end.hpp │ │ │ │ ├── ndr_cs_tag_flags_t.start.hpp │ │ │ │ ├── ndr_cs_tag_format_t.end.hpp │ │ │ │ ├── ndr_cs_tag_format_t.start.hpp │ │ │ │ ├── ndr_dcom_async_call_state_t.end.hpp │ │ │ │ ├── ndr_dcom_async_call_state_t.start.hpp │ │ │ │ ├── ndr_dcom_async_flags_t.end.hpp │ │ │ │ ├── ndr_dcom_async_flags_t.start.hpp │ │ │ │ ├── ndr_dcom_async_message_t.end.hpp │ │ │ │ ├── ndr_dcom_async_message_t.start.hpp │ │ │ │ ├── ndr_dcom_oi2_proc_header_t.end.hpp │ │ │ │ ├── ndr_dcom_oi2_proc_header_t.start.hpp │ │ │ │ ├── ndr_expr_desc_t.end.hpp │ │ │ │ ├── ndr_expr_desc_t.start.hpp │ │ │ │ ├── ndr_fcdef_correlation_t.end.hpp │ │ │ │ ├── ndr_fcdef_correlation_t.start.hpp │ │ │ │ ├── ndr_free_pointer_queue_element_t.end.hpp │ │ │ │ ├── ndr_free_pointer_queue_element_t.start.hpp │ │ │ │ ├── ndr_fwd_routines_t.end.hpp │ │ │ │ ├── ndr_fwd_routines_t.start.hpp │ │ │ │ ├── ndr_memsize_pointer_queue_element_t.end.hpp │ │ │ │ ├── ndr_memsize_pointer_queue_element_t.start.hpp │ │ │ │ ├── ndr_mrshl_pointer_queue_element_t.end.hpp │ │ │ │ ├── ndr_mrshl_pointer_queue_element_t.start.hpp │ │ │ │ ├── ndr_pfnfree_pointer_queue_element_t.end.hpp │ │ │ │ ├── ndr_pfnfree_pointer_queue_element_t.start.hpp │ │ │ │ ├── ndr_pipe_desc_t.end.hpp │ │ │ │ ├── ndr_pipe_desc_t.start.hpp │ │ │ │ ├── ndr_pipe_message_t.end.hpp │ │ │ │ ├── ndr_pipe_message_t.start.hpp │ │ │ │ ├── ndr_pipe_state_t.end.hpp │ │ │ │ ├── ndr_pipe_state_t.start.hpp │ │ │ │ ├── ndr_pointer_queue_element_t.end.hpp │ │ │ │ ├── ndr_pointer_queue_element_t.start.hpp │ │ │ │ ├── ndr_pointer_queue_state_t.end.hpp │ │ │ │ ├── ndr_pointer_queue_state_t.start.hpp │ │ │ │ ├── ndr_pointer_queue_t.end.hpp │ │ │ │ ├── ndr_pointer_queue_t.start.hpp │ │ │ │ ├── ndr_proc_context_t.end.hpp │ │ │ │ ├── ndr_proc_context_t.start.hpp │ │ │ │ ├── ndr_proc_desc_t.end.hpp │ │ │ │ ├── ndr_proc_desc_t.start.hpp │ │ │ │ ├── ndr_proc_header_exts64_t.end.hpp │ │ │ │ ├── ndr_proc_header_exts64_t.start.hpp │ │ │ │ ├── ndr_proc_header_exts_arm_t.end.hpp │ │ │ │ ├── ndr_proc_header_exts_arm_t.start.hpp │ │ │ │ ├── ndr_proc_header_exts_t.end.hpp │ │ │ │ ├── ndr_proc_header_exts_t.start.hpp │ │ │ │ ├── ndr_proc_info_t.end.hpp │ │ │ │ ├── ndr_proc_info_t.start.hpp │ │ │ │ ├── ndr_scontext_t.end.hpp │ │ │ │ ├── ndr_scontext_t.start.hpp │ │ │ │ ├── ndr_string_header_t.end.hpp │ │ │ │ ├── ndr_string_header_t.start.hpp │ │ │ │ ├── ndr_string_ptr_header_t.end.hpp │ │ │ │ ├── ndr_string_ptr_header_t.start.hpp │ │ │ │ ├── ndr_unmrshl_pointer_queue_element_t.end.hpp │ │ │ │ ├── ndr_unmrshl_pointer_queue_element_t.start.hpp │ │ │ │ ├── ndr_user_marshal_info_level1_t.end.hpp │ │ │ │ ├── ndr_user_marshal_info_level1_t.start.hpp │ │ │ │ ├── ndr_user_marshal_info_t.end.hpp │ │ │ │ ├── ndr_user_marshal_info_t.start.hpp │ │ │ │ ├── ndr_usr_mrshl_bufsize_pointer_queue_element_t.end.hpp │ │ │ │ ├── ndr_usr_mrshl_bufsize_pointer_queue_element_t.start.hpp │ │ │ │ ├── ndr_usr_mrshl_memsize_pointer_queue_element_t.end.hpp │ │ │ │ ├── ndr_usr_mrshl_memsize_pointer_queue_element_t.start.hpp │ │ │ │ ├── ndr_usr_mrshl_mrshl_pointer_queue_element_t.end.hpp │ │ │ │ ├── ndr_usr_mrshl_mrshl_pointer_queue_element_t.start.hpp │ │ │ │ ├── ndr_usr_mrshl_unmrshl_pointer_queue_element_t.end.hpp │ │ │ │ ├── ndr_usr_mrshl_unmrshl_pointer_queue_element_t.start.hpp │ │ │ │ ├── ndrole_extension_routines_table_t.end.hpp │ │ │ │ ├── ndrole_extension_routines_table_t.start.hpp │ │ │ │ ├── netconnectinfostruct_t.end.hpp │ │ │ │ ├── netconnectinfostruct_t.start.hpp │ │ │ │ ├── netinfostruct_t.end.hpp │ │ │ │ ├── netinfostruct_t.start.hpp │ │ │ │ ├── netresourcea_t.end.hpp │ │ │ │ ├── netresourcea_t.start.hpp │ │ │ │ ├── netresourcew_t.end.hpp │ │ │ │ ├── netresourcew_t.start.hpp │ │ │ │ ├── network_app_instance_ea_t.end.hpp │ │ │ │ ├── network_app_instance_ea_t.start.hpp │ │ │ │ ├── nic_record_t.end.hpp │ │ │ │ ├── nic_record_t.start.hpp │ │ │ │ ├── nlstableinfo_t.end.hpp │ │ │ │ ├── nlstableinfo_t.start.hpp │ │ │ │ ├── nlsversioninfo_t.end.hpp │ │ │ │ ├── nlsversioninfo_t.start.hpp │ │ │ │ ├── nlsversioninfoex_t.end.hpp │ │ │ │ ├── nlsversioninfoex_t.start.hpp │ │ │ │ ├── non_sta_state_t.end.hpp │ │ │ │ ├── non_sta_state_t.start.hpp │ │ │ │ ├── nonoicf_pointer_queue_state_t.end.hpp │ │ │ │ ├── nonoicf_pointer_queue_state_t.start.hpp │ │ │ │ ├── noop_coroutine_frame_legacy_t.end.hpp │ │ │ │ ├── noop_coroutine_frame_legacy_t.start.hpp │ │ │ │ ├── noop_coroutine_frame_standard_t.end.hpp │ │ │ │ ├── noop_coroutine_frame_standard_t.start.hpp │ │ │ │ ├── notify_user_power_setting_t.end.hpp │ │ │ │ ├── notify_user_power_setting_t.start.hpp │ │ │ │ ├── ntfs_extended_volume_data_t.end.hpp │ │ │ │ ├── ntfs_extended_volume_data_t.start.hpp │ │ │ │ ├── ntfs_file_record_input_buffer_t.end.hpp │ │ │ │ ├── ntfs_file_record_input_buffer_t.start.hpp │ │ │ │ ├── ntfs_file_record_output_buffer_t.end.hpp │ │ │ │ ├── ntfs_file_record_output_buffer_t.start.hpp │ │ │ │ ├── ntfs_statistics_ex_t.end.hpp │ │ │ │ ├── ntfs_statistics_ex_t.start.hpp │ │ │ │ ├── ntfs_statistics_t.end.hpp │ │ │ │ ├── ntfs_statistics_t.start.hpp │ │ │ │ ├── ntfs_volume_data_buffer_t.end.hpp │ │ │ │ ├── ntfs_volume_data_buffer_t.start.hpp │ │ │ │ ├── ntos_test_export_interface_t.end.hpp │ │ │ │ ├── ntos_test_export_interface_t.start.hpp │ │ │ │ ├── ntpss_memory_bulk_information_t.end.hpp │ │ │ │ ├── ntpss_memory_bulk_information_t.start.hpp │ │ │ │ ├── ntvdm_flags_t.end.hpp │ │ │ │ ├── ntvdm_flags_t.start.hpp │ │ │ │ ├── numberfmt_a_t.end.hpp │ │ │ │ ├── numberfmt_a_t.start.hpp │ │ │ │ ├── numberfmt_w_t.end.hpp │ │ │ │ ├── numberfmt_w_t.start.hpp │ │ │ │ ├── numparse_t.end.hpp │ │ │ │ ├── numparse_t.start.hpp │ │ │ │ ├── object_attributes32_t.end.hpp │ │ │ │ ├── object_attributes32_t.start.hpp │ │ │ │ ├── object_attributes64_t.end.hpp │ │ │ │ ├── object_attributes64_t.start.hpp │ │ │ │ ├── object_basic_information_t.end.hpp │ │ │ │ ├── object_basic_information_t.start.hpp │ │ │ │ ├── object_directory_information_t.end.hpp │ │ │ │ ├── object_directory_information_t.start.hpp │ │ │ │ ├── object_handle_flag_information_t.end.hpp │ │ │ │ ├── object_handle_flag_information_t.start.hpp │ │ │ │ ├── object_method_exception_handling_info_t.end.hpp │ │ │ │ ├── object_method_exception_handling_info_t.start.hpp │ │ │ │ ├── object_splay_node_t.end.hpp │ │ │ │ ├── object_splay_node_t.start.hpp │ │ │ │ ├── object_type_information_t.end.hpp │ │ │ │ ├── object_type_information_t.start.hpp │ │ │ │ ├── object_types_information_t.end.hpp │ │ │ │ ├── object_types_information_t.start.hpp │ │ │ │ ├── ocsp_basic_response_entry_t.end.hpp │ │ │ │ ├── ocsp_basic_response_entry_t.start.hpp │ │ │ │ ├── ocsp_basic_response_info_t.end.hpp │ │ │ │ ├── ocsp_basic_response_info_t.start.hpp │ │ │ │ ├── ocsp_basic_revoked_info_t.end.hpp │ │ │ │ ├── ocsp_basic_revoked_info_t.start.hpp │ │ │ │ ├── ocsp_basic_signed_response_info_t.end.hpp │ │ │ │ ├── ocsp_basic_signed_response_info_t.start.hpp │ │ │ │ ├── ocsp_cert_id_t.end.hpp │ │ │ │ ├── ocsp_cert_id_t.start.hpp │ │ │ │ ├── ocsp_request_entry_t.end.hpp │ │ │ │ ├── ocsp_request_entry_t.start.hpp │ │ │ │ ├── ocsp_request_info_t.end.hpp │ │ │ │ ├── ocsp_request_info_t.start.hpp │ │ │ │ ├── ocsp_response_info_t.end.hpp │ │ │ │ ├── ocsp_response_info_t.start.hpp │ │ │ │ ├── ocsp_signature_info_t.end.hpp │ │ │ │ ├── ocsp_signature_info_t.start.hpp │ │ │ │ ├── ocsp_signed_request_info_t.end.hpp │ │ │ │ ├── ocsp_signed_request_info_t.start.hpp │ │ │ │ ├── offsetinstancedataandlength_t.end.hpp │ │ │ │ ├── offsetinstancedataandlength_t.start.hpp │ │ │ │ ├── ofstruct_t.end.hpp │ │ │ │ ├── ofstruct_t.start.hpp │ │ │ │ ├── oicf_pointer_queue_state_t.end.hpp │ │ │ │ ├── oicf_pointer_queue_state_t.start.hpp │ │ │ │ ├── olestream_t.end.hpp │ │ │ │ ├── olestream_t.start.hpp │ │ │ │ ├── olestreamvtbl_t.end.hpp │ │ │ │ ├── olestreamvtbl_t.start.hpp │ │ │ │ ├── onexit_table_t.end.hpp │ │ │ │ ├── onexit_table_t.start.hpp │ │ │ │ ├── opaque_data_info_t.end.hpp │ │ │ │ ├── opaque_data_info_t.start.hpp │ │ │ │ ├── operation_end_parameters_t.end.hpp │ │ │ │ ├── operation_end_parameters_t.start.hpp │ │ │ │ ├── operation_start_parameters_t.end.hpp │ │ │ │ ├── operation_start_parameters_t.start.hpp │ │ │ │ ├── optical_media_record_t.end.hpp │ │ │ │ ├── optical_media_record_t.start.hpp │ │ │ │ ├── orcb_midl_proc_format_string_t.end.hpp │ │ │ │ ├── orcb_midl_proc_format_string_t.start.hpp │ │ │ │ ├── orcb_midl_type_format_string_t.end.hpp │ │ │ │ ├── orcb_midl_type_format_string_t.start.hpp │ │ │ │ ├── orpc_dbg_all_t.end.hpp │ │ │ │ ├── orpc_dbg_all_t.start.hpp │ │ │ │ ├── orpc_init_args_t.end.hpp │ │ │ │ ├── orpc_init_args_t.start.hpp │ │ │ │ ├── os_frame_t.end.hpp │ │ │ │ ├── os_frame_t.start.hpp │ │ │ │ ├── osinfo_t.end.hpp │ │ │ │ ├── osinfo_t.start.hpp │ │ │ │ ├── osversioninfoa_t.end.hpp │ │ │ │ ├── osversioninfoa_t.start.hpp │ │ │ │ ├── osversioninfoex2a_t.end.hpp │ │ │ │ ├── osversioninfoex2a_t.start.hpp │ │ │ │ ├── osversioninfoex2w_t.end.hpp │ │ │ │ ├── osversioninfoex2w_t.start.hpp │ │ │ │ ├── osversioninfoex3a_t.end.hpp │ │ │ │ ├── osversioninfoex3a_t.start.hpp │ │ │ │ ├── osversioninfoex3w_t.end.hpp │ │ │ │ ├── osversioninfoex3w_t.start.hpp │ │ │ │ ├── osversioninfoexa_t.end.hpp │ │ │ │ ├── osversioninfoexa_t.start.hpp │ │ │ │ ├── out_parameter_marshaling_client_t.end.hpp │ │ │ │ ├── out_parameter_marshaling_client_t.start.hpp │ │ │ │ ├── out_parameter_marshaling_server_t.end.hpp │ │ │ │ ├── out_parameter_marshaling_server_t.start.hpp │ │ │ │ ├── out_parameter_marshaling_set_t.end.hpp │ │ │ │ ├── out_parameter_marshaling_set_t.start.hpp │ │ │ │ ├── outgoing_call_diagnosis_t.end.hpp │ │ │ │ ├── outgoing_call_diagnosis_t.start.hpp │ │ │ │ ├── outlinetextmetrica_t.end.hpp │ │ │ │ ├── outlinetextmetrica_t.start.hpp │ │ │ │ ├── outlinetextmetricw_t.end.hpp │ │ │ │ ├── outlinetextmetricw_t.start.hpp │ │ │ │ ├── output_debug_string_info_t.end.hpp │ │ │ │ ├── output_debug_string_info_t.start.hpp │ │ │ │ ├── overlapped_entry_t.end.hpp │ │ │ │ ├── overlapped_entry_t.start.hpp │ │ │ │ ├── overlapped_t.end.hpp │ │ │ │ ├── overlapped_t.start.hpp │ │ │ │ ├── oxid_entry_t.end.hpp │ │ │ │ ├── oxid_entry_t.start.hpp │ │ │ │ ├── p_unk_list_element_t.end.hpp │ │ │ │ ├── p_unk_list_element_t.start.hpp │ │ │ │ ├── package_context_t.end.hpp │ │ │ │ ├── package_context_t.start.hpp │ │ │ │ ├── package_filter_t.end.hpp │ │ │ │ ├── package_filter_t.start.hpp │ │ │ │ ├── package_id_and_install_order_t.end.hpp │ │ │ │ ├── package_id_and_install_order_t.start.hpp │ │ │ │ ├── package_id_and_install_orders_t.end.hpp │ │ │ │ ├── package_id_and_install_orders_t.start.hpp │ │ │ │ ├── package_id_t.end.hpp │ │ │ │ ├── package_id_t.start.hpp │ │ │ │ ├── package_info_t.end.hpp │ │ │ │ ├── package_info_t.start.hpp │ │ │ │ ├── package_list_buffer_t.end.hpp │ │ │ │ ├── package_list_buffer_t.start.hpp │ │ │ │ ├── package_version_t.end.hpp │ │ │ │ ├── package_version_t.start.hpp │ │ │ │ ├── packedeventinfo_t.end.hpp │ │ │ │ ├── packedeventinfo_t.start.hpp │ │ │ │ ├── page_priority_information_t.end.hpp │ │ │ │ ├── page_priority_information_t.start.hpp │ │ │ │ ├── pagedir_information_t.end.hpp │ │ │ │ ├── pagedir_information_t.start.hpp │ │ │ │ ├── param_attributes_t.end.hpp │ │ │ │ ├── param_attributes_t.start.hpp │ │ │ │ ├── param_description_t.end.hpp │ │ │ │ ├── param_description_t.start.hpp │ │ │ │ ├── param_struct_t.end.hpp │ │ │ │ ├── param_struct_t.start.hpp │ │ │ │ ├── paraminfo_t.end.hpp │ │ │ │ ├── paraminfo_t.start.hpp │ │ │ │ ├── parse_message_context_t.end.hpp │ │ │ │ ├── parse_message_context_t.start.hpp │ │ │ │ ├── patch_main_callout_params_t.end.hpp │ │ │ │ ├── patch_main_callout_params_t.start.hpp │ │ │ │ ├── patchmatchdata_t.end.hpp │ │ │ │ ├── patchmatchdata_t.start.hpp │ │ │ │ ├── patchop_t.end.hpp │ │ │ │ ├── patchop_t.start.hpp │ │ │ │ ├── patchwritedata_t.end.hpp │ │ │ │ ├── patchwritedata_t.start.hpp │ │ │ │ ├── pathname_buffer_t.end.hpp │ │ │ │ ├── pathname_buffer_t.start.hpp │ │ │ │ ├── pending_call_list_head_t.end.hpp │ │ │ │ ├── pending_call_list_head_t.start.hpp │ │ │ │ ├── perfinfo_battery_life_info_t.end.hpp │ │ │ │ ├── perfinfo_battery_life_info_t.start.hpp │ │ │ │ ├── perfinfo_boot_phase_start_t.end.hpp │ │ │ │ ├── perfinfo_boot_phase_start_t.start.hpp │ │ │ │ ├── perfinfo_boot_prefetch_information_t.end.hpp │ │ │ │ ├── perfinfo_boot_prefetch_information_t.start.hpp │ │ │ │ ├── perfinfo_cc_can_write_fail_t.end.hpp │ │ │ │ ├── perfinfo_cc_can_write_fail_t.start.hpp │ │ │ │ ├── perfinfo_cc_extra_wb_thread_info_t.end.hpp │ │ │ │ ├── perfinfo_cc_extra_wb_thread_info_t.start.hpp │ │ │ │ ├── perfinfo_cc_flush_cache_t.end.hpp │ │ │ │ ├── perfinfo_cc_flush_cache_t.start.hpp │ │ │ │ ├── perfinfo_cc_flush_section_t.end.hpp │ │ │ │ ├── perfinfo_cc_flush_section_t.start.hpp │ │ │ │ ├── perfinfo_cc_lazy_write_scan_t.end.hpp │ │ │ │ ├── perfinfo_cc_lazy_write_scan_t.start.hpp │ │ │ │ ├── perfinfo_cc_logged_stream_info_t.end.hpp │ │ │ │ ├── perfinfo_cc_logged_stream_info_t.start.hpp │ │ │ │ ├── perfinfo_cc_read_ahead_t.end.hpp │ │ │ │ ├── perfinfo_cc_read_ahead_t.start.hpp │ │ │ │ ├── perfinfo_cc_schedule_read_ahead_t.end.hpp │ │ │ │ ├── perfinfo_cc_schedule_read_ahead_t.start.hpp │ │ │ │ ├── perfinfo_cc_workitem_complete_t.end.hpp │ │ │ │ ├── perfinfo_cc_workitem_complete_t.start.hpp │ │ │ │ ├── perfinfo_cc_workitem_dequeue_t.end.hpp │ │ │ │ ├── perfinfo_cc_workitem_dequeue_t.start.hpp │ │ │ │ ├── perfinfo_cc_workitem_enqueue_t.end.hpp │ │ │ │ ├── perfinfo_cc_workitem_enqueue_t.start.hpp │ │ │ │ ├── perfinfo_ccswap_buffer_t.end.hpp │ │ │ │ ├── perfinfo_ccswap_buffer_t.start.hpp │ │ │ │ ├── perfinfo_ccswap_idle_short_t.end.hpp │ │ │ │ ├── perfinfo_ccswap_idle_short_t.start.hpp │ │ │ │ ├── perfinfo_ccswap_idle_t.end.hpp │ │ │ │ ├── perfinfo_ccswap_idle_t.start.hpp │ │ │ │ ├── perfinfo_ccswap_lite_t.end.hpp │ │ │ │ ├── perfinfo_ccswap_lite_t.start.hpp │ │ │ │ ├── perfinfo_ccswap_t.end.hpp │ │ │ │ ├── perfinfo_ccswap_t.start.hpp │ │ │ │ ├── perfinfo_clock_interrupt_information_t.end.hpp │ │ │ │ ├── perfinfo_clock_interrupt_information_t.start.hpp │ │ │ │ ├── perfinfo_contiguous_page_generate_t.end.hpp │ │ │ │ ├── perfinfo_contiguous_page_generate_t.start.hpp │ │ │ │ ├── perfinfo_debug_event_t.end.hpp │ │ │ │ ├── perfinfo_debug_event_t.start.hpp │ │ │ │ ├── perfinfo_domain_change_event_t.end.hpp │ │ │ │ ├── perfinfo_domain_change_event_t.start.hpp │ │ │ │ ├── perfinfo_dpc_enqueue_information_t.end.hpp │ │ │ │ ├── perfinfo_dpc_enqueue_information_t.start.hpp │ │ │ │ ├── perfinfo_dpc_enqueue_information_v2_t.end.hpp │ │ │ │ ├── perfinfo_dpc_enqueue_information_v2_t.start.hpp │ │ │ │ ├── perfinfo_dpc_execution_information_t.end.hpp │ │ │ │ ├── perfinfo_dpc_execution_information_t.start.hpp │ │ │ │ ├── perfinfo_dpc_information_t.end.hpp │ │ │ │ ├── perfinfo_dpc_information_t.start.hpp │ │ │ │ ├── perfinfo_driver_complete_request_ret_t.end.hpp │ │ │ │ ├── perfinfo_driver_complete_request_ret_t.start.hpp │ │ │ │ ├── perfinfo_driver_complete_request_t.end.hpp │ │ │ │ ├── perfinfo_driver_complete_request_t.start.hpp │ │ │ │ ├── perfinfo_driver_completionroutine_t.end.hpp │ │ │ │ ├── perfinfo_driver_completionroutine_t.start.hpp │ │ │ │ ├── perfinfo_driver_majorfunction_ret_t.end.hpp │ │ │ │ ├── perfinfo_driver_majorfunction_ret_t.start.hpp │ │ │ │ ├── perfinfo_driver_majorfunction_t.end.hpp │ │ │ │ ├── perfinfo_driver_majorfunction_t.start.hpp │ │ │ │ ├── perfinfo_executive_resource_config_t.end.hpp │ │ │ │ ├── perfinfo_executive_resource_config_t.start.hpp │ │ │ │ ├── perfinfo_file_create_t.end.hpp │ │ │ │ ├── perfinfo_file_create_t.start.hpp │ │ │ │ ├── perfinfo_file_direnum_t.end.hpp │ │ │ │ ├── perfinfo_file_direnum_t.start.hpp │ │ │ │ ├── perfinfo_file_information_t.end.hpp │ │ │ │ ├── perfinfo_file_information_t.start.hpp │ │ │ │ ├── perfinfo_file_operation_end_t.end.hpp │ │ │ │ ├── perfinfo_file_operation_end_t.start.hpp │ │ │ │ ├── perfinfo_file_path_operation_t.end.hpp │ │ │ │ ├── perfinfo_file_path_operation_t.start.hpp │ │ │ │ ├── perfinfo_file_read_write_t.end.hpp │ │ │ │ ├── perfinfo_file_read_write_t.start.hpp │ │ │ │ ├── perfinfo_file_simple_operation_t.end.hpp │ │ │ │ ├── perfinfo_file_simple_operation_t.start.hpp │ │ │ │ ├── perfinfo_filename_same_information_t.end.hpp │ │ │ │ ├── perfinfo_filename_same_information_t.start.hpp │ │ │ │ ├── perfinfo_fileobject_information_t.end.hpp │ │ │ │ ├── perfinfo_fileobject_information_t.start.hpp │ │ │ │ ├── perfinfo_flt_operation_status_t.end.hpp │ │ │ │ ├── perfinfo_flt_operation_status_t.start.hpp │ │ │ │ ├── perfinfo_flt_operation_t.end.hpp │ │ │ │ ├── perfinfo_flt_operation_t.start.hpp │ │ │ │ ├── perfinfo_hardpagefault_information_t.end.hpp │ │ │ │ ├── perfinfo_hardpagefault_information_t.start.hpp │ │ │ │ ├── perfinfo_hv_hypercall_t.end.hpp │ │ │ │ ├── perfinfo_hv_hypercall_t.start.hpp │ │ │ │ ├── perfinfo_idle_state_change_t.end.hpp │ │ │ │ ├── perfinfo_idle_state_change_t.start.hpp │ │ │ │ ├── perfinfo_imageload_in_pagefile_info_t.end.hpp │ │ │ │ ├── perfinfo_imageload_in_pagefile_info_t.start.hpp │ │ │ │ ├── perfinfo_interrupt_information_t.end.hpp │ │ │ │ ├── perfinfo_interrupt_information_t.start.hpp │ │ │ │ ├── perfinfo_io_timer_t.end.hpp │ │ │ │ ├── perfinfo_io_timer_t.start.hpp │ │ │ │ ├── perfinfo_ipi_receive_data_t.end.hpp │ │ │ │ ├── perfinfo_ipi_receive_data_t.start.hpp │ │ │ │ ├── perfinfo_ipi_send_data_t.end.hpp │ │ │ │ ├── perfinfo_ipi_send_data_t.start.hpp │ │ │ │ ├── perfinfo_kernelmemory_range_usage_t.end.hpp │ │ │ │ ├── perfinfo_kernelmemory_range_usage_t.start.hpp │ │ │ │ ├── perfinfo_long_dpc_detection_information_t.end.hpp │ │ │ │ ├── perfinfo_long_dpc_detection_information_t.start.hpp │ │ │ │ ├── perfinfo_long_dpc_mitigation_information_t.end.hpp │ │ │ │ ├── perfinfo_long_dpc_mitigation_information_t.start.hpp │ │ │ │ ├── perfinfo_mark_event_t.end.hpp │ │ │ │ ├── perfinfo_mark_event_t.start.hpp │ │ │ │ ├── perfinfo_mark_information_t.end.hpp │ │ │ │ ├── perfinfo_mark_information_t.start.hpp │ │ │ │ ├── perfinfo_mem_reset_info_t.end.hpp │ │ │ │ ├── perfinfo_mem_reset_info_t.start.hpp │ │ │ │ ├── perfinfo_memory_huge_iospace_entry_t.end.hpp │ │ │ │ ├── perfinfo_memory_huge_iospace_entry_t.start.hpp │ │ │ │ ├── perfinfo_memory_information_t.end.hpp │ │ │ │ ├── perfinfo_memory_information_t.start.hpp │ │ │ │ ├── perfinfo_memory_node_entry_t.end.hpp │ │ │ │ ├── perfinfo_memory_node_entry_t.start.hpp │ │ │ │ ├── perfinfo_memory_node_information_t.end.hpp │ │ │ │ ├── perfinfo_memory_node_information_t.start.hpp │ │ │ │ ├── perfinfo_page_range_identity_t.end.hpp │ │ │ │ ├── perfinfo_page_range_identity_t.start.hpp │ │ │ │ ├── perfinfo_pagecombine_aggregate_stat_t.end.hpp │ │ │ │ ├── perfinfo_pagecombine_aggregate_stat_t.start.hpp │ │ │ │ ├── perfinfo_pagecombine_iteration_stat_t.end.hpp │ │ │ │ ├── perfinfo_pagecombine_iteration_stat_t.start.hpp │ │ │ │ ├── perfinfo_pfmapped_section_information_t.end.hpp │ │ │ │ ├── perfinfo_pfmapped_section_information_t.start.hpp │ │ │ │ ├── perfinfo_pfmapped_section_object_information_t.end.hpp │ │ │ │ ├── perfinfo_pfmapped_section_object_information_t.start.hpp │ │ │ │ ├── perfinfo_pmc_sample_information_t.end.hpp │ │ │ │ ├── perfinfo_pmc_sample_information_t.start.hpp │ │ │ │ ├── perfinfo_po_calibrated_perfcounter_t.end.hpp │ │ │ │ ├── perfinfo_po_calibrated_perfcounter_t.start.hpp │ │ │ │ ├── perfinfo_po_notify_device_complete_t.end.hpp │ │ │ │ ├── perfinfo_po_notify_device_complete_t.start.hpp │ │ │ │ ├── perfinfo_po_notify_device_t.end.hpp │ │ │ │ ├── perfinfo_po_notify_device_t.start.hpp │ │ │ │ ├── perfinfo_po_postsleep_t.end.hpp │ │ │ │ ├── perfinfo_po_postsleep_t.start.hpp │ │ │ │ ├── perfinfo_po_presleep_t.end.hpp │ │ │ │ ├── perfinfo_po_presleep_t.start.hpp │ │ │ │ ├── perfinfo_po_session_callout_ret_t.end.hpp │ │ │ │ ├── perfinfo_po_session_callout_ret_t.start.hpp │ │ │ │ ├── perfinfo_po_session_callout_t.end.hpp │ │ │ │ ├── perfinfo_po_session_callout_t.start.hpp │ │ │ │ ├── perfinfo_ppm_idle_exit_latency_t.end.hpp │ │ │ │ ├── perfinfo_ppm_idle_exit_latency_t.start.hpp │ │ │ │ ├── perfinfo_ppm_idle_state_change_t.end.hpp │ │ │ │ ├── perfinfo_ppm_idle_state_change_t.start.hpp │ │ │ │ ├── perfinfo_ppm_idle_state_enter_t.end.hpp │ │ │ │ ├── perfinfo_ppm_idle_state_enter_t.start.hpp │ │ │ │ ├── perfinfo_ppm_idle_state_exit_t.end.hpp │ │ │ │ ├── perfinfo_ppm_idle_state_exit_t.start.hpp │ │ │ │ ├── perfinfo_ppm_perf_state_change_t.end.hpp │ │ │ │ ├── perfinfo_ppm_perf_state_change_t.start.hpp │ │ │ │ ├── perfinfo_ppm_thermal_constraint_t.end.hpp │ │ │ │ ├── perfinfo_ppm_thermal_constraint_t.start.hpp │ │ │ │ ├── perfinfo_process_inswap_t.end.hpp │ │ │ │ ├── perfinfo_process_inswap_t.start.hpp │ │ │ │ ├── perfinfo_process_perfctr32_t.end.hpp │ │ │ │ ├── perfinfo_process_perfctr32_t.start.hpp │ │ │ │ ├── perfinfo_process_perfctr64_t.end.hpp │ │ │ │ ├── perfinfo_process_perfctr64_t.start.hpp │ │ │ │ ├── perfinfo_process_perfctr_t.end.hpp │ │ │ │ ├── perfinfo_process_perfctr_t.start.hpp │ │ │ │ ├── perfinfo_sampled_profile_cache_t.end.hpp │ │ │ │ ├── perfinfo_sampled_profile_cache_t.start.hpp │ │ │ │ ├── perfinfo_sampled_profile_config_t.end.hpp │ │ │ │ ├── perfinfo_sampled_profile_config_t.start.hpp │ │ │ │ ├── perfinfo_sampled_profile_information_t.end.hpp │ │ │ │ ├── perfinfo_sampled_profile_information_t.start.hpp │ │ │ │ ├── perfinfo_sessioncreate_information_t.end.hpp │ │ │ │ ├── perfinfo_sessioncreate_information_t.start.hpp │ │ │ │ ├── perfinfo_set_devices_state_ret_t.end.hpp │ │ │ │ ├── perfinfo_set_devices_state_ret_t.start.hpp │ │ │ │ ├── perfinfo_set_devices_state_t.end.hpp │ │ │ │ ├── perfinfo_set_devices_state_t.start.hpp │ │ │ │ ├── perfinfo_set_power_action_ret_t.end.hpp │ │ │ │ ├── perfinfo_set_power_action_ret_t.start.hpp │ │ │ │ ├── perfinfo_set_power_action_t.end.hpp │ │ │ │ ├── perfinfo_set_power_action_t.start.hpp │ │ │ │ ├── perfinfo_spec_control_retpoline_exit_t.end.hpp │ │ │ │ ├── perfinfo_spec_control_retpoline_exit_t.start.hpp │ │ │ │ ├── perfinfo_spinlock_config_t.end.hpp │ │ │ │ ├── perfinfo_spinlock_config_t.start.hpp │ │ │ │ ├── perfinfo_syscall_enter_data_t.end.hpp │ │ │ │ ├── perfinfo_syscall_enter_data_t.start.hpp │ │ │ │ ├── perfinfo_syscall_exit_data_t.end.hpp │ │ │ │ ├── perfinfo_syscall_exit_data_t.start.hpp │ │ │ │ ├── perfinfo_system_memory_information_t.end.hpp │ │ │ │ ├── perfinfo_system_memory_information_t.start.hpp │ │ │ │ ├── perfinfo_thread_feedback_read_t.end.hpp │ │ │ │ ├── perfinfo_thread_feedback_read_t.start.hpp │ │ │ │ ├── perfinfo_trace_header_t.end.hpp │ │ │ │ ├── perfinfo_trace_header_t.start.hpp │ │ │ │ ├── perfinfo_vad_rotate_info_t.end.hpp │ │ │ │ ├── perfinfo_vad_rotate_info_t.start.hpp │ │ │ │ ├── perfinfo_virtual_alloc_t.end.hpp │ │ │ │ ├── perfinfo_virtual_alloc_t.start.hpp │ │ │ │ ├── perfinfo_virtual_alloc_xpartition_t.end.hpp │ │ │ │ ├── perfinfo_virtual_alloc_xpartition_t.start.hpp │ │ │ │ ├── perfinfo_vtl_change_t.end.hpp │ │ │ │ ├── perfinfo_vtl_change_t.start.hpp │ │ │ │ ├── perfinfo_workingset_entry_t.end.hpp │ │ │ │ ├── perfinfo_workingset_entry_t.start.hpp │ │ │ │ ├── perfinfo_workingset_information_t.end.hpp │ │ │ │ ├── perfinfo_workingset_information_t.start.hpp │ │ │ │ ├── perfinfo_workload_class_update_t.end.hpp │ │ │ │ ├── perfinfo_workload_class_update_t.start.hpp │ │ │ │ ├── perfinfo_yield_processor_information_t.end.hpp │ │ │ │ ├── perfinfo_yield_processor_information_t.start.hpp │ │ │ │ ├── performance_data_t.end.hpp │ │ │ │ ├── performance_data_t.start.hpp │ │ │ │ ├── physical_channel_run_t.end.hpp │ │ │ │ ├── physical_channel_run_t.start.hpp │ │ │ │ ├── physical_disk_record_t.end.hpp │ │ │ │ ├── physical_disk_record_t.start.hpp │ │ │ │ ├── pipedesc_flags_t.end.hpp │ │ │ │ ├── pipedesc_flags_t.start.hpp │ │ │ │ ├── pkcs12_pbes2_export_params_t.end.hpp │ │ │ │ ├── pkcs12_pbes2_export_params_t.start.hpp │ │ │ │ ├── plex_read_data_request_t.end.hpp │ │ │ │ ├── plex_read_data_request_t.start.hpp │ │ │ │ ├── plugplay_control_blocked_driver_data_t.end.hpp │ │ │ │ ├── plugplay_control_blocked_driver_data_t.start.hpp │ │ │ │ ├── plugplay_control_class_association_data_t.end.hpp │ │ │ │ ├── plugplay_control_class_association_data_t.start.hpp │ │ │ │ ├── plugplay_control_conflict_data_t.end.hpp │ │ │ │ ├── plugplay_control_conflict_data_t.start.hpp │ │ │ │ ├── plugplay_control_conflict_entry_t.end.hpp │ │ │ │ ├── plugplay_control_conflict_entry_t.start.hpp │ │ │ │ ├── plugplay_control_conflict_list_t.end.hpp │ │ │ │ ├── plugplay_control_conflict_list_t.start.hpp │ │ │ │ ├── plugplay_control_conflict_strings_t.end.hpp │ │ │ │ ├── plugplay_control_conflict_strings_t.start.hpp │ │ │ │ ├── plugplay_control_depth_data_t.end.hpp │ │ │ │ ├── plugplay_control_depth_data_t.start.hpp │ │ │ │ ├── plugplay_control_device_control_data_t.end.hpp │ │ │ │ ├── plugplay_control_device_control_data_t.start.hpp │ │ │ │ ├── plugplay_control_device_interface_enabled_t.end.hpp │ │ │ │ ├── plugplay_control_device_interface_enabled_t.start.hpp │ │ │ │ ├── plugplay_control_device_relations_data_t.end.hpp │ │ │ │ ├── plugplay_control_device_relations_data_t.start.hpp │ │ │ │ ├── plugplay_control_install_data_t.end.hpp │ │ │ │ ├── plugplay_control_install_data_t.start.hpp │ │ │ │ ├── plugplay_control_interface_alias_data_t.end.hpp │ │ │ │ ├── plugplay_control_interface_alias_data_t.start.hpp │ │ │ │ ├── plugplay_control_interface_list_data_t.end.hpp │ │ │ │ ├── plugplay_control_interface_list_data_t.start.hpp │ │ │ │ ├── plugplay_control_legacy_devgen_data_t.end.hpp │ │ │ │ ├── plugplay_control_legacy_devgen_data_t.start.hpp │ │ │ │ ├── plugplay_control_property_data_t.end.hpp │ │ │ │ ├── plugplay_control_property_data_t.start.hpp │ │ │ │ ├── plugplay_control_query_and_remove_data_t.end.hpp │ │ │ │ ├── plugplay_control_query_and_remove_data_t.start.hpp │ │ │ │ ├── plugplay_control_related_device_data_t.end.hpp │ │ │ │ ├── plugplay_control_related_device_data_t.start.hpp │ │ │ │ ├── plugplay_control_retrieve_dock_data_t.end.hpp │ │ │ │ ├── plugplay_control_retrieve_dock_data_t.start.hpp │ │ │ │ ├── plugplay_control_status_data_t.end.hpp │ │ │ │ ├── plugplay_control_status_data_t.start.hpp │ │ │ │ ├── plugplay_control_target_relation_data_t.end.hpp │ │ │ │ ├── plugplay_control_target_relation_data_t.start.hpp │ │ │ │ ├── plugplay_control_user_response_data_t.end.hpp │ │ │ │ ├── plugplay_control_user_response_data_t.start.hpp │ │ │ │ ├── plugplay_custom_notification_t.end.hpp │ │ │ │ ├── plugplay_custom_notification_t.start.hpp │ │ │ │ ├── plugplay_notify_hdr_t.end.hpp │ │ │ │ ├── plugplay_notify_hdr_t.start.hpp │ │ │ │ ├── pmd_t.end.hpp │ │ │ │ ├── pmd_t.start.hpp │ │ │ │ ├── pmsihandle_t.end.hpp │ │ │ │ ├── pmsihandle_t.start.hpp │ │ │ │ ├── pointer_buffer_swap_context_t.end.hpp │ │ │ │ ├── pointer_buffer_swap_context_t.start.hpp │ │ │ │ ├── pointer_bufferlength_swap_context_t.end.hpp │ │ │ │ ├── pointer_bufferlength_swap_context_t.start.hpp │ │ │ │ ├── pointer_memsize_swap_context_t.end.hpp │ │ │ │ ├── pointer_memsize_swap_context_t.start.hpp │ │ │ │ ├── pointfloat_t.end.hpp │ │ │ │ ├── pointfloat_t.start.hpp │ │ │ │ ├── pointl_t.end.hpp │ │ │ │ ├── pointl_t.start.hpp │ │ │ │ ├── policy_account_domain_info_t.end.hpp │ │ │ │ ├── policy_account_domain_info_t.start.hpp │ │ │ │ ├── pooled_usage_and_limits_t.end.hpp │ │ │ │ ├── pooled_usage_and_limits_t.start.hpp │ │ │ │ ├── port_data_entry_t.end.hpp │ │ │ │ ├── port_data_entry_t.start.hpp │ │ │ │ ├── port_data_information_t.end.hpp │ │ │ │ ├── port_data_information_t.start.hpp │ │ │ │ ├── port_view_t.end.hpp │ │ │ │ ├── port_view_t.start.hpp │ │ │ │ ├── postrelrifref_t.end.hpp │ │ │ │ ├── postrelrifref_t.start.hpp │ │ │ │ ├── powerbroadcast_setting_t.end.hpp │ │ │ │ ├── powerbroadcast_setting_t.start.hpp │ │ │ │ ├── prevent_rundown_bias_container_t.end.hpp │ │ │ │ ├── prevent_rundown_bias_container_t.start.hpp │ │ │ │ ├── prevent_rundown_bias_t.end.hpp │ │ │ │ ├── prevent_rundown_bias_t.start.hpp │ │ │ │ ├── priv_hive_cache_data_t.end.hpp │ │ │ │ ├── priv_hive_cache_data_t.start.hpp │ │ │ │ ├── priv_hive_hkey_cache_t.end.hpp │ │ │ │ ├── priv_hive_hkey_cache_t.start.hpp │ │ │ │ ├── priv_resolver_info_t.end.hpp │ │ │ │ ├── priv_resolver_info_t.start.hpp │ │ │ │ ├── priv_scm_info_t.end.hpp │ │ │ │ ├── priv_scm_info_t.start.hpp │ │ │ │ ├── privkeyver3_t.end.hpp │ │ │ │ ├── privkeyver3_t.start.hpp │ │ │ │ ├── process_access_token_t.end.hpp │ │ │ │ ├── process_access_token_t.start.hpp │ │ │ │ ├── process_activator_token_t.end.hpp │ │ │ │ ├── process_activator_token_t.start.hpp │ │ │ │ ├── process_affinity_update_mode_t.end.hpp │ │ │ │ ├── process_affinity_update_mode_t.start.hpp │ │ │ │ ├── process_basic_information64_t.end.hpp │ │ │ │ ├── process_basic_information64_t.start.hpp │ │ │ │ ├── process_basic_information_t.end.hpp │ │ │ │ ├── process_basic_information_t.start.hpp │ │ │ │ ├── process_child_process_information_t.end.hpp │ │ │ │ ├── process_child_process_information_t.start.hpp │ │ │ │ ├── process_combine_security_domains_information_t.end.hpp │ │ │ │ ├── process_combine_security_domains_information_t.start.hpp │ │ │ │ ├── process_commit_release_information_t.end.hpp │ │ │ │ ├── process_commit_release_information_t.start.hpp │ │ │ │ ├── process_cycle_time_information_t.end.hpp │ │ │ │ ├── process_cycle_time_information_t.start.hpp │ │ │ │ ├── process_devicemap_information_ex_t.end.hpp │ │ │ │ ├── process_devicemap_information_ex_t.start.hpp │ │ │ │ ├── process_devicemap_information_t.end.hpp │ │ │ │ ├── process_devicemap_information_t.start.hpp │ │ │ │ ├── process_dynamic_eh_continuation_target_t.end.hpp │ │ │ │ ├── process_dynamic_eh_continuation_target_t.start.hpp │ │ │ │ ├── process_dynamic_eh_continuation_targets_information_t.end.hpp │ │ │ │ ├── process_dynamic_eh_continuation_targets_information_t.start.hpp │ │ │ │ ├── process_dynamic_enforced_address_range_t.end.hpp │ │ │ │ ├── process_dynamic_enforced_address_range_t.start.hpp │ │ │ │ ├── process_dynamic_enforced_address_ranges_information_t.end.hpp │ │ │ │ ├── process_dynamic_enforced_address_ranges_information_t.start.hpp │ │ │ │ ├── process_dynamic_function_table_information_t.end.hpp │ │ │ │ ├── process_dynamic_function_table_information_t.start.hpp │ │ │ │ ├── process_energy_tracking_state_t.end.hpp │ │ │ │ ├── process_energy_tracking_state_t.start.hpp │ │ │ │ ├── process_exception_port_t.end.hpp │ │ │ │ ├── process_exception_port_t.start.hpp │ │ │ │ ├── process_extended_basic_information64_t.end.hpp │ │ │ │ ├── process_extended_basic_information64_t.start.hpp │ │ │ │ ├── process_extended_basic_information_t.end.hpp │ │ │ │ ├── process_extended_basic_information_t.start.hpp │ │ │ │ ├── process_fault_information_t.end.hpp │ │ │ │ ├── process_fault_information_t.start.hpp │ │ │ │ ├── process_fiber_shadow_stack_allocation_information_t.end.hpp │ │ │ │ ├── process_fiber_shadow_stack_allocation_information_t.start.hpp │ │ │ │ ├── process_foreground_background_t.end.hpp │ │ │ │ ├── process_foreground_background_t.start.hpp │ │ │ │ ├── process_free_fiber_shadow_stack_allocation_information_t.end.hpp │ │ │ │ ├── process_free_fiber_shadow_stack_allocation_information_t.start.hpp │ │ │ │ ├── process_handle_information_t.end.hpp │ │ │ │ ├── process_handle_information_t.start.hpp │ │ │ │ ├── process_handle_snapshot_information_t.end.hpp │ │ │ │ ├── process_handle_snapshot_information_t.start.hpp │ │ │ │ ├── process_handle_table_entry_info_t.end.hpp │ │ │ │ ├── process_handle_table_entry_info_t.start.hpp │ │ │ │ ├── process_handle_tracing_enable_ex_t.end.hpp │ │ │ │ ├── process_handle_tracing_enable_ex_t.start.hpp │ │ │ │ ├── process_handle_tracing_enable_t.end.hpp │ │ │ │ ├── process_handle_tracing_enable_t.start.hpp │ │ │ │ ├── process_handle_tracing_entry_t.end.hpp │ │ │ │ ├── process_handle_tracing_entry_t.start.hpp │ │ │ │ ├── process_handle_tracing_query_t.end.hpp │ │ │ │ ├── process_handle_tracing_query_t.start.hpp │ │ │ │ ├── process_heap_entry_t.end.hpp │ │ │ │ ├── process_heap_entry_t.start.hpp │ │ │ │ ├── process_heap_information_t.end.hpp │ │ │ │ ├── process_heap_information_t.start.hpp │ │ │ │ ├── process_identity_t.end.hpp │ │ │ │ ├── process_identity_t.start.hpp │ │ │ │ ├── process_information_t.end.hpp │ │ │ │ ├── process_information_t.start.hpp │ │ │ │ ├── process_instrumentation_callback_information_t.end.hpp │ │ │ │ ├── process_instrumentation_callback_information_t.start.hpp │ │ │ │ ├── process_job_memory_info_t.end.hpp │ │ │ │ ├── process_job_memory_info_t.start.hpp │ │ │ │ ├── process_keepalive_count_information_t.end.hpp │ │ │ │ ├── process_keepalive_count_information_t.start.hpp │ │ │ │ ├── process_leap_second_info_t.end.hpp │ │ │ │ ├── process_leap_second_info_t.start.hpp │ │ │ │ ├── process_leap_second_information_t.end.hpp │ │ │ │ ├── process_leap_second_information_t.start.hpp │ │ │ │ ├── process_logging_information_t.end.hpp │ │ │ │ ├── process_logging_information_t.start.hpp │ │ │ │ ├── process_machine_information_t.end.hpp │ │ │ │ ├── process_machine_information_t.start.hpp │ │ │ │ ├── process_memory_allocation_mode_t.end.hpp │ │ │ │ ├── process_memory_allocation_mode_t.start.hpp │ │ │ │ ├── process_memory_exhaustion_info_t.end.hpp │ │ │ │ ├── process_memory_exhaustion_info_t.start.hpp │ │ │ │ ├── process_mitigation_aslr_policy_t.end.hpp │ │ │ │ ├── process_mitigation_aslr_policy_t.start.hpp │ │ │ │ ├── process_mitigation_binary_signature_policy_t.end.hpp │ │ │ │ ├── process_mitigation_binary_signature_policy_t.start.hpp │ │ │ │ ├── process_mitigation_child_process_policy_t.end.hpp │ │ │ │ ├── process_mitigation_child_process_policy_t.start.hpp │ │ │ │ ├── process_mitigation_control_flow_guard_policy_t.end.hpp │ │ │ │ ├── process_mitigation_control_flow_guard_policy_t.start.hpp │ │ │ │ ├── process_mitigation_dep_policy_t.end.hpp │ │ │ │ ├── process_mitigation_dep_policy_t.start.hpp │ │ │ │ ├── process_mitigation_dynamic_code_policy_t.end.hpp │ │ │ │ ├── process_mitigation_dynamic_code_policy_t.start.hpp │ │ │ │ ├── process_mitigation_extension_point_disable_policy_t.end.hpp │ │ │ │ ├── process_mitigation_extension_point_disable_policy_t.start.hpp │ │ │ │ ├── process_mitigation_font_disable_policy_t.end.hpp │ │ │ │ ├── process_mitigation_font_disable_policy_t.start.hpp │ │ │ │ ├── process_mitigation_image_load_policy_t.end.hpp │ │ │ │ ├── process_mitigation_image_load_policy_t.start.hpp │ │ │ │ ├── process_mitigation_payload_restriction_policy_t.end.hpp │ │ │ │ ├── process_mitigation_payload_restriction_policy_t.start.hpp │ │ │ │ ├── process_mitigation_policy_information_t.end.hpp │ │ │ │ ├── process_mitigation_policy_information_t.start.hpp │ │ │ │ ├── process_mitigation_redirection_trust_policy_t.end.hpp │ │ │ │ ├── process_mitigation_redirection_trust_policy_t.start.hpp │ │ │ │ ├── process_mitigation_side_channel_isolation_policy_t.end.hpp │ │ │ │ ├── process_mitigation_side_channel_isolation_policy_t.start.hpp │ │ │ │ ├── process_mitigation_strict_handle_check_policy_t.end.hpp │ │ │ │ ├── process_mitigation_strict_handle_check_policy_t.start.hpp │ │ │ │ ├── process_mitigation_system_call_disable_policy_t.end.hpp │ │ │ │ ├── process_mitigation_system_call_disable_policy_t.start.hpp │ │ │ │ ├── process_mitigation_system_call_filter_policy_t.end.hpp │ │ │ │ ├── process_mitigation_system_call_filter_policy_t.start.hpp │ │ │ │ ├── process_mitigation_user_shadow_stack_policy_t.end.hpp │ │ │ │ ├── process_mitigation_user_shadow_stack_policy_t.start.hpp │ │ │ │ ├── process_power_throttling_state_t.end.hpp │ │ │ │ ├── process_power_throttling_state_t.start.hpp │ │ │ │ ├── process_priority_class_t.end.hpp │ │ │ │ ├── process_priority_class_t.start.hpp │ │ │ │ ├── process_protection_level_information_t.end.hpp │ │ │ │ ├── process_protection_level_information_t.start.hpp │ │ │ │ ├── process_readwritevm_logging_information_t.end.hpp │ │ │ │ ├── process_readwritevm_logging_information_t.start.hpp │ │ │ │ ├── process_revoke_file_handles_information_t.end.hpp │ │ │ │ ├── process_revoke_file_handles_information_t.start.hpp │ │ │ │ ├── process_security_domain_information_t.end.hpp │ │ │ │ ├── process_security_domain_information_t.start.hpp │ │ │ │ ├── process_session_information_t.end.hpp │ │ │ │ ├── process_session_information_t.start.hpp │ │ │ │ ├── process_stack_allocation_information_ex_t.end.hpp │ │ │ │ ├── process_stack_allocation_information_ex_t.start.hpp │ │ │ │ ├── process_stack_allocation_information_t.end.hpp │ │ │ │ ├── process_stack_allocation_information_t.start.hpp │ │ │ │ ├── process_system_resource_management_t.end.hpp │ │ │ │ ├── process_system_resource_management_t.start.hpp │ │ │ │ ├── process_telemetry_id_information_t.end.hpp │ │ │ │ ├── process_telemetry_id_information_t.start.hpp │ │ │ │ ├── process_tls_information_t.end.hpp │ │ │ │ ├── process_tls_information_t.start.hpp │ │ │ │ ├── process_token_t.end.hpp │ │ │ │ ├── process_token_t.start.hpp │ │ │ │ ├── process_uptime_information_t.end.hpp │ │ │ │ ├── process_uptime_information_t.start.hpp │ │ │ │ ├── process_wake_information_t.end.hpp │ │ │ │ ├── process_wake_information_t.start.hpp │ │ │ │ ├── process_window_information_t.end.hpp │ │ │ │ ├── process_window_information_t.start.hpp │ │ │ │ ├── process_working_set_control_t.end.hpp │ │ │ │ ├── process_working_set_control_t.start.hpp │ │ │ │ ├── process_ws_watch_information_ex_t.end.hpp │ │ │ │ ├── process_ws_watch_information_ex_t.start.hpp │ │ │ │ ├── process_ws_watch_information_t.end.hpp │ │ │ │ ├── process_ws_watch_information_t.start.hpp │ │ │ │ ├── processor_idle_state_t.end.hpp │ │ │ │ ├── processor_idle_state_t.start.hpp │ │ │ │ ├── processor_idle_states_t.end.hpp │ │ │ │ ├── processor_idle_states_t.start.hpp │ │ │ │ ├── processor_idle_times_t.end.hpp │ │ │ │ ├── processor_idle_times_t.start.hpp │ │ │ │ ├── processor_power_information_t.end.hpp │ │ │ │ ├── processor_power_information_t.start.hpp │ │ │ │ ├── processor_power_policy_info_t.end.hpp │ │ │ │ ├── processor_power_policy_info_t.start.hpp │ │ │ │ ├── processor_power_policy_t.end.hpp │ │ │ │ ├── processor_power_policy_t.start.hpp │ │ │ │ ├── processor_record_t.end.hpp │ │ │ │ ├── processor_record_t.start.hpp │ │ │ │ ├── profile_source_info_t.end.hpp │ │ │ │ ├── profile_source_info_t.start.hpp │ │ │ │ ├── prop_midl_expr_format_string_t.end.hpp │ │ │ │ ├── prop_midl_expr_format_string_t.start.hpp │ │ │ │ ├── prop_midl_proc_format_string_t.end.hpp │ │ │ │ ├── prop_midl_proc_format_string_t.start.hpp │ │ │ │ ├── prop_midl_type_format_string_t.end.hpp │ │ │ │ ├── prop_midl_type_format_string_t.start.hpp │ │ │ │ ├── prov_enumalgs_ex_t.end.hpp │ │ │ │ ├── prov_enumalgs_ex_t.start.hpp │ │ │ │ ├── prov_enumalgs_t.end.hpp │ │ │ │ ├── prov_enumalgs_t.start.hpp │ │ │ │ ├── provider_info_t.end.hpp │ │ │ │ ├── provider_info_t.start.hpp │ │ │ │ ├── proxy_stub_registration_entry_properties_t.end.hpp │ │ │ │ ├── proxy_stub_registration_entry_properties_t.start.hpp │ │ │ │ ├── psfeature_custpaper_t.end.hpp │ │ │ │ ├── psfeature_custpaper_t.start.hpp │ │ │ │ ├── psfeature_output_t.end.hpp │ │ │ │ ├── psfeature_output_t.start.hpp │ │ │ │ ├── psinjectdata_t.end.hpp │ │ │ │ ├── psinjectdata_t.start.hpp │ │ │ │ ├── pss_performance_counters_t.end.hpp │ │ │ │ ├── pss_performance_counters_t.start.hpp │ │ │ │ ├── pss_process_information_t.end.hpp │ │ │ │ ├── pss_process_information_t.start.hpp │ │ │ │ ├── pubkey_t.end.hpp │ │ │ │ ├── pubkey_t.start.hpp │ │ │ │ ├── pubkeyver3_t.end.hpp │ │ │ │ ├── pubkeyver3_t.start.hpp │ │ │ │ ├── public_object_basic_information_t.end.hpp │ │ │ │ ├── public_object_basic_information_t.start.hpp │ │ │ │ ├── public_object_type_information_t.end.hpp │ │ │ │ ├── public_object_type_information_t.start.hpp │ │ │ │ ├── publickeystruc_t.end.hpp │ │ │ │ ├── publickeystruc_t.start.hpp │ │ │ │ ├── push_call_chain_info_t.end.hpp │ │ │ │ ├── push_call_chain_info_t.start.hpp │ │ │ │ ├── push_com_call_passthrough_trace_activity_t.end.hpp │ │ │ │ ├── push_com_call_passthrough_trace_activity_t.start.hpp │ │ │ │ ├── push_com_call_trace_activity_t.end.hpp │ │ │ │ ├── push_com_call_trace_activity_t.start.hpp │ │ │ │ ├── push_com_callout_trace_activity_t.end.hpp │ │ │ │ ├── push_com_callout_trace_activity_t.start.hpp │ │ │ │ ├── push_logical_thread_id_t.end.hpp │ │ │ │ ├── push_logical_thread_id_t.start.hpp │ │ │ │ ├── push_request_container_passthrough_data_t.end.hpp │ │ │ │ ├── push_request_container_passthrough_data_t.start.hpp │ │ │ │ ├── push_tls_prevent_rundown_mitigation_t.end.hpp │ │ │ │ ├── push_tls_prevent_rundown_mitigation_t.start.hpp │ │ │ │ ├── push_trace_activity_t.end.hpp │ │ │ │ ├── push_trace_activity_t.start.hpp │ │ │ │ ├── pvalue_a_t.end.hpp │ │ │ │ ├── pvalue_a_t.start.hpp │ │ │ │ ├── pvalue_w_t.end.hpp │ │ │ │ ├── pvalue_w_t.start.hpp │ │ │ │ ├── query_bad_ranges_input_range_t.end.hpp │ │ │ │ ├── query_bad_ranges_input_range_t.start.hpp │ │ │ │ ├── query_bad_ranges_input_t.end.hpp │ │ │ │ ├── query_bad_ranges_input_t.start.hpp │ │ │ │ ├── query_bad_ranges_output_range_t.end.hpp │ │ │ │ ├── query_bad_ranges_output_range_t.start.hpp │ │ │ │ ├── query_bad_ranges_output_t.end.hpp │ │ │ │ ├── query_bad_ranges_output_t.start.hpp │ │ │ │ ├── query_cached_runs_bin_t.end.hpp │ │ │ │ ├── query_cached_runs_bin_t.start.hpp │ │ │ │ ├── query_cached_runs_entry_t.end.hpp │ │ │ │ ├── query_cached_runs_entry_t.start.hpp │ │ │ │ ├── query_cached_runs_input_t.end.hpp │ │ │ │ ├── query_cached_runs_input_t.start.hpp │ │ │ │ ├── query_cached_runs_output_t.end.hpp │ │ │ │ ├── query_cached_runs_output_t.start.hpp │ │ │ │ ├── query_cached_runs_run_t.end.hpp │ │ │ │ ├── query_cached_runs_run_t.start.hpp │ │ │ │ ├── query_direct_access_extents_t.end.hpp │ │ │ │ ├── query_direct_access_extents_t.start.hpp │ │ │ │ ├── query_file_layout_input_t.end.hpp │ │ │ │ ├── query_file_layout_input_t.start.hpp │ │ │ │ ├── query_file_layout_output_t.end.hpp │ │ │ │ ├── query_file_layout_output_t.start.hpp │ │ │ │ ├── query_performance_counter_flags_t.end.hpp │ │ │ │ ├── query_performance_counter_flags_t.start.hpp │ │ │ │ ├── query_service_configa_t.end.hpp │ │ │ │ ├── query_service_configa_t.start.hpp │ │ │ │ ├── query_service_configw_t.end.hpp │ │ │ │ ├── query_service_configw_t.start.hpp │ │ │ │ ├── query_service_lock_statusa_t.end.hpp │ │ │ │ ├── query_service_lock_statusa_t.start.hpp │ │ │ │ ├── query_service_lock_statusw_t.end.hpp │ │ │ │ ├── query_service_lock_statusw_t.start.hpp │ │ │ │ ├── query_storage_reserve_input_t.end.hpp │ │ │ │ ├── query_storage_reserve_input_t.start.hpp │ │ │ │ ├── query_storage_reserve_output_t.end.hpp │ │ │ │ ├── query_storage_reserve_output_t.start.hpp │ │ │ │ ├── quota_limits_ex_t.end.hpp │ │ │ │ ├── quota_limits_ex_t.start.hpp │ │ │ │ ├── quota_limits_t.end.hpp │ │ │ │ ├── quota_limits_t.start.hpp │ │ │ │ ├── rasterizer_status_t.end.hpp │ │ │ │ ├── rasterizer_status_t.start.hpp │ │ │ │ ├── rate_quota_limit_t.end.hpp │ │ │ │ ├── rate_quota_limit_t.start.hpp │ │ │ │ ├── rc_config_t.end.hpp │ │ │ │ ├── rc_config_t.start.hpp │ │ │ │ ├── rdr_callout_state_t.end.hpp │ │ │ │ ├── rdr_callout_state_t.start.hpp │ │ │ │ ├── read_file_usn_data_t.end.hpp │ │ │ │ ├── read_file_usn_data_t.start.hpp │ │ │ │ ├── read_usn_journal_data_v0_t.end.hpp │ │ │ │ ├── read_usn_journal_data_v0_t.start.hpp │ │ │ │ ├── read_usn_journal_data_v1_t.end.hpp │ │ │ │ ├── read_usn_journal_data_v1_t.start.hpp │ │ │ │ ├── rearrange_file_data32_t.end.hpp │ │ │ │ ├── rearrange_file_data32_t.start.hpp │ │ │ │ ├── rearrange_file_data_t.end.hpp │ │ │ │ ├── rearrange_file_data_t.start.hpp │ │ │ │ ├── reason_buffer_t.end.hpp │ │ │ │ ├── reason_buffer_t.start.hpp │ │ │ │ ├── reason_context_t.end.hpp │ │ │ │ ├── reason_context_t.start.hpp │ │ │ │ ├── rectl_t.end.hpp │ │ │ │ ├── rectl_t.start.hpp │ │ │ │ ├── redirection_descriptor_t.end.hpp │ │ │ │ ├── redirection_descriptor_t.start.hpp │ │ │ │ ├── redirection_function_descriptor_t.end.hpp │ │ │ │ ├── redirection_function_descriptor_t.start.hpp │ │ │ │ ├── reentrant_sta_state_t.end.hpp │ │ │ │ ├── reentrant_sta_state_t.start.hpp │ │ │ │ ├── refid_to_fullptr_element_t.end.hpp │ │ │ │ ├── refid_to_fullptr_element_t.start.hpp │ │ │ │ ├── refs_deallocate_ranges_input_buffer_t.end.hpp │ │ │ │ ├── refs_deallocate_ranges_input_buffer_t.start.hpp │ │ │ │ ├── refs_deallocate_ranges_range_t.end.hpp │ │ │ │ ├── refs_deallocate_ranges_range_t.start.hpp │ │ │ │ ├── refs_remove_hardlink_backpointer_t.end.hpp │ │ │ │ ├── refs_remove_hardlink_backpointer_t.start.hpp │ │ │ │ ├── refs_smr_volume_gc_parameters_t.end.hpp │ │ │ │ ├── refs_smr_volume_gc_parameters_t.start.hpp │ │ │ │ ├── refs_smr_volume_info_output_t.end.hpp │ │ │ │ ├── refs_smr_volume_info_output_t.start.hpp │ │ │ │ ├── refs_stream_extent_t.end.hpp │ │ │ │ ├── refs_stream_extent_t.start.hpp │ │ │ │ ├── refs_stream_snapshot_list_output_buffer_entry_t.end.hpp │ │ │ │ ├── refs_stream_snapshot_list_output_buffer_entry_t.start.hpp │ │ │ │ ├── refs_stream_snapshot_list_output_buffer_t.end.hpp │ │ │ │ ├── refs_stream_snapshot_list_output_buffer_t.start.hpp │ │ │ │ ├── refs_stream_snapshot_management_input_buffer_t.end.hpp │ │ │ │ ├── refs_stream_snapshot_management_input_buffer_t.start.hpp │ │ │ │ ├── refs_stream_snapshot_query_deltas_input_buffer_t.end.hpp │ │ │ │ ├── refs_stream_snapshot_query_deltas_input_buffer_t.start.hpp │ │ │ │ ├── refs_stream_snapshot_query_deltas_output_buffer_t.end.hpp │ │ │ │ ├── refs_stream_snapshot_query_deltas_output_buffer_t.start.hpp │ │ │ │ ├── refs_volume_counter_info_input_buffer_t.end.hpp │ │ │ │ ├── refs_volume_counter_info_input_buffer_t.start.hpp │ │ │ │ ├── refs_volume_data_buffer_t.end.hpp │ │ │ │ ├── refs_volume_data_buffer_t.start.hpp │ │ │ │ ├── reg_input_entry_t.end.hpp │ │ │ │ ├── reg_input_entry_t.start.hpp │ │ │ │ ├── reg_input_t.end.hpp │ │ │ │ ├── reg_input_t.start.hpp │ │ │ │ ├── reg_notify_information_t.end.hpp │ │ │ │ ├── reg_notify_information_t.start.hpp │ │ │ │ ├── reg_output_t.end.hpp │ │ │ │ ├── reg_output_t.start.hpp │ │ │ │ ├── registry_guid_list_t.end.hpp │ │ │ │ ├── registry_guid_list_t.start.hpp │ │ │ │ ├── registry_key_t.end.hpp │ │ │ │ ├── registry_key_t.start.hpp │ │ │ │ ├── registry_key_value_t.end.hpp │ │ │ │ ├── registry_key_value_t.start.hpp │ │ │ │ ├── registry_key_watcher_t.end.hpp │ │ │ │ ├── registry_key_watcher_t.start.hpp │ │ │ │ ├── registry_path_watcher_t.end.hpp │ │ │ │ ├── registry_path_watcher_t.start.hpp │ │ │ │ ├── relative_module_address_t.end.hpp │ │ │ │ ├── relative_module_address_t.start.hpp │ │ │ │ ├── release_ctrl_unk_callback_data_t.end.hpp │ │ │ │ ├── release_ctrl_unk_callback_data_t.start.hpp │ │ │ │ ├── rem_interface_weak_ref_t.end.hpp │ │ │ │ ├── rem_interface_weak_ref_t.start.hpp │ │ │ │ ├── remotable_handle_t.end.hpp │ │ │ │ ├── remotable_handle_t.start.hpp │ │ │ │ ├── remote_link_tracking_information_t.end.hpp │ │ │ │ ├── remote_link_tracking_information_t.start.hpp │ │ │ │ ├── remote_metafilepict_t.end.hpp │ │ │ │ ├── remote_metafilepict_t.start.hpp │ │ │ │ ├── remote_name_infoa_t.end.hpp │ │ │ │ ├── remote_name_infoa_t.start.hpp │ │ │ │ ├── remote_name_infow_t.end.hpp │ │ │ │ ├── remote_name_infow_t.start.hpp │ │ │ │ ├── remote_reply_scm_info_t.end.hpp │ │ │ │ ├── remote_reply_scm_info_t.start.hpp │ │ │ │ ├── remote_request_scm_info_t.end.hpp │ │ │ │ ├── remote_request_scm_info_t.start.hpp │ │ │ │ ├── remsecurity_attributes_t.end.hpp │ │ │ │ ├── remsecurity_attributes_t.start.hpp │ │ │ │ ├── repair_copies_input_t.end.hpp │ │ │ │ ├── repair_copies_input_t.start.hpp │ │ │ │ ├── repair_copies_output_t.end.hpp │ │ │ │ ├── repair_copies_output_t.start.hpp │ │ │ │ ├── repair_storage_reserve_input_t.end.hpp │ │ │ │ ├── repair_storage_reserve_input_t.start.hpp │ │ │ │ ├── reparse_data_buffer_ex_t.end.hpp │ │ │ │ ├── reparse_data_buffer_ex_t.start.hpp │ │ │ │ ├── reparse_guid_data_buffer_t.end.hpp │ │ │ │ ├── reparse_guid_data_buffer_t.start.hpp │ │ │ │ ├── reparse_index_key_t.end.hpp │ │ │ │ ├── reparse_index_key_t.start.hpp │ │ │ │ ├── reparse_point_information_t.end.hpp │ │ │ │ ├── reparse_point_information_t.start.hpp │ │ │ │ ├── reported_exceptions_t.end.hpp │ │ │ │ ├── reported_exceptions_t.start.hpp │ │ │ │ ├── request_oplock_input_buffer_t.end.hpp │ │ │ │ ├── request_oplock_input_buffer_t.start.hpp │ │ │ │ ├── request_oplock_output_buffer_t.end.hpp │ │ │ │ ├── request_oplock_output_buffer_t.start.hpp │ │ │ │ ├── request_raw_encrypted_data_t.end.hpp │ │ │ │ ├── request_raw_encrypted_data_t.start.hpp │ │ │ │ ├── resourcemanager_basic_information_t.end.hpp │ │ │ │ ├── resourcemanager_basic_information_t.start.hpp │ │ │ │ ├── resourcemanager_completion_information_t.end.hpp │ │ │ │ ├── resourcemanager_completion_information_t.start.hpp │ │ │ │ ├── restart_usn_journal_data_t.end.hpp │ │ │ │ ├── restart_usn_journal_data_t.start.hpp │ │ │ │ ├── resume_performance_t.end.hpp │ │ │ │ ├── resume_performance_t.start.hpp │ │ │ │ ├── retrieval_pointer_base_t.end.hpp │ │ │ │ ├── retrieval_pointer_base_t.start.hpp │ │ │ │ ├── retrieval_pointer_count_t.end.hpp │ │ │ │ ├── retrieval_pointer_count_t.start.hpp │ │ │ │ ├── retrieval_pointers_and_refcount_buffer_t.end.hpp │ │ │ │ ├── retrieval_pointers_and_refcount_buffer_t.start.hpp │ │ │ │ ├── retrieval_pointers_buffer_t.end.hpp │ │ │ │ ├── retrieval_pointers_buffer_t.start.hpp │ │ │ │ ├── revoke_classes_t.end.hpp │ │ │ │ ├── revoke_classes_t.start.hpp │ │ │ │ ├── revoke_entry_t.end.hpp │ │ │ │ ├── revoke_entry_t.start.hpp │ │ │ │ ├── rgndata_t.end.hpp │ │ │ │ ├── rgndata_t.start.hpp │ │ │ │ ├── rgndataheader_t.end.hpp │ │ │ │ ├── rgndataheader_t.start.hpp │ │ │ │ ├── rif_ref_buffer_t.end.hpp │ │ │ │ ├── rif_ref_buffer_t.start.hpp │ │ │ │ ├── rip_info_t.end.hpp │ │ │ │ ├── rip_info_t.start.hpp │ │ │ │ ├── rm_activity_importance_t.end.hpp │ │ │ │ ├── rm_activity_importance_t.start.hpp │ │ │ │ ├── rm_appmodel_policy_flags_t.end.hpp │ │ │ │ ├── rm_appmodel_policy_flags_t.start.hpp │ │ │ │ ├── rm_common_policy_flags_t.end.hpp │ │ │ │ ├── rm_common_policy_flags_t.start.hpp │ │ │ │ ├── rm_resource_limit_flags_t.end.hpp │ │ │ │ ├── rm_resource_limit_flags_t.start.hpp │ │ │ │ ├── rm_resource_limit_mask_t.end.hpp │ │ │ │ ├── rm_resource_limit_mask_t.start.hpp │ │ │ │ ├── rm_resource_limits_t.end.hpp │ │ │ │ ├── rm_resource_limits_t.start.hpp │ │ │ │ ├── rm_resource_request_t.end.hpp │ │ │ │ ├── rm_resource_request_t.start.hpp │ │ │ │ ├── rm_resource_set_properties_t.end.hpp │ │ │ │ ├── rm_resource_set_properties_t.start.hpp │ │ │ │ ├── rm_revoke_message_t.end.hpp │ │ │ │ ├── rm_revoke_message_t.start.hpp │ │ │ │ ├── rmp_seg_t.end.hpp │ │ │ │ ├── rmp_seg_t.start.hpp │ │ │ │ ├── ro_variant_t.end.hpp │ │ │ │ ├── ro_variant_t.start.hpp │ │ │ │ ├── root_info_luid_t.end.hpp │ │ │ │ ├── root_info_luid_t.start.hpp │ │ │ │ ├── rsapubkey_t.end.hpp │ │ │ │ ├── rsapubkey_t.start.hpp │ │ │ │ ├── rsdsi_header_t.end.hpp │ │ │ │ ├── rsdsi_header_t.start.hpp │ │ │ │ ├── rsdsi_t.end.hpp │ │ │ │ ├── rsdsi_t.start.hpp │ │ │ │ ├── rtlwow64_crossprocess_work_head_t.end.hpp │ │ │ │ ├── rtlwow64_crossprocess_work_head_t.start.hpp │ │ │ │ ├── rtlwow64_crossprocess_work_item_t.end.hpp │ │ │ │ ├── rtlwow64_crossprocess_work_item_t.start.hpp │ │ │ │ ├── rundown_instrumentation_data_t.end.hpp │ │ │ │ ├── rundown_instrumentation_data_t.start.hpp │ │ │ │ ├── rundown_server_oid_t.end.hpp │ │ │ │ ├── rundown_server_oid_t.start.hpp │ │ │ │ ├── runtime_broker_cache_key_t.end.hpp │ │ │ │ ├── runtime_broker_cache_key_t.start.hpp │ │ │ │ ├── s_access_cache_t.end.hpp │ │ │ │ ├── s_access_cache_t.start.hpp │ │ │ │ ├── s_activatable_class_id_hash_node_t.end.hpp │ │ │ │ ├── s_activatable_class_id_hash_node_t.start.hpp │ │ │ │ ├── s_blanket_t.end.hpp │ │ │ │ ├── s_blanket_t.start.hpp │ │ │ │ ├── s_catchable_type_array_t.end.hpp │ │ │ │ ├── s_catchable_type_array_t.start.hpp │ │ │ │ ├── s_catchable_type_t.end.hpp │ │ │ │ ├── s_catchable_type_t.start.hpp │ │ │ │ ├── s_channel_hook_call_info_t.end.hpp │ │ │ │ ├── s_channel_hook_call_info_t.start.hpp │ │ │ │ ├── s_ext_hash_node_t.end.hpp │ │ │ │ ├── s_ext_hash_node_t.start.hpp │ │ │ │ ├── s_guid_t.end.hpp │ │ │ │ ├── s_guid_t.start.hpp │ │ │ │ ├── s_hash_chain_t.end.hpp │ │ │ │ ├── s_hash_chain_t.start.hpp │ │ │ │ ├── s_hook_list_t.end.hpp │ │ │ │ ├── s_hook_list_t.start.hpp │ │ │ │ ├── s_multi_guid_hash_node_t.end.hpp │ │ │ │ ├── s_multi_guid_hash_node_t.start.hpp │ │ │ │ ├── s_multi_guid_key_t.end.hpp │ │ │ │ ├── s_multi_guid_key_t.start.hpp │ │ │ │ ├── s_name_hash_node_t.end.hpp │ │ │ │ ├── s_name_hash_node_t.start.hpp │ │ │ │ ├── s_name_key_t.end.hpp │ │ │ │ ├── s_name_key_t.start.hpp │ │ │ │ ├── s_pending_call_t.end.hpp │ │ │ │ ├── s_pending_call_t.start.hpp │ │ │ │ ├── s_permission_header_t.end.hpp │ │ │ │ ├── s_permission_header_t.start.hpp │ │ │ │ ├── s_pointer_hash_node_t.end.hpp │ │ │ │ ├── s_pointer_hash_node_t.start.hpp │ │ │ │ ├── s_rtti_base_class_array_t.end.hpp │ │ │ │ ├── s_rtti_base_class_array_t.start.hpp │ │ │ │ ├── s_rtti_base_class_descriptor2_t.end.hpp │ │ │ │ ├── s_rtti_base_class_descriptor2_t.start.hpp │ │ │ │ ├── s_rtti_base_class_descriptor_t.end.hpp │ │ │ │ ├── s_rtti_base_class_descriptor_t.start.hpp │ │ │ │ ├── s_rtti_class_hierarchy_descriptor_t.end.hpp │ │ │ │ ├── s_rtti_class_hierarchy_descriptor_t.start.hpp │ │ │ │ ├── s_rtti_complete_object_locator2_t.end.hpp │ │ │ │ ├── s_rtti_complete_object_locator2_t.start.hpp │ │ │ │ ├── s_serialization_header_t.end.hpp │ │ │ │ ├── s_serialization_header_t.start.hpp │ │ │ │ ├── s_string_hash_node_t.end.hpp │ │ │ │ ├── s_string_hash_node_t.start.hpp │ │ │ │ ├── s_throw_info_t.end.hpp │ │ │ │ ├── s_throw_info_t.start.hpp │ │ │ │ ├── s_two_bits_t.end.hpp │ │ │ │ ├── s_two_bits_t.start.hpp │ │ │ │ ├── safe_int_exception_t.end.hpp │ │ │ │ ├── safe_int_exception_t.start.hpp │ │ │ │ ├── save_ndrslot_t.end.hpp │ │ │ │ ├── save_ndrslot_t.start.hpp │ │ │ │ ├── sc_action_t.end.hpp │ │ │ │ ├── sc_action_t.start.hpp │ │ │ │ ├── schannel_alg_t.end.hpp │ │ │ │ ├── schannel_alg_t.start.hpp │ │ │ │ ├── schannel_cred_t.end.hpp │ │ │ │ ├── schannel_cred_t.start.hpp │ │ │ │ ├── scm_midl_expr_format_string_t.end.hpp │ │ │ │ ├── scm_midl_expr_format_string_t.start.hpp │ │ │ │ ├── scm_midl_proc_format_string_t.end.hpp │ │ │ │ ├── scm_midl_proc_format_string_t.start.hpp │ │ │ │ ├── scm_midl_type_format_string_t.end.hpp │ │ │ │ ├── scm_midl_type_format_string_t.start.hpp │ │ │ │ ├── scm_reply_info_t.end.hpp │ │ │ │ ├── scm_reply_info_t.start.hpp │ │ │ │ ├── scm_request_info_t.end.hpp │ │ │ │ ├── scm_request_info_t.start.hpp │ │ │ │ ├── scmregkey_t.end.hpp │ │ │ │ ├── scmregkey_t.start.hpp │ │ │ │ ├── scontext_queue_t.end.hpp │ │ │ │ ├── scontext_queue_t.start.hpp │ │ │ │ ├── scope_table_amd64_t.end.hpp │ │ │ │ ├── scope_table_amd64_t.start.hpp │ │ │ │ ├── scope_table_arm64_t.end.hpp │ │ │ │ ├── scope_table_arm64_t.start.hpp │ │ │ │ ├── scope_table_arm_t.end.hpp │ │ │ │ ├── scope_table_arm_t.start.hpp │ │ │ │ ├── scrub_data_input_t.end.hpp │ │ │ │ ├── scrub_data_input_t.start.hpp │ │ │ │ ├── scrub_data_output_t.end.hpp │ │ │ │ ├── scrub_data_output_t.start.hpp │ │ │ │ ├── scrub_parity_extent_data_t.end.hpp │ │ │ │ ├── scrub_parity_extent_data_t.start.hpp │ │ │ │ ├── scrub_parity_extent_t.end.hpp │ │ │ │ ├── scrub_parity_extent_t.start.hpp │ │ │ │ ├── sd_change_machine_sid_input_t.end.hpp │ │ │ │ ├── sd_change_machine_sid_input_t.start.hpp │ │ │ │ ├── sd_change_machine_sid_output_t.end.hpp │ │ │ │ ├── sd_change_machine_sid_output_t.start.hpp │ │ │ │ ├── sd_enum_sds_entry_t.end.hpp │ │ │ │ ├── sd_enum_sds_entry_t.start.hpp │ │ │ │ ├── sd_enum_sds_input_t.end.hpp │ │ │ │ ├── sd_enum_sds_input_t.start.hpp │ │ │ │ ├── sd_enum_sds_output_t.end.hpp │ │ │ │ ├── sd_enum_sds_output_t.start.hpp │ │ │ │ ├── sd_global_change_input_t.end.hpp │ │ │ │ ├── sd_global_change_input_t.start.hpp │ │ │ │ ├── sd_global_change_output_t.end.hpp │ │ │ │ ├── sd_global_change_output_t.start.hpp │ │ │ │ ├── sd_query_stats_output_t.end.hpp │ │ │ │ ├── sd_query_stats_output_t.start.hpp │ │ │ │ ├── sdword_hash_node_t.end.hpp │ │ │ │ ├── sdword_hash_node_t.start.hpp │ │ │ │ ├── secpkg_app_mode_info_t.end.hpp │ │ │ │ ├── secpkg_app_mode_info_t.start.hpp │ │ │ │ ├── section_image_information32_t.end.hpp │ │ │ │ ├── section_image_information32_t.start.hpp │ │ │ │ ├── section_image_information64_t.end.hpp │ │ │ │ ├── section_image_information64_t.start.hpp │ │ │ │ ├── section_internal_image_information_t.end.hpp │ │ │ │ ├── section_internal_image_information_t.start.hpp │ │ │ │ ├── sectionbasicinfo_t.end.hpp │ │ │ │ ├── sectionbasicinfo_t.start.hpp │ │ │ │ ├── secure_speculation_control_information_t.end.hpp │ │ │ │ ├── secure_speculation_control_information_t.start.hpp │ │ │ │ ├── segment_heap_performance_counter_information_t.end.hpp │ │ │ │ ├── segment_heap_performance_counter_information_t.start.hpp │ │ │ │ ├── semaphore_basic_information_t.end.hpp │ │ │ │ ├── semaphore_basic_information_t.start.hpp │ │ │ │ ├── send_message_to_classic_sta_params_t.end.hpp │ │ │ │ ├── send_message_to_classic_sta_params_t.start.hpp │ │ │ │ ├── serializable_property_t.end.hpp │ │ │ │ ├── serializable_property_t.start.hpp │ │ │ │ ├── serializer_t.end.hpp │ │ │ │ ├── serializer_t.start.hpp │ │ │ │ ├── server_call_t.end.hpp │ │ │ │ ├── server_call_t.start.hpp │ │ │ │ ├── server_call_tracing_info_t.end.hpp │ │ │ │ ├── server_call_tracing_info_t.start.hpp │ │ │ │ ├── server_context_work_data_t.end.hpp │ │ │ │ ├── server_context_work_data_t.start.hpp │ │ │ │ ├── server_location_info_t.end.hpp │ │ │ │ ├── server_location_info_t.start.hpp │ │ │ │ ├── server_machine_registration_entry_properties_t.end.hpp │ │ │ │ ├── server_machine_registration_entry_properties_t.start.hpp │ │ │ │ ├── server_registration_entry_properties_t.end.hpp │ │ │ │ ├── server_registration_entry_properties_t.start.hpp │ │ │ │ ├── serversilo_basic_information_t.end.hpp │ │ │ │ ├── serversilo_basic_information_t.start.hpp │ │ │ │ ├── serversilo_init_information_t.end.hpp │ │ │ │ ├── serversilo_init_information_t.start.hpp │ │ │ │ ├── service_control_status_reason_paramsa_t.end.hpp │ │ │ │ ├── service_control_status_reason_paramsa_t.start.hpp │ │ │ │ ├── service_control_status_reason_paramsw_t.end.hpp │ │ │ │ ├── service_control_status_reason_paramsw_t.start.hpp │ │ │ │ ├── service_custom_system_state_change_data_item_t.end.hpp │ │ │ │ ├── service_custom_system_state_change_data_item_t.start.hpp │ │ │ │ ├── service_delayed_auto_start_info_t.end.hpp │ │ │ │ ├── service_delayed_auto_start_info_t.start.hpp │ │ │ │ ├── service_descriptiona_t.end.hpp │ │ │ │ ├── service_descriptiona_t.start.hpp │ │ │ │ ├── service_descriptionw_t.end.hpp │ │ │ │ ├── service_descriptionw_t.start.hpp │ │ │ │ ├── service_failure_actions_flag_t.end.hpp │ │ │ │ ├── service_failure_actions_flag_t.start.hpp │ │ │ │ ├── service_failure_actionsa_t.end.hpp │ │ │ │ ├── service_failure_actionsa_t.start.hpp │ │ │ │ ├── service_failure_actionsw_t.end.hpp │ │ │ │ ├── service_failure_actionsw_t.start.hpp │ │ │ │ ├── service_launch_protected_info_t.end.hpp │ │ │ │ ├── service_launch_protected_info_t.start.hpp │ │ │ │ ├── service_notify_1_t.end.hpp │ │ │ │ ├── service_notify_1_t.start.hpp │ │ │ │ ├── service_notify_2a_t.end.hpp │ │ │ │ ├── service_notify_2a_t.start.hpp │ │ │ │ ├── service_notify_2w_t.end.hpp │ │ │ │ ├── service_notify_2w_t.start.hpp │ │ │ │ ├── service_preferred_node_info_t.end.hpp │ │ │ │ ├── service_preferred_node_info_t.start.hpp │ │ │ │ ├── service_preshutdown_info_t.end.hpp │ │ │ │ ├── service_preshutdown_info_t.start.hpp │ │ │ │ ├── service_required_privileges_infoa_t.end.hpp │ │ │ │ ├── service_required_privileges_infoa_t.start.hpp │ │ │ │ ├── service_required_privileges_infow_t.end.hpp │ │ │ │ ├── service_required_privileges_infow_t.start.hpp │ │ │ │ ├── service_sid_info_t.end.hpp │ │ │ │ ├── service_sid_info_t.start.hpp │ │ │ │ ├── service_start_reason_t.end.hpp │ │ │ │ ├── service_start_reason_t.start.hpp │ │ │ │ ├── service_status_process_t.end.hpp │ │ │ │ ├── service_status_process_t.start.hpp │ │ │ │ ├── service_status_t.end.hpp │ │ │ │ ├── service_status_t.start.hpp │ │ │ │ ├── service_table_entrya_t.end.hpp │ │ │ │ ├── service_table_entrya_t.start.hpp │ │ │ │ ├── service_table_entryw_t.end.hpp │ │ │ │ ├── service_table_entryw_t.start.hpp │ │ │ │ ├── service_timechange_info_t.end.hpp │ │ │ │ ├── service_timechange_info_t.start.hpp │ │ │ │ ├── service_trigger_custom_state_id_t.end.hpp │ │ │ │ ├── service_trigger_custom_state_id_t.start.hpp │ │ │ │ ├── service_trigger_info_t.end.hpp │ │ │ │ ├── service_trigger_info_t.start.hpp │ │ │ │ ├── service_trigger_specific_data_item_t.end.hpp │ │ │ │ ├── service_trigger_specific_data_item_t.start.hpp │ │ │ │ ├── service_trigger_t.end.hpp │ │ │ │ ├── service_trigger_t.start.hpp │ │ │ │ ├── session_user_context_t.end.hpp │ │ │ │ ├── session_user_context_t.start.hpp │ │ │ │ ├── set_dax_alloc_alignment_hint_input_t.end.hpp │ │ │ │ ├── set_dax_alloc_alignment_hint_input_t.start.hpp │ │ │ │ ├── set_power_setting_value_t.end.hpp │ │ │ │ ├── set_power_setting_value_t.start.hpp │ │ │ │ ├── setjmp_float128_t.end.hpp │ │ │ │ ├── setjmp_float128_t.start.hpp │ │ │ │ ├── shared_or_exclusive_lock_t.end.hpp │ │ │ │ ├── shared_or_exclusive_lock_t.start.hpp │ │ │ │ ├── shared_virtual_disk_support_t.end.hpp │ │ │ │ ├── shared_virtual_disk_support_t.start.hpp │ │ │ │ ├── shellhookinfo_t.end.hpp │ │ │ │ ├── shellhookinfo_t.start.hpp │ │ │ │ ├── short_sizedarr_t.end.hpp │ │ │ │ ├── short_sizedarr_t.start.hpp │ │ │ │ ├── shrink_volume_information_t.end.hpp │ │ │ │ ├── shrink_volume_information_t.start.hpp │ │ │ │ ├── shuffle_file_data_t.end.hpp │ │ │ │ ├── shuffle_file_data_t.start.hpp │ │ │ │ ├── siloobject_basic_information_t.end.hpp │ │ │ │ ├── siloobject_basic_information_t.start.hpp │ │ │ │ ├── siloobject_root_directory_t.end.hpp │ │ │ │ ├── siloobject_root_directory_t.start.hpp │ │ │ │ ├── sl_appx_cache_t.end.hpp │ │ │ │ ├── sl_appx_cache_t.start.hpp │ │ │ │ ├── sl_appx_cache_value_descriptor_t.end.hpp │ │ │ │ ├── sl_appx_cache_value_descriptor_t.start.hpp │ │ │ │ ├── sl_hwid_device_info_t.end.hpp │ │ │ │ ├── sl_hwid_device_info_t.start.hpp │ │ │ │ ├── sl_kmem_cache_t.end.hpp │ │ │ │ ├── sl_kmem_cache_t.start.hpp │ │ │ │ ├── sl_kmem_cache_value_descriptor_t.end.hpp │ │ │ │ ├── sl_kmem_cache_value_descriptor_t.start.hpp │ │ │ │ ├── small_rect_t.end.hpp │ │ │ │ ├── small_rect_t.start.hpp │ │ │ │ ├── smb_share_flush_and_purge_input_t.end.hpp │ │ │ │ ├── smb_share_flush_and_purge_input_t.start.hpp │ │ │ │ ├── smb_share_flush_and_purge_output_t.end.hpp │ │ │ │ ├── smb_share_flush_and_purge_output_t.start.hpp │ │ │ │ ├── smipid_hash_node_t.end.hpp │ │ │ │ ├── smipid_hash_node_t.start.hpp │ │ │ │ ├── snapshot_report_t.end.hpp │ │ │ │ ├── snapshot_report_t.start.hpp │ │ │ │ ├── soid_registration_t.end.hpp │ │ │ │ ├── soid_registration_t.start.hpp │ │ │ │ ├── sparse_overallocate_data_t.end.hpp │ │ │ │ ├── sparse_overallocate_data_t.start.hpp │ │ │ │ ├── special_properties_t.end.hpp │ │ │ │ ├── special_properties_t.start.hpp │ │ │ │ ├── sqm_stream_entry_ex_t.end.hpp │ │ │ │ ├── sqm_stream_entry_ex_t.start.hpp │ │ │ │ ├── sqm_stream_entry_t.end.hpp │ │ │ │ ├── sqm_stream_entry_t.start.hpp │ │ │ │ ├── sr_cache_expand_macros_evaluator_t.end.hpp │ │ │ │ ├── sr_cache_expand_macros_evaluator_t.start.hpp │ │ │ │ ├── srgtprot_midl_proc_format_string_t.end.hpp │ │ │ │ ├── srgtprot_midl_proc_format_string_t.start.hpp │ │ │ │ ├── srgtprot_midl_type_format_string_t.end.hpp │ │ │ │ ├── srgtprot_midl_type_format_string_t.start.hpp │ │ │ │ ├── ssl_ecckey_blob_t.end.hpp │ │ │ │ ├── ssl_ecckey_blob_t.start.hpp │ │ │ │ ├── ssl_f12_extra_cert_chain_policy_status_t.end.hpp │ │ │ │ ├── ssl_f12_extra_cert_chain_policy_status_t.start.hpp │ │ │ │ ├── ssl_hpkp_header_extra_cert_chain_policy_para_t.end.hpp │ │ │ │ ├── ssl_hpkp_header_extra_cert_chain_policy_para_t.start.hpp │ │ │ │ ├── ssl_key_pin_extra_cert_chain_policy_para_t.end.hpp │ │ │ │ ├── ssl_key_pin_extra_cert_chain_policy_para_t.start.hpp │ │ │ │ ├── ssl_key_pin_extra_cert_chain_policy_status_t.end.hpp │ │ │ │ ├── ssl_key_pin_extra_cert_chain_policy_status_t.start.hpp │ │ │ │ ├── stack_trace_data_t.end.hpp │ │ │ │ ├── stack_trace_data_t.start.hpp │ │ │ │ ├── stack_trace_t.end.hpp │ │ │ │ ├── stack_trace_t.start.hpp │ │ │ │ ├── stack_walk_event_data_t.end.hpp │ │ │ │ ├── stack_walk_event_data_t.start.hpp │ │ │ │ ├── standard_com_client_call_t.end.hpp │ │ │ │ ├── standard_com_client_call_t.start.hpp │ │ │ │ ├── standard_com_server_call_t.end.hpp │ │ │ │ ├── standard_com_server_call_t.start.hpp │ │ │ │ ├── starting_lcn_input_buffer_ex_t.end.hpp │ │ │ │ ├── starting_lcn_input_buffer_ex_t.start.hpp │ │ │ │ ├── starting_lcn_input_buffer_t.end.hpp │ │ │ │ ├── starting_lcn_input_buffer_t.start.hpp │ │ │ │ ├── starting_vcn_input_buffer_t.end.hpp │ │ │ │ ├── starting_vcn_input_buffer_t.start.hpp │ │ │ │ ├── startupinfoa_t.end.hpp │ │ │ │ ├── startupinfoa_t.start.hpp │ │ │ │ ├── startupinfoexa_t.end.hpp │ │ │ │ ├── startupinfoexa_t.start.hpp │ │ │ │ ├── startupinfoexw_t.end.hpp │ │ │ │ ├── startupinfoexw_t.start.hpp │ │ │ │ ├── startupinfow_t.end.hpp │ │ │ │ ├── startupinfow_t.start.hpp │ │ │ │ ├── stat32_t.end.hpp │ │ │ │ ├── stat32_t.start.hpp │ │ │ │ ├── stat32i64_t.end.hpp │ │ │ │ ├── stat32i64_t.start.hpp │ │ │ │ ├── stat64_t.end.hpp │ │ │ │ ├── stat64_t.start.hpp │ │ │ │ ├── stat64i32_t.end.hpp │ │ │ │ ├── stat64i32_t.start.hpp │ │ │ │ ├── stat_t.end.hpp │ │ │ │ ├── stat_t.start.hpp │ │ │ │ ├── std_disc_data_t.end.hpp │ │ │ │ ├── std_disc_data_t.start.hpp │ │ │ │ ├── std_exception_data_t.end.hpp │ │ │ │ ├── std_exception_data_t.start.hpp │ │ │ │ ├── std_type_info_data_t.end.hpp │ │ │ │ ├── std_type_info_data_t.start.hpp │ │ │ │ ├── storage_query_dependent_volume_lev1_entry_t.end.hpp │ │ │ │ ├── storage_query_dependent_volume_lev1_entry_t.start.hpp │ │ │ │ ├── storage_query_dependent_volume_lev2_entry_t.end.hpp │ │ │ │ ├── storage_query_dependent_volume_lev2_entry_t.start.hpp │ │ │ │ ├── storage_query_dependent_volume_request_t.end.hpp │ │ │ │ ├── storage_query_dependent_volume_request_t.start.hpp │ │ │ │ ├── storage_query_dependent_volume_response_t.end.hpp │ │ │ │ ├── storage_query_dependent_volume_response_t.start.hpp │ │ │ │ ├── storage_reserve_area_definition_t.end.hpp │ │ │ │ ├── storage_reserve_area_definition_t.start.hpp │ │ │ │ ├── storage_reserve_area_info_t.end.hpp │ │ │ │ ├── storage_reserve_area_info_t.start.hpp │ │ │ │ ├── stowed_exception_information_header_t.end.hpp │ │ │ │ ├── stowed_exception_information_header_t.start.hpp │ │ │ │ ├── stowed_exception_information_v1_t.end.hpp │ │ │ │ ├── stowed_exception_information_v1_t.start.hpp │ │ │ │ ├── stowed_exception_information_v2_flat_t.end.hpp │ │ │ │ ├── stowed_exception_information_v2_flat_t.start.hpp │ │ │ │ ├── stowed_exception_information_v2_t.end.hpp │ │ │ │ ├── stowed_exception_information_v2_t.start.hpp │ │ │ │ ├── stream_data_reader_writer_t.end.hpp │ │ │ │ ├── stream_data_reader_writer_t.start.hpp │ │ │ │ ├── stream_extent_entry_t.end.hpp │ │ │ │ ├── stream_extent_entry_t.start.hpp │ │ │ │ ├── stream_information_entry_t.end.hpp │ │ │ │ ├── stream_information_entry_t.start.hpp │ │ │ │ ├── stream_layout_entry_t.end.hpp │ │ │ │ ├── stream_layout_entry_t.start.hpp │ │ │ │ ├── streams_associate_id_input_buffer_t.end.hpp │ │ │ │ ├── streams_associate_id_input_buffer_t.start.hpp │ │ │ │ ├── streams_query_id_output_buffer_t.end.hpp │ │ │ │ ├── streams_query_id_output_buffer_t.start.hpp │ │ │ │ ├── streams_query_parameters_output_buffer_t.end.hpp │ │ │ │ ├── streams_query_parameters_output_buffer_t.start.hpp │ │ │ │ ├── string_cache_t.end.hpp │ │ │ │ ├── string_cache_t.start.hpp │ │ │ │ ├── string_opaque_t.end.hpp │ │ │ │ ├── string_opaque_t.start.hpp │ │ │ │ ├── supported_os_info_t.end.hpp │ │ │ │ ├── supported_os_info_t.start.hpp │ │ │ │ ├── suuid_hash_node_t.end.hpp │ │ │ │ ├── suuid_hash_node_t.start.hpp │ │ │ │ ├── sync_client_call_retry_context_t.end.hpp │ │ │ │ ├── sync_client_call_retry_context_t.start.hpp │ │ │ │ ├── sync_server_call_t.end.hpp │ │ │ │ ├── sync_server_call_t.start.hpp │ │ │ │ ├── syntax_dispatch_table_t.end.hpp │ │ │ │ ├── syntax_dispatch_table_t.start.hpp │ │ │ │ ├── sysdbg_bus_data_t.end.hpp │ │ │ │ ├── sysdbg_bus_data_t.start.hpp │ │ │ │ ├── sysdbg_control_space_t.end.hpp │ │ │ │ ├── sysdbg_control_space_t.start.hpp │ │ │ │ ├── sysdbg_io_space_t.end.hpp │ │ │ │ ├── sysdbg_io_space_t.start.hpp │ │ │ │ ├── sysdbg_kd_pull_remote_file_t.end.hpp │ │ │ │ ├── sysdbg_kd_pull_remote_file_t.start.hpp │ │ │ │ ├── sysdbg_livedump_control_addpages_t.end.hpp │ │ │ │ ├── sysdbg_livedump_control_addpages_t.start.hpp │ │ │ │ ├── sysdbg_livedump_control_flags_t.end.hpp │ │ │ │ ├── sysdbg_livedump_control_flags_t.start.hpp │ │ │ │ ├── sysdbg_livedump_control_t.end.hpp │ │ │ │ ├── sysdbg_livedump_control_t.start.hpp │ │ │ │ ├── sysdbg_msr_t.end.hpp │ │ │ │ ├── sysdbg_msr_t.start.hpp │ │ │ │ ├── sysdbg_physical_t.end.hpp │ │ │ │ ├── sysdbg_physical_t.start.hpp │ │ │ │ ├── sysdbg_triage_dump_t.end.hpp │ │ │ │ ├── sysdbg_triage_dump_t.start.hpp │ │ │ │ ├── sysdbg_virtual_t.end.hpp │ │ │ │ ├── sysdbg_virtual_t.start.hpp │ │ │ │ ├── system_access_filter_ace_t.end.hpp │ │ │ │ ├── system_access_filter_ace_t.start.hpp │ │ │ │ ├── system_acpi_audit_information_t.end.hpp │ │ │ │ ├── system_acpi_audit_information_t.start.hpp │ │ │ │ ├── system_activity_moderation_info_t.end.hpp │ │ │ │ ├── system_activity_moderation_info_t.start.hpp │ │ │ │ ├── system_activity_moderation_user_settings_t.end.hpp │ │ │ │ ├── system_activity_moderation_user_settings_t.start.hpp │ │ │ │ ├── system_alarm_ace_t.end.hpp │ │ │ │ ├── system_alarm_ace_t.start.hpp │ │ │ │ ├── system_alarm_callback_ace_t.end.hpp │ │ │ │ ├── system_alarm_callback_ace_t.start.hpp │ │ │ │ ├── system_alarm_callback_object_ace_t.end.hpp │ │ │ │ ├── system_alarm_callback_object_ace_t.start.hpp │ │ │ │ ├── system_alarm_object_ace_t.end.hpp │ │ │ │ ├── system_alarm_object_ace_t.start.hpp │ │ │ │ ├── system_audit_ace_t.end.hpp │ │ │ │ ├── system_audit_ace_t.start.hpp │ │ │ │ ├── system_audit_callback_ace_t.end.hpp │ │ │ │ ├── system_audit_callback_ace_t.start.hpp │ │ │ │ ├── system_audit_callback_object_ace_t.end.hpp │ │ │ │ ├── system_audit_callback_object_ace_t.start.hpp │ │ │ │ ├── system_audit_object_ace_t.end.hpp │ │ │ │ ├── system_audit_object_ace_t.start.hpp │ │ │ │ ├── system_basic_information_t.end.hpp │ │ │ │ ├── system_basic_information_t.start.hpp │ │ │ │ ├── system_basic_performance_information_t.end.hpp │ │ │ │ ├── system_basic_performance_information_t.start.hpp │ │ │ │ ├── system_battery_state_t.end.hpp │ │ │ │ ├── system_battery_state_t.start.hpp │ │ │ │ ├── system_bigpool_entry_t.end.hpp │ │ │ │ ├── system_bigpool_entry_t.start.hpp │ │ │ │ ├── system_bigpool_information_t.end.hpp │ │ │ │ ├── system_bigpool_information_t.start.hpp │ │ │ │ ├── system_block_header_t.end.hpp │ │ │ │ ├── system_block_header_t.start.hpp │ │ │ │ ├── system_boot_environment_information_t.end.hpp │ │ │ │ ├── system_boot_environment_information_t.start.hpp │ │ │ │ ├── system_boot_environment_information_v1_t.end.hpp │ │ │ │ ├── system_boot_environment_information_v1_t.start.hpp │ │ │ │ ├── system_boot_graphics_information_t.end.hpp │ │ │ │ ├── system_boot_graphics_information_t.start.hpp │ │ │ │ ├── system_boot_logo_information_t.end.hpp │ │ │ │ ├── system_boot_logo_information_t.start.hpp │ │ │ │ ├── system_build_version_information_t.end.hpp │ │ │ │ ├── system_build_version_information_t.start.hpp │ │ │ │ ├── system_call_count_information_t.end.hpp │ │ │ │ ├── system_call_count_information_t.start.hpp │ │ │ │ ├── system_call_time_information_t.end.hpp │ │ │ │ ├── system_call_time_information_t.start.hpp │ │ │ │ ├── system_codeintegrity_certificate_information_t.end.hpp │ │ │ │ ├── system_codeintegrity_certificate_information_t.start.hpp │ │ │ │ ├── system_codeintegrity_information_t.end.hpp │ │ │ │ ├── system_codeintegrity_information_t.start.hpp │ │ │ │ ├── system_codeintegrity_unlock_information_t.end.hpp │ │ │ │ ├── system_codeintegrity_unlock_information_t.start.hpp │ │ │ │ ├── system_codeintegritypolicy_information_t.end.hpp │ │ │ │ ├── system_codeintegritypolicy_information_t.start.hpp │ │ │ │ ├── system_codeintegrityverification_information_t.end.hpp │ │ │ │ ├── system_codeintegrityverification_information_t.start.hpp │ │ │ │ ├── system_console_information_t.end.hpp │ │ │ │ ├── system_console_information_t.start.hpp │ │ │ │ ├── system_context_switch_information_t.end.hpp │ │ │ │ ├── system_context_switch_information_t.start.hpp │ │ │ │ ├── system_cpu_set_information_t.end.hpp │ │ │ │ ├── system_cpu_set_information_t.start.hpp │ │ │ │ ├── system_cpu_set_tag_information_t.end.hpp │ │ │ │ ├── system_cpu_set_tag_information_t.start.hpp │ │ │ │ ├── system_crash_dump_state_information_t.end.hpp │ │ │ │ ├── system_crash_dump_state_information_t.start.hpp │ │ │ │ ├── system_device_data_information_t.end.hpp │ │ │ │ ├── system_device_data_information_t.start.hpp │ │ │ │ ├── system_device_information_t.end.hpp │ │ │ │ ├── system_device_information_t.start.hpp │ │ │ │ ├── system_dif_volatile_information_t.end.hpp │ │ │ │ ├── system_dif_volatile_information_t.start.hpp │ │ │ │ ├── system_dma_guard_policy_information_t.end.hpp │ │ │ │ ├── system_dma_guard_policy_information_t.start.hpp │ │ │ │ ├── system_dma_protection_information_t.end.hpp │ │ │ │ ├── system_dma_protection_information_t.start.hpp │ │ │ │ ├── system_dpc_behavior_information_t.end.hpp │ │ │ │ ├── system_dpc_behavior_information_t.start.hpp │ │ │ │ ├── system_dpc_watchdog_configuration_information_t.end.hpp │ │ │ │ ├── system_dpc_watchdog_configuration_information_t.start.hpp │ │ │ │ ├── system_dpc_watchdog_configuration_information_v2_t.end.hpp │ │ │ │ ├── system_dpc_watchdog_configuration_information_v2_t.start.hpp │ │ │ │ ├── system_elam_certificate_information_t.end.hpp │ │ │ │ ├── system_elam_certificate_information_t.start.hpp │ │ │ │ ├── system_enclave_launch_control_information_t.end.hpp │ │ │ │ ├── system_enclave_launch_control_information_t.start.hpp │ │ │ │ ├── system_energy_estimation_config_information_t.end.hpp │ │ │ │ ├── system_energy_estimation_config_information_t.start.hpp │ │ │ │ ├── system_entropy_timing_information_t.end.hpp │ │ │ │ ├── system_entropy_timing_information_t.start.hpp │ │ │ │ ├── system_error_port_timeouts_t.end.hpp │ │ │ │ ├── system_error_port_timeouts_t.start.hpp │ │ │ │ ├── system_exception_information_t.end.hpp │ │ │ │ ├── system_exception_information_t.start.hpp │ │ │ │ ├── system_extended_thread_information_t.end.hpp │ │ │ │ ├── system_extended_thread_information_t.start.hpp │ │ │ │ ├── system_feature_configuration_information_t.end.hpp │ │ │ │ ├── system_feature_configuration_information_t.start.hpp │ │ │ │ ├── system_feature_configuration_query_t.end.hpp │ │ │ │ ├── system_feature_configuration_query_t.start.hpp │ │ │ │ ├── system_feature_configuration_sections_information_entry_t.end.hpp │ │ │ │ ├── system_feature_configuration_sections_information_entry_t.start.hpp │ │ │ │ ├── system_feature_configuration_sections_information_t.end.hpp │ │ │ │ ├── system_feature_configuration_sections_information_t.start.hpp │ │ │ │ ├── system_feature_configuration_sections_request_t.end.hpp │ │ │ │ ├── system_feature_configuration_sections_request_t.start.hpp │ │ │ │ ├── system_feature_configuration_update_t.end.hpp │ │ │ │ ├── system_feature_configuration_update_t.start.hpp │ │ │ │ ├── system_feature_usage_subscription_update_entry_t.end.hpp │ │ │ │ ├── system_feature_usage_subscription_update_entry_t.start.hpp │ │ │ │ ├── system_feature_usage_subscription_update_t.end.hpp │ │ │ │ ├── system_feature_usage_subscription_update_t.start.hpp │ │ │ │ ├── system_filecache_information_t.end.hpp │ │ │ │ ├── system_filecache_information_t.start.hpp │ │ │ │ ├── system_firmware_partition_information_t.end.hpp │ │ │ │ ├── system_firmware_partition_information_t.start.hpp │ │ │ │ ├── system_firmware_ramdisk_information_t.end.hpp │ │ │ │ ├── system_firmware_ramdisk_information_t.start.hpp │ │ │ │ ├── system_firmware_table_handler_t.end.hpp │ │ │ │ ├── system_firmware_table_handler_t.start.hpp │ │ │ │ ├── system_firmware_table_information_t.end.hpp │ │ │ │ ├── system_firmware_table_information_t.start.hpp │ │ │ │ ├── system_flags_information_t.end.hpp │ │ │ │ ├── system_flags_information_t.start.hpp │ │ │ │ ├── system_flush_information_t.end.hpp │ │ │ │ ├── system_flush_information_t.start.hpp │ │ │ │ ├── system_gdi_driver_information_t.end.hpp │ │ │ │ ├── system_gdi_driver_information_t.start.hpp │ │ │ │ ├── system_handle_basic_raii_wrapper_t.end.hpp │ │ │ │ ├── system_handle_basic_raii_wrapper_t.start.hpp │ │ │ │ ├── system_handle_information_ex_t.end.hpp │ │ │ │ ├── system_handle_information_ex_t.start.hpp │ │ │ │ ├── system_handle_information_t.end.hpp │ │ │ │ ├── system_handle_information_t.start.hpp │ │ │ │ ├── system_handle_table_entry_info_ex_t.end.hpp │ │ │ │ ├── system_handle_table_entry_info_ex_t.start.hpp │ │ │ │ ├── system_handle_table_entry_info_t.end.hpp │ │ │ │ ├── system_handle_table_entry_info_t.start.hpp │ │ │ │ ├── system_hiberfile_information_t.end.hpp │ │ │ │ ├── system_hiberfile_information_t.start.hpp │ │ │ │ ├── system_hot_patch_registry_value_t.end.hpp │ │ │ │ ├── system_hot_patch_registry_value_t.start.hpp │ │ │ │ ├── system_hypervisor_detail_information_t.end.hpp │ │ │ │ ├── system_hypervisor_detail_information_t.start.hpp │ │ │ │ ├── system_hypervisor_processor_count_information_t.end.hpp │ │ │ │ ├── system_hypervisor_processor_count_information_t.start.hpp │ │ │ │ ├── system_hypervisor_query_information_t.end.hpp │ │ │ │ ├── system_hypervisor_query_information_t.start.hpp │ │ │ │ ├── system_hypervisor_shared_page_information_t.end.hpp │ │ │ │ ├── system_hypervisor_shared_page_information_t.start.hpp │ │ │ │ ├── system_image_file_execution_options_information_t.end.hpp │ │ │ │ ├── system_image_file_execution_options_information_t.start.hpp │ │ │ │ ├── system_info_t.end.hpp │ │ │ │ ├── system_info_t.start.hpp │ │ │ │ ├── system_interrupt_cpu_set_information_t.end.hpp │ │ │ │ ├── system_interrupt_cpu_set_information_t.start.hpp │ │ │ │ ├── system_interrupt_information_t.end.hpp │ │ │ │ ├── system_interrupt_information_t.start.hpp │ │ │ │ ├── system_interrupt_steering_information_input_t.end.hpp │ │ │ │ ├── system_interrupt_steering_information_input_t.start.hpp │ │ │ │ ├── system_interrupt_steering_information_output_t.end.hpp │ │ │ │ ├── system_interrupt_steering_information_output_t.start.hpp │ │ │ │ ├── system_isolated_user_mode_information_t.end.hpp │ │ │ │ ├── system_isolated_user_mode_information_t.start.hpp │ │ │ │ ├── system_kernel_debugger_flags_t.end.hpp │ │ │ │ ├── system_kernel_debugger_flags_t.start.hpp │ │ │ │ ├── system_kernel_debugger_information_ex_t.end.hpp │ │ │ │ ├── system_kernel_debugger_information_ex_t.start.hpp │ │ │ │ ├── system_kernel_debugger_information_t.end.hpp │ │ │ │ ├── system_kernel_debugger_information_t.start.hpp │ │ │ │ ├── system_kernel_va_shadow_information_t.end.hpp │ │ │ │ ├── system_kernel_va_shadow_information_t.start.hpp │ │ │ │ ├── system_leap_second_information_t.end.hpp │ │ │ │ ├── system_leap_second_information_t.start.hpp │ │ │ │ ├── system_legacy_driver_information_t.end.hpp │ │ │ │ ├── system_legacy_driver_information_t.start.hpp │ │ │ │ ├── system_logical_processor_information_t.end.hpp │ │ │ │ ├── system_logical_processor_information_t.start.hpp │ │ │ │ ├── system_lookaside_information_t.end.hpp │ │ │ │ ├── system_lookaside_information_t.start.hpp │ │ │ │ ├── system_low_priority_io_information_t.end.hpp │ │ │ │ ├── system_low_priority_io_information_t.start.hpp │ │ │ │ ├── system_mandatory_label_ace_t.end.hpp │ │ │ │ ├── system_mandatory_label_ace_t.start.hpp │ │ │ │ ├── system_manufacturing_information_t.end.hpp │ │ │ │ ├── system_manufacturing_information_t.start.hpp │ │ │ │ ├── system_memory_channel_information_t.end.hpp │ │ │ │ ├── system_memory_channel_information_t.start.hpp │ │ │ │ ├── system_memory_information_t.end.hpp │ │ │ │ ├── system_memory_information_t.start.hpp │ │ │ │ ├── system_memory_list_information_t.end.hpp │ │ │ │ ├── system_memory_list_information_t.start.hpp │ │ │ │ ├── system_memory_topology_information_t.end.hpp │ │ │ │ ├── system_memory_topology_information_t.start.hpp │ │ │ │ ├── system_memory_usage_information_t.end.hpp │ │ │ │ ├── system_memory_usage_information_t.start.hpp │ │ │ │ ├── system_net_rate_control_callback_table_t.end.hpp │ │ │ │ ├── system_net_rate_control_callback_table_t.start.hpp │ │ │ │ ├── system_net_rate_control_context_header_t.end.hpp │ │ │ │ ├── system_net_rate_control_context_header_t.start.hpp │ │ │ │ ├── system_net_rate_control_quota_context_t.end.hpp │ │ │ │ ├── system_net_rate_control_quota_context_t.start.hpp │ │ │ │ ├── system_net_rate_control_set_context_t.end.hpp │ │ │ │ ├── system_net_rate_control_set_context_t.start.hpp │ │ │ │ ├── system_numa_information_t.end.hpp │ │ │ │ ├── system_numa_information_t.start.hpp │ │ │ │ ├── system_numa_proximity_map_t.end.hpp │ │ │ │ ├── system_numa_proximity_map_t.start.hpp │ │ │ │ ├── system_object_information_t.end.hpp │ │ │ │ ├── system_object_information_t.start.hpp │ │ │ │ ├── system_objecttype_information_t.end.hpp │ │ │ │ ├── system_objecttype_information_t.start.hpp │ │ │ │ ├── system_page_entry_t.end.hpp │ │ │ │ ├── system_page_entry_t.start.hpp │ │ │ │ ├── system_pagefile_information_ex_t.end.hpp │ │ │ │ ├── system_pagefile_information_ex_t.start.hpp │ │ │ │ ├── system_pagefile_information_t.end.hpp │ │ │ │ ├── system_pagefile_information_t.start.hpp │ │ │ │ ├── system_performance_information_t.end.hpp │ │ │ │ ├── system_performance_information_t.start.hpp │ │ │ │ ├── system_physical_memory_information_t.end.hpp │ │ │ │ ├── system_physical_memory_information_t.start.hpp │ │ │ │ ├── system_platform_binary_information_t.end.hpp │ │ │ │ ├── system_platform_binary_information_t.start.hpp │ │ │ │ ├── system_policy_information_t.end.hpp │ │ │ │ ├── system_policy_information_t.start.hpp │ │ │ │ ├── system_pool_entry_t.end.hpp │ │ │ │ ├── system_pool_entry_t.start.hpp │ │ │ │ ├── system_pool_information_t.end.hpp │ │ │ │ ├── system_pool_information_t.start.hpp │ │ │ │ ├── system_pool_limit_info_t.end.hpp │ │ │ │ ├── system_pool_limit_info_t.start.hpp │ │ │ │ ├── system_pool_limit_information_t.end.hpp │ │ │ │ ├── system_pool_limit_information_t.start.hpp │ │ │ │ ├── system_pool_limit_mem_info_t.end.hpp │ │ │ │ ├── system_pool_limit_mem_info_t.start.hpp │ │ │ │ ├── system_pool_zeroing_information_t.end.hpp │ │ │ │ ├── system_pool_zeroing_information_t.start.hpp │ │ │ │ ├── system_pooltag_information_t.end.hpp │ │ │ │ ├── system_pooltag_information_t.start.hpp │ │ │ │ ├── system_pooltag_t.end.hpp │ │ │ │ ├── system_pooltag_t.start.hpp │ │ │ │ ├── system_portable_workspace_efi_launcher_information_t.end.hpp │ │ │ │ ├── system_portable_workspace_efi_launcher_information_t.start.hpp │ │ │ │ ├── system_power_information_t.end.hpp │ │ │ │ ├── system_power_information_t.start.hpp │ │ │ │ ├── system_power_logging_entry_t.end.hpp │ │ │ │ ├── system_power_logging_entry_t.start.hpp │ │ │ │ ├── system_power_state_disable_reason_t.end.hpp │ │ │ │ ├── system_power_state_disable_reason_t.start.hpp │ │ │ │ ├── system_power_status_t.end.hpp │ │ │ │ ├── system_power_status_t.start.hpp │ │ │ │ ├── system_prefetch_options_t.end.hpp │ │ │ │ ├── system_prefetch_options_t.start.hpp │ │ │ │ ├── system_prefetch_patch_information_t.end.hpp │ │ │ │ ├── system_prefetch_patch_information_t.start.hpp │ │ │ │ ├── system_prefetch_stats_t.end.hpp │ │ │ │ ├── system_prefetch_stats_t.start.hpp │ │ │ │ ├── system_process_id_information_t.end.hpp │ │ │ │ ├── system_process_id_information_t.start.hpp │ │ │ │ ├── system_process_information_extension_t.end.hpp │ │ │ │ ├── system_process_information_extension_t.start.hpp │ │ │ │ ├── system_process_information_t.end.hpp │ │ │ │ ├── system_process_information_t.start.hpp │ │ │ │ ├── system_process_trust_label_ace_t.end.hpp │ │ │ │ ├── system_process_trust_label_ace_t.start.hpp │ │ │ │ ├── system_processor_cycle_stats_information_t.end.hpp │ │ │ │ ├── system_processor_cycle_stats_information_t.start.hpp │ │ │ │ ├── system_processor_cycle_time_information_t.end.hpp │ │ │ │ ├── system_processor_cycle_time_information_t.start.hpp │ │ │ │ ├── system_processor_features_information_t.end.hpp │ │ │ │ ├── system_processor_features_information_t.start.hpp │ │ │ │ ├── system_processor_idle_cycle_time_information_t.end.hpp │ │ │ │ ├── system_processor_idle_cycle_time_information_t.start.hpp │ │ │ │ ├── system_processor_idle_information_t.end.hpp │ │ │ │ ├── system_processor_idle_information_t.start.hpp │ │ │ │ ├── system_processor_information_t.end.hpp │ │ │ │ ├── system_processor_information_t.start.hpp │ │ │ │ ├── system_processor_microcode_update_information_t.end.hpp │ │ │ │ ├── system_processor_microcode_update_information_t.start.hpp │ │ │ │ ├── system_processor_performance_distribution_t.end.hpp │ │ │ │ ├── system_processor_performance_distribution_t.start.hpp │ │ │ │ ├── system_processor_performance_hitcount_t.end.hpp │ │ │ │ ├── system_processor_performance_hitcount_t.start.hpp │ │ │ │ ├── system_processor_performance_information_ex_t.end.hpp │ │ │ │ ├── system_processor_performance_information_ex_t.start.hpp │ │ │ │ ├── system_processor_performance_information_t.end.hpp │ │ │ │ ├── system_processor_performance_information_t.start.hpp │ │ │ │ ├── system_processor_performance_state_distribution_t.end.hpp │ │ │ │ ├── system_processor_performance_state_distribution_t.start.hpp │ │ │ │ ├── system_processor_policy_information_t.end.hpp │ │ │ │ ├── system_processor_policy_information_t.start.hpp │ │ │ │ ├── system_processor_power_information_t.end.hpp │ │ │ │ ├── system_processor_power_information_t.start.hpp │ │ │ │ ├── system_processor_profile_control_area_t.end.hpp │ │ │ │ ├── system_processor_profile_control_area_t.start.hpp │ │ │ │ ├── system_query_performance_counter_information_t.end.hpp │ │ │ │ ├── system_query_performance_counter_information_t.start.hpp │ │ │ │ ├── system_query_time_adjust_information_precise_t.end.hpp │ │ │ │ ├── system_query_time_adjust_information_precise_t.start.hpp │ │ │ │ ├── system_query_time_adjust_information_t.end.hpp │ │ │ │ ├── system_query_time_adjust_information_t.start.hpp │ │ │ │ ├── system_ref_trace_information_t.end.hpp │ │ │ │ ├── system_ref_trace_information_t.start.hpp │ │ │ │ ├── system_registry_append_string_parameters_t.end.hpp │ │ │ │ ├── system_registry_append_string_parameters_t.start.hpp │ │ │ │ ├── system_registry_quota_information_t.end.hpp │ │ │ │ ├── system_registry_quota_information_t.start.hpp │ │ │ │ ├── system_resource_attribute_ace_t.end.hpp │ │ │ │ ├── system_resource_attribute_ace_t.start.hpp │ │ │ │ ├── system_root_silo_information_t.end.hpp │ │ │ │ ├── system_root_silo_information_t.start.hpp │ │ │ │ ├── system_scoped_policy_id_ace_t.end.hpp │ │ │ │ ├── system_scoped_policy_id_ace_t.start.hpp │ │ │ │ ├── system_secure_kernel_hyperguard_profile_information_t.end.hpp │ │ │ │ ├── system_secure_kernel_hyperguard_profile_information_t.start.hpp │ │ │ │ ├── system_secureboot_information_t.end.hpp │ │ │ │ ├── system_secureboot_information_t.start.hpp │ │ │ │ ├── system_secureboot_platform_manifest_information_t.end.hpp │ │ │ │ ├── system_secureboot_platform_manifest_information_t.start.hpp │ │ │ │ ├── system_secureboot_policy_full_information_t.end.hpp │ │ │ │ ├── system_secureboot_policy_full_information_t.start.hpp │ │ │ │ ├── system_secureboot_policy_information_t.end.hpp │ │ │ │ ├── system_secureboot_policy_information_t.start.hpp │ │ │ │ ├── system_security_model_information_t.end.hpp │ │ │ │ ├── system_security_model_information_t.start.hpp │ │ │ │ ├── system_session_bigpool_information_t.end.hpp │ │ │ │ ├── system_session_bigpool_information_t.start.hpp │ │ │ │ ├── system_session_mapped_view_information_t.end.hpp │ │ │ │ ├── system_session_mapped_view_information_t.start.hpp │ │ │ │ ├── system_session_pooltag_information_t.end.hpp │ │ │ │ ├── system_session_pooltag_information_t.start.hpp │ │ │ │ ├── system_session_process_information_t.end.hpp │ │ │ │ ├── system_session_process_information_t.start.hpp │ │ │ │ ├── system_set_time_adjust_information_precise_t.end.hpp │ │ │ │ ├── system_set_time_adjust_information_precise_t.start.hpp │ │ │ │ ├── system_set_time_adjust_information_t.end.hpp │ │ │ │ ├── system_set_time_adjust_information_t.start.hpp │ │ │ │ ├── system_shadow_stack_information_t.end.hpp │ │ │ │ ├── system_shadow_stack_information_t.start.hpp │ │ │ │ ├── system_single_module_information_t.end.hpp │ │ │ │ ├── system_single_module_information_t.start.hpp │ │ │ │ ├── system_single_processor_relationship_information_request_t.end.hpp │ │ │ │ ├── system_single_processor_relationship_information_request_t.start.hpp │ │ │ │ ├── system_special_pool_information_t.end.hpp │ │ │ │ ├── system_special_pool_information_t.start.hpp │ │ │ │ ├── system_speculation_control_information_t.end.hpp │ │ │ │ ├── system_speculation_control_information_t.start.hpp │ │ │ │ ├── system_supported_processor_architectures_information_t.end.hpp │ │ │ │ ├── system_supported_processor_architectures_information_t.start.hpp │ │ │ │ ├── system_system_disk_information_t.end.hpp │ │ │ │ ├── system_system_disk_information_t.start.hpp │ │ │ │ ├── system_system_partition_information_t.end.hpp │ │ │ │ ├── system_system_partition_information_t.start.hpp │ │ │ │ ├── system_thread_cid_priority_information_t.end.hpp │ │ │ │ ├── system_thread_cid_priority_information_t.start.hpp │ │ │ │ ├── system_thread_information_t.end.hpp │ │ │ │ ├── system_thread_information_t.start.hpp │ │ │ │ ├── system_timeofday_information_t.end.hpp │ │ │ │ ├── system_timeofday_information_t.start.hpp │ │ │ │ ├── system_tpm_information_t.end.hpp │ │ │ │ ├── system_tpm_information_t.start.hpp │ │ │ │ ├── system_trace_header_t.end.hpp │ │ │ │ ├── system_trace_header_t.start.hpp │ │ │ │ ├── system_va_list_information_t.end.hpp │ │ │ │ ├── system_va_list_information_t.start.hpp │ │ │ │ ├── system_vdm_instemul_info_t.end.hpp │ │ │ │ ├── system_vdm_instemul_info_t.start.hpp │ │ │ │ ├── system_verifier_cancellation_information_t.end.hpp │ │ │ │ ├── system_verifier_cancellation_information_t.start.hpp │ │ │ │ ├── system_verifier_counters_information_t.end.hpp │ │ │ │ ├── system_verifier_counters_information_t.start.hpp │ │ │ │ ├── system_verifier_faults_information_t.end.hpp │ │ │ │ ├── system_verifier_faults_information_t.start.hpp │ │ │ │ ├── system_verifier_information_ex_t.end.hpp │ │ │ │ ├── system_verifier_information_ex_t.start.hpp │ │ │ │ ├── system_verifier_information_t.end.hpp │ │ │ │ ├── system_verifier_information_t.start.hpp │ │ │ │ ├── system_verifier_issue_t.end.hpp │ │ │ │ ├── system_verifier_issue_t.start.hpp │ │ │ │ ├── system_verifier_triage_information_t.end.hpp │ │ │ │ ├── system_verifier_triage_information_t.start.hpp │ │ │ │ ├── system_vhd_boot_information_t.end.hpp │ │ │ │ ├── system_vhd_boot_information_t.start.hpp │ │ │ │ ├── system_vsm_protection_information_t.end.hpp │ │ │ │ ├── system_vsm_protection_information_t.start.hpp │ │ │ │ ├── system_watchdog_timer_information_t.end.hpp │ │ │ │ ├── system_watchdog_timer_information_t.start.hpp │ │ │ │ ├── system_workingset_entry_t.end.hpp │ │ │ │ ├── system_workingset_entry_t.start.hpp │ │ │ │ ├── system_workload_allowed_cpu_set_information_t.end.hpp │ │ │ │ ├── system_workload_allowed_cpu_set_information_t.start.hpp │ │ │ │ ├── system_write_constraint_information_t.end.hpp │ │ │ │ ├── system_write_constraint_information_t.start.hpp │ │ │ │ ├── system_xfg_failure_information_t.end.hpp │ │ │ │ ├── system_xfg_failure_information_t.start.hpp │ │ │ │ ├── systemtime_t.end.hpp │ │ │ │ ├── systemtime_t.start.hpp │ │ │ │ ├── t2_set_parameters_v0_t.end.hpp │ │ │ │ ├── t2_set_parameters_v0_t.start.hpp │ │ │ │ ├── t_rpc_verifier_settings_t.end.hpp │ │ │ │ ├── t_rpc_verifier_settings_t.start.hpp │ │ │ │ ├── tagpropertykey_t.end.hpp │ │ │ │ ├── tagpropertykey_t.start.hpp │ │ │ │ ├── tape_create_partition_t.end.hpp │ │ │ │ ├── tape_create_partition_t.start.hpp │ │ │ │ ├── tape_erase_t.end.hpp │ │ │ │ ├── tape_erase_t.start.hpp │ │ │ │ ├── tape_get_drive_parameters_t.end.hpp │ │ │ │ ├── tape_get_drive_parameters_t.start.hpp │ │ │ │ ├── tape_get_media_parameters_t.end.hpp │ │ │ │ ├── tape_get_media_parameters_t.start.hpp │ │ │ │ ├── tape_get_position_t.end.hpp │ │ │ │ ├── tape_get_position_t.start.hpp │ │ │ │ ├── tape_prepare_t.end.hpp │ │ │ │ ├── tape_prepare_t.start.hpp │ │ │ │ ├── tape_set_drive_parameters_t.end.hpp │ │ │ │ ├── tape_set_drive_parameters_t.start.hpp │ │ │ │ ├── tape_set_media_parameters_t.end.hpp │ │ │ │ ├── tape_set_media_parameters_t.start.hpp │ │ │ │ ├── tape_set_position_t.end.hpp │ │ │ │ ├── tape_set_position_t.start.hpp │ │ │ │ ├── tape_wmi_operations_t.end.hpp │ │ │ │ ├── tape_wmi_operations_t.start.hpp │ │ │ │ ├── tape_write_marks_t.end.hpp │ │ │ │ ├── tape_write_marks_t.start.hpp │ │ │ │ ├── teb_active_frame_context_ex_t.end.hpp │ │ │ │ ├── teb_active_frame_context_ex_t.start.hpp │ │ │ │ ├── teb_active_frame_ex_t.end.hpp │ │ │ │ ├── teb_active_frame_ex_t.start.hpp │ │ │ │ ├── thrd_t.end.hpp │ │ │ │ ├── thrd_t.start.hpp │ │ │ │ ├── thread_basic_information_t.end.hpp │ │ │ │ ├── thread_basic_information_t.start.hpp │ │ │ │ ├── thread_call_object_cache_t.end.hpp │ │ │ │ ├── thread_call_object_cache_t.start.hpp │ │ │ │ ├── thread_cycle_time_information_t.end.hpp │ │ │ │ ├── thread_cycle_time_information_t.start.hpp │ │ │ │ ├── thread_last_syscall_information_t.end.hpp │ │ │ │ ├── thread_last_syscall_information_t.start.hpp │ │ │ │ ├── thread_name_information_t.end.hpp │ │ │ │ ├── thread_name_information_t.start.hpp │ │ │ │ ├── thread_power_throttling_state_t.end.hpp │ │ │ │ ├── thread_power_throttling_state_t.start.hpp │ │ │ │ ├── thread_profiling_information_t.end.hpp │ │ │ │ ├── thread_profiling_information_t.start.hpp │ │ │ │ ├── thread_t.end.hpp │ │ │ │ ├── thread_t.start.hpp │ │ │ │ ├── thread_teb_information_t.end.hpp │ │ │ │ ├── thread_teb_information_t.start.hpp │ │ │ │ ├── thread_tls_information_t.end.hpp │ │ │ │ ├── thread_tls_information_t.start.hpp │ │ │ │ ├── thread_type_specific_routines_t.end.hpp │ │ │ │ ├── thread_type_specific_routines_t.start.hpp │ │ │ │ ├── thread_ums_information_t.end.hpp │ │ │ │ ├── thread_ums_information_t.start.hpp │ │ │ │ ├── threadlocaleinfostruct_t.end.hpp │ │ │ │ ├── threadlocaleinfostruct_t.start.hpp │ │ │ │ ├── threadmbcinfostruct_t.end.hpp │ │ │ │ ├── threadmbcinfostruct_t.start.hpp │ │ │ │ ├── tick_count_timer_t.end.hpp │ │ │ │ ├── tick_count_timer_t.start.hpp │ │ │ │ ├── time_dynamic_zone_information_t.end.hpp │ │ │ │ ├── time_dynamic_zone_information_t.start.hpp │ │ │ │ ├── time_zone_information_t.end.hpp │ │ │ │ ├── time_zone_information_t.start.hpp │ │ │ │ ├── timer_basic_information_t.end.hpp │ │ │ │ ├── timer_basic_information_t.start.hpp │ │ │ │ ├── timer_set_coalescable_timer_info_t.end.hpp │ │ │ │ ├── timer_set_coalescable_timer_info_t.start.hpp │ │ │ │ ├── timespec32_t.end.hpp │ │ │ │ ├── timespec32_t.start.hpp │ │ │ │ ├── timespec64_t.end.hpp │ │ │ │ ├── timespec64_t.start.hpp │ │ │ │ ├── timespec_t.end.hpp │ │ │ │ ├── timespec_t.start.hpp │ │ │ │ ├── tm_t.end.hpp │ │ │ │ ├── tm_t.start.hpp │ │ │ │ ├── token_appcontainer_information_t.end.hpp │ │ │ │ ├── token_appcontainer_information_t.start.hpp │ │ │ │ ├── token_bno_isolation_information_t.end.hpp │ │ │ │ ├── token_bno_isolation_information_t.start.hpp │ │ │ │ ├── token_default_dacl_t.end.hpp │ │ │ │ ├── token_default_dacl_t.start.hpp │ │ │ │ ├── token_device_claims_t.end.hpp │ │ │ │ ├── token_device_claims_t.start.hpp │ │ │ │ ├── token_elevation_t.end.hpp │ │ │ │ ├── token_elevation_t.start.hpp │ │ │ │ ├── token_groups_and_privileges_t.end.hpp │ │ │ │ ├── token_groups_and_privileges_t.start.hpp │ │ │ │ ├── token_linked_token_t.end.hpp │ │ │ │ ├── token_linked_token_t.start.hpp │ │ │ │ ├── token_mandatory_label_t.end.hpp │ │ │ │ ├── token_mandatory_label_t.start.hpp │ │ │ │ ├── token_origin_t.end.hpp │ │ │ │ ├── token_origin_t.start.hpp │ │ │ │ ├── token_owner_t.end.hpp │ │ │ │ ├── token_owner_t.start.hpp │ │ │ │ ├── token_primary_group_t.end.hpp │ │ │ │ ├── token_primary_group_t.start.hpp │ │ │ │ ├── token_security_attribute_fqbn_value_t.end.hpp │ │ │ │ ├── token_security_attribute_fqbn_value_t.start.hpp │ │ │ │ ├── token_security_attribute_octet_string_value_t.end.hpp │ │ │ │ ├── token_security_attribute_octet_string_value_t.start.hpp │ │ │ │ ├── token_security_attribute_relative_v1_t.end.hpp │ │ │ │ ├── token_security_attribute_relative_v1_t.start.hpp │ │ │ │ ├── token_security_attribute_v1_t.end.hpp │ │ │ │ ├── token_security_attribute_v1_t.start.hpp │ │ │ │ ├── token_security_attributes_and_operation_information_t.end.hpp │ │ │ │ ├── token_security_attributes_and_operation_information_t.start.hpp │ │ │ │ ├── token_security_attributes_information_t.end.hpp │ │ │ │ ├── token_security_attributes_information_t.start.hpp │ │ │ │ ├── token_sid_information_t.end.hpp │ │ │ │ ├── token_sid_information_t.start.hpp │ │ │ │ ├── token_statistics_t.end.hpp │ │ │ │ ├── token_statistics_t.start.hpp │ │ │ │ ├── token_user_claims_t.end.hpp │ │ │ │ ├── token_user_claims_t.start.hpp │ │ │ │ ├── token_user_t.end.hpp │ │ │ │ ├── token_user_t.start.hpp │ │ │ │ ├── transaction_basic_information_t.end.hpp │ │ │ │ ├── transaction_basic_information_t.start.hpp │ │ │ │ ├── transaction_bind_information_t.end.hpp │ │ │ │ ├── transaction_bind_information_t.start.hpp │ │ │ │ ├── transaction_enlistment_pair_t.end.hpp │ │ │ │ ├── transaction_enlistment_pair_t.start.hpp │ │ │ │ ├── transaction_enlistments_information_t.end.hpp │ │ │ │ ├── transaction_enlistments_information_t.start.hpp │ │ │ │ ├── transaction_list_entry_t.end.hpp │ │ │ │ ├── transaction_list_entry_t.start.hpp │ │ │ │ ├── transaction_list_information_t.end.hpp │ │ │ │ ├── transaction_list_information_t.start.hpp │ │ │ │ ├── transaction_notification_marshal_argument_t.end.hpp │ │ │ │ ├── transaction_notification_marshal_argument_t.start.hpp │ │ │ │ ├── transaction_notification_propagate_argument_t.end.hpp │ │ │ │ ├── transaction_notification_propagate_argument_t.start.hpp │ │ │ │ ├── transaction_notification_recovery_argument_t.end.hpp │ │ │ │ ├── transaction_notification_recovery_argument_t.start.hpp │ │ │ │ ├── transaction_notification_savepoint_argument_t.end.hpp │ │ │ │ ├── transaction_notification_savepoint_argument_t.start.hpp │ │ │ │ ├── transaction_notification_tm_online_argument_t.end.hpp │ │ │ │ ├── transaction_notification_tm_online_argument_t.start.hpp │ │ │ │ ├── transaction_properties_information_t.end.hpp │ │ │ │ ├── transaction_properties_information_t.start.hpp │ │ │ │ ├── transaction_superior_enlistment_information_t.end.hpp │ │ │ │ ├── transaction_superior_enlistment_information_t.start.hpp │ │ │ │ ├── transactionmanager_basic_information_t.end.hpp │ │ │ │ ├── transactionmanager_basic_information_t.start.hpp │ │ │ │ ├── transactionmanager_log_information_t.end.hpp │ │ │ │ ├── transactionmanager_log_information_t.start.hpp │ │ │ │ ├── transactionmanager_logpath_information_t.end.hpp │ │ │ │ ├── transactionmanager_logpath_information_t.start.hpp │ │ │ │ ├── transactionmanager_oldest_information_t.end.hpp │ │ │ │ ├── transactionmanager_oldest_information_t.start.hpp │ │ │ │ ├── transactionmanager_recovery_information_t.end.hpp │ │ │ │ ├── transactionmanager_recovery_information_t.start.hpp │ │ │ │ ├── triple_list_entry_t.end.hpp │ │ │ │ ├── triple_list_entry_t.start.hpp │ │ │ │ ├── triple_list_iterator_t.end.hpp │ │ │ │ ├── triple_list_iterator_t.start.hpp │ │ │ │ ├── triple_list_t.end.hpp │ │ │ │ ├── triple_list_t.start.hpp │ │ │ │ ├── trivertex_t.end.hpp │ │ │ │ ├── trivertex_t.start.hpp │ │ │ │ ├── trustee_w_t.end.hpp │ │ │ │ ├── trustee_w_t.start.hpp │ │ │ │ ├── txfs_create_miniversion_info_t.end.hpp │ │ │ │ ├── txfs_create_miniversion_info_t.start.hpp │ │ │ │ ├── txfs_get_metadata_info_out_t.end.hpp │ │ │ │ ├── txfs_get_metadata_info_out_t.start.hpp │ │ │ │ ├── txfs_get_transacted_version_t.end.hpp │ │ │ │ ├── txfs_get_transacted_version_t.start.hpp │ │ │ │ ├── txfs_list_transaction_locked_files_entry_t.end.hpp │ │ │ │ ├── txfs_list_transaction_locked_files_entry_t.start.hpp │ │ │ │ ├── txfs_list_transaction_locked_files_t.end.hpp │ │ │ │ ├── txfs_list_transaction_locked_files_t.start.hpp │ │ │ │ ├── txfs_list_transactions_entry_t.end.hpp │ │ │ │ ├── txfs_list_transactions_entry_t.start.hpp │ │ │ │ ├── txfs_list_transactions_t.end.hpp │ │ │ │ ├── txfs_list_transactions_t.start.hpp │ │ │ │ ├── txfs_modify_rm_t.end.hpp │ │ │ │ ├── txfs_modify_rm_t.start.hpp │ │ │ │ ├── txfs_query_rm_information_t.end.hpp │ │ │ │ ├── txfs_query_rm_information_t.start.hpp │ │ │ │ ├── txfs_read_backup_information_out_t.end.hpp │ │ │ │ ├── txfs_read_backup_information_out_t.start.hpp │ │ │ │ ├── txfs_rollforward_redo_information_t.end.hpp │ │ │ │ ├── txfs_rollforward_redo_information_t.start.hpp │ │ │ │ ├── txfs_savepoint_information_t.end.hpp │ │ │ │ ├── txfs_savepoint_information_t.start.hpp │ │ │ │ ├── txfs_start_rm_information_t.end.hpp │ │ │ │ ├── txfs_start_rm_information_t.start.hpp │ │ │ │ ├── txfs_transaction_active_info_t.end.hpp │ │ │ │ ├── txfs_transaction_active_info_t.start.hpp │ │ │ │ ├── txfs_write_backup_information_t.end.hpp │ │ │ │ ├── txfs_write_backup_information_t.start.hpp │ │ │ │ ├── type_descriptor_t.end.hpp │ │ │ │ ├── type_descriptor_t.start.hpp │ │ │ │ ├── type_info_cache_t.end.hpp │ │ │ │ ├── type_info_cache_t.start.hpp │ │ │ │ ├── type_info_node_t.end.hpp │ │ │ │ ├── type_info_node_t.start.hpp │ │ │ │ ├── type_info_t.end.hpp │ │ │ │ ├── type_info_t.start.hpp │ │ │ │ ├── type_info_vtbl_t.end.hpp │ │ │ │ ├── type_info_vtbl_t.start.hpp │ │ │ │ ├── udate_t.end.hpp │ │ │ │ ├── udate_t.start.hpp │ │ │ │ ├── ums_create_thread_attributes_t.end.hpp │ │ │ │ ├── ums_create_thread_attributes_t.start.hpp │ │ │ │ ├── ums_scheduler_startup_info_t.end.hpp │ │ │ │ ├── ums_scheduler_startup_info_t.start.hpp │ │ │ │ ├── ums_system_thread_information_t.end.hpp │ │ │ │ ├── ums_system_thread_information_t.start.hpp │ │ │ │ ├── unbiased_timer_t.end.hpp │ │ │ │ ├── unbiased_timer_t.start.hpp │ │ │ │ ├── uninitmtaworkercontext_t.end.hpp │ │ │ │ ├── uninitmtaworkercontext_t.start.hpp │ │ │ │ ├── unique_process_information_t.end.hpp │ │ │ │ ├── unique_process_information_t.start.hpp │ │ │ │ ├── universal_name_infoa_t.end.hpp │ │ │ │ ├── universal_name_infoa_t.start.hpp │ │ │ │ ├── universal_name_infow_t.end.hpp │ │ │ │ ├── universal_name_infow_t.start.hpp │ │ │ │ ├── unload_dll_debug_info_t.end.hpp │ │ │ │ ├── unload_dll_debug_info_t.start.hpp │ │ │ │ ├── unmarshal_for_query_interface_t.end.hpp │ │ │ │ ├── unmarshal_for_query_interface_t.start.hpp │ │ │ │ ├── unmarshaler_clsid_info_t.end.hpp │ │ │ │ ├── unmarshaler_clsid_info_t.start.hpp │ │ │ │ ├── unmarshalers_table_t.end.hpp │ │ │ │ ├── unmarshalers_table_t.start.hpp │ │ │ │ ├── unused_cached_factories_t.end.hpp │ │ │ │ ├── unused_cached_factories_t.start.hpp │ │ │ │ ├── unwind_code_t.end.hpp │ │ │ │ ├── unwind_code_t.start.hpp │ │ │ │ ├── unwind_history_table_entry_t.end.hpp │ │ │ │ ├── unwind_history_table_entry_t.start.hpp │ │ │ │ ├── unwind_history_table_t.end.hpp │ │ │ │ ├── unwind_history_table_t.start.hpp │ │ │ │ ├── unwind_info_t.end.hpp │ │ │ │ ├── unwind_info_t.start.hpp │ │ │ │ ├── user_bitmap_t.end.hpp │ │ │ │ ├── user_bitmap_t.start.hpp │ │ │ │ ├── user_clipformat_t.end.hpp │ │ │ │ ├── user_clipformat_t.start.hpp │ │ │ │ ├── user_context_properties_data_t.end.hpp │ │ │ │ ├── user_context_properties_data_t.start.hpp │ │ │ │ ├── user_context_properties_t.end.hpp │ │ │ │ ├── user_context_properties_t.start.hpp │ │ │ │ ├── user_flag_stgmedium_t.end.hpp │ │ │ │ ├── user_flag_stgmedium_t.start.hpp │ │ │ │ ├── user_hbitmap_t.end.hpp │ │ │ │ ├── user_hbitmap_t.start.hpp │ │ │ │ ├── user_henhmetafile_t.end.hpp │ │ │ │ ├── user_henhmetafile_t.start.hpp │ │ │ │ ├── user_hglobal_t.end.hpp │ │ │ │ ├── user_hglobal_t.start.hpp │ │ │ │ ├── user_hmetafile_t.end.hpp │ │ │ │ ├── user_hmetafile_t.start.hpp │ │ │ │ ├── user_hmetafilepict_t.end.hpp │ │ │ │ ├── user_hmetafilepict_t.start.hpp │ │ │ │ ├── user_hpalette_t.end.hpp │ │ │ │ ├── user_hpalette_t.start.hpp │ │ │ │ ├── user_marshal_cb_t.end.hpp │ │ │ │ ├── user_marshal_cb_t.start.hpp │ │ │ │ ├── user_marshal_routine_quadruple_t.end.hpp │ │ │ │ ├── user_marshal_routine_quadruple_t.start.hpp │ │ │ │ ├── user_stgmedium_t.end.hpp │ │ │ │ ├── user_stgmedium_t.start.hpp │ │ │ │ ├── usn_journal_data_v0_t.end.hpp │ │ │ │ ├── usn_journal_data_v0_t.start.hpp │ │ │ │ ├── usn_journal_data_v1_t.end.hpp │ │ │ │ ├── usn_journal_data_v1_t.start.hpp │ │ │ │ ├── usn_journal_data_v2_t.end.hpp │ │ │ │ ├── usn_journal_data_v2_t.start.hpp │ │ │ │ ├── usn_range_track_output_t.end.hpp │ │ │ │ ├── usn_range_track_output_t.start.hpp │ │ │ │ ├── usn_record_common_header_t.end.hpp │ │ │ │ ├── usn_record_common_header_t.start.hpp │ │ │ │ ├── usn_record_extent_t.end.hpp │ │ │ │ ├── usn_record_extent_t.start.hpp │ │ │ │ ├── usn_record_union_t.end.hpp │ │ │ │ ├── usn_record_union_t.start.hpp │ │ │ │ ├── usn_record_v2_t.end.hpp │ │ │ │ ├── usn_record_v2_t.start.hpp │ │ │ │ ├── usn_record_v3_t.end.hpp │ │ │ │ ├── usn_record_v3_t.start.hpp │ │ │ │ ├── usn_record_v4_t.end.hpp │ │ │ │ ├── usn_record_v4_t.start.hpp │ │ │ │ ├── usn_track_modified_ranges_t.end.hpp │ │ │ │ ├── usn_track_modified_ranges_t.start.hpp │ │ │ │ ├── uuid_vector_t.end.hpp │ │ │ │ ├── uuid_vector_t.start.hpp │ │ │ │ ├── val_context_t.end.hpp │ │ │ │ ├── val_context_t.start.hpp │ │ │ │ ├── value_ent_a_t.end.hpp │ │ │ │ ├── value_ent_a_t.start.hpp │ │ │ │ ├── value_ent_w_t.end.hpp │ │ │ │ ├── value_ent_w_t.start.hpp │ │ │ │ ├── variable_name_and_value_t.end.hpp │ │ │ │ ├── variable_name_and_value_t.start.hpp │ │ │ │ ├── variable_name_t.end.hpp │ │ │ │ ├── variable_name_t.start.hpp │ │ │ │ ├── variant_t.end.hpp │ │ │ │ ├── variant_t.start.hpp │ │ │ │ ├── vcn_range_input_buffer_t.end.hpp │ │ │ │ ├── vcn_range_input_buffer_t.start.hpp │ │ │ │ ├── videoparameters_t.end.hpp │ │ │ │ ├── videoparameters_t.start.hpp │ │ │ │ ├── virtual_storage_set_behavior_input_t.end.hpp │ │ │ │ ├── virtual_storage_set_behavior_input_t.start.hpp │ │ │ │ ├── virtual_storage_type_t.end.hpp │ │ │ │ ├── virtual_storage_type_t.start.hpp │ │ │ │ ├── virtualization_instance_info_input_ex_t.end.hpp │ │ │ │ ├── virtualization_instance_info_input_ex_t.start.hpp │ │ │ │ ├── virtualization_instance_info_input_t.end.hpp │ │ │ │ ├── virtualization_instance_info_input_t.start.hpp │ │ │ │ ├── virtualization_instance_info_output_t.end.hpp │ │ │ │ ├── virtualization_instance_info_output_t.start.hpp │ │ │ │ ├── virtualization_record_t.end.hpp │ │ │ │ ├── virtualization_record_t.start.hpp │ │ │ │ ├── vm_counters_ex2_t.end.hpp │ │ │ │ ├── vm_counters_ex2_t.start.hpp │ │ │ │ ├── vm_counters_ex_t.end.hpp │ │ │ │ ├── vm_counters_ex_t.start.hpp │ │ │ │ ├── vm_counters_t.end.hpp │ │ │ │ ├── vm_counters_t.start.hpp │ │ │ │ ├── volume_bitmap_buffer_t.end.hpp │ │ │ │ ├── volume_bitmap_buffer_t.start.hpp │ │ │ │ ├── volume_refs_info_buffer_t.end.hpp │ │ │ │ ├── volume_refs_info_buffer_t.start.hpp │ │ │ │ ├── vtbl_splay_node_t.end.hpp │ │ │ │ ├── vtbl_splay_node_t.start.hpp │ │ │ │ ├── waitable_count_t.end.hpp │ │ │ │ ├── waitable_count_t.start.hpp │ │ │ │ ├── wake_timer_info_t.end.hpp │ │ │ │ ├── wake_timer_info_t.start.hpp │ │ │ │ ├── wer_bi_task_diag_data_t.end.hpp │ │ │ │ ├── wer_bi_task_diag_data_t.start.hpp │ │ │ │ ├── wer_extended_diag_data_header_t.end.hpp │ │ │ │ ├── wer_extended_diag_data_header_t.start.hpp │ │ │ │ ├── wer_javascript_gc_state_t.end.hpp │ │ │ │ ├── wer_javascript_gc_state_t.start.hpp │ │ │ │ ├── wer_modern_app_diag_data_t.end.hpp │ │ │ │ ├── wer_modern_app_diag_data_t.start.hpp │ │ │ │ ├── wer_plm_modern_app_diag_data_t.end.hpp │ │ │ │ ├── wer_plm_modern_app_diag_data_t.start.hpp │ │ │ │ ├── wer_report_information_t.end.hpp │ │ │ │ ├── wer_report_information_t.start.hpp │ │ │ │ ├── wer_wwa_diag_data_t.end.hpp │ │ │ │ ├── wer_wwa_diag_data_t.start.hpp │ │ │ │ ├── wfinddata32_t.end.hpp │ │ │ │ ├── wfinddata32_t.start.hpp │ │ │ │ ├── wfinddata32i64_t.end.hpp │ │ │ │ ├── wfinddata32i64_t.start.hpp │ │ │ │ ├── wfinddata64_t.end.hpp │ │ │ │ ├── wfinddata64_t.start.hpp │ │ │ │ ├── wfinddata64i32_t.end.hpp │ │ │ │ ├── wfinddata64i32_t.start.hpp │ │ │ │ ├── wglswap_t.end.hpp │ │ │ │ ├── wglswap_t.start.hpp │ │ │ │ ├── wim_provider_add_overlay_input_t.end.hpp │ │ │ │ ├── wim_provider_add_overlay_input_t.start.hpp │ │ │ │ ├── wim_provider_control_integrity_t.end.hpp │ │ │ │ ├── wim_provider_control_integrity_t.start.hpp │ │ │ │ ├── wim_provider_external_info_t.end.hpp │ │ │ │ ├── wim_provider_external_info_t.start.hpp │ │ │ │ ├── wim_provider_integrity_status_t.end.hpp │ │ │ │ ├── wim_provider_integrity_status_t.start.hpp │ │ │ │ ├── wim_provider_overlay_entry_t.end.hpp │ │ │ │ ├── wim_provider_overlay_entry_t.start.hpp │ │ │ │ ├── wim_provider_remove_overlay_input_t.end.hpp │ │ │ │ ├── wim_provider_remove_overlay_input_t.start.hpp │ │ │ │ ├── wim_provider_start_integrity_t.end.hpp │ │ │ │ ├── wim_provider_start_integrity_t.start.hpp │ │ │ │ ├── wim_provider_suspend_overlay_input_t.end.hpp │ │ │ │ ├── wim_provider_suspend_overlay_input_t.start.hpp │ │ │ │ ├── wim_provider_update_overlay_input_t.end.hpp │ │ │ │ ├── wim_provider_update_overlay_input_t.start.hpp │ │ │ │ ├── win32_file_attribute_data_t.end.hpp │ │ │ │ ├── win32_file_attribute_data_t.start.hpp │ │ │ │ ├── win32_find_dataa_t.end.hpp │ │ │ │ ├── win32_find_dataa_t.start.hpp │ │ │ │ ├── win32_find_dataw_t.end.hpp │ │ │ │ ├── win32_find_dataw_t.start.hpp │ │ │ │ ├── win32_find_stream_data_t.end.hpp │ │ │ │ ├── win32_find_stream_data_t.start.hpp │ │ │ │ ├── win32_memory_partition_information_t.end.hpp │ │ │ │ ├── win32_memory_partition_information_t.start.hpp │ │ │ │ ├── win32_memory_range_entry_t.end.hpp │ │ │ │ ├── win32_memory_range_entry_t.start.hpp │ │ │ │ ├── win32_memory_region_information_t.end.hpp │ │ │ │ ├── win32_memory_region_information_t.start.hpp │ │ │ │ ├── win32_stream_id_t.end.hpp │ │ │ │ ├── win32_stream_id_t.start.hpp │ │ │ │ ├── win32k_syscall_filter_t.end.hpp │ │ │ │ ├── win32k_syscall_filter_t.start.hpp │ │ │ │ ├── win_rt_activation_properties_data_t.end.hpp │ │ │ │ ├── win_rt_activation_properties_data_t.start.hpp │ │ │ │ ├── win_rt_activation_properties_t.end.hpp │ │ │ │ ├── win_rt_activation_properties_t.start.hpp │ │ │ │ ├── window_buffer_size_record_t.end.hpp │ │ │ │ ├── window_buffer_size_record_t.start.hpp │ │ │ │ ├── windows_os_options_t.end.hpp │ │ │ │ ├── windows_os_options_t.start.hpp │ │ │ │ ├── winrt_async_channel_operation_info_t.end.hpp │ │ │ │ ├── winrt_async_channel_operation_info_t.start.hpp │ │ │ │ ├── winrt_async_channel_operation_t.end.hpp │ │ │ │ ├── winrt_async_channel_operation_t.start.hpp │ │ │ │ ├── winrt_async_channel_unmarshaler_info_t.end.hpp │ │ │ │ ├── winrt_async_channel_unmarshaler_info_t.start.hpp │ │ │ │ ├── winrt_async_operation_info_t.end.hpp │ │ │ │ ├── winrt_async_operation_info_t.start.hpp │ │ │ │ ├── winrt_async_proxy_call_t.end.hpp │ │ │ │ ├── winrt_async_proxy_call_t.start.hpp │ │ │ │ ├── winrt_async_response_t.end.hpp │ │ │ │ ├── winrt_async_response_t.start.hpp │ │ │ │ ├── winrt_async_rpc_channel_buffer_for_type_serializer_t.end.hpp │ │ │ │ ├── winrt_async_rpc_channel_buffer_for_type_serializer_t.start.hpp │ │ │ │ ├── winrt_async_server_call_t.end.hpp │ │ │ │ ├── winrt_async_server_call_t.start.hpp │ │ │ │ ├── winrt_mega_midl_proc_format_string_t.end.hpp │ │ │ │ ├── winrt_mega_midl_proc_format_string_t.start.hpp │ │ │ │ ├── winrt_mega_midl_type_format_string_t.end.hpp │ │ │ │ ├── winrt_mega_midl_type_format_string_t.start.hpp │ │ │ │ ├── winrt_rtti_interface_v1_t.end.hpp │ │ │ │ ├── winrt_rtti_interface_v1_t.start.hpp │ │ │ │ ├── winrt_rtti_namespace_v1_t.end.hpp │ │ │ │ ├── winrt_rtti_namespace_v1_t.start.hpp │ │ │ │ ├── winrt_rtti_parameterized_delegate_instance_v1_t.end.hpp │ │ │ │ ├── winrt_rtti_parameterized_delegate_instance_v1_t.start.hpp │ │ │ │ ├── winrt_rtti_parameterized_delegate_v1_t.end.hpp │ │ │ │ ├── winrt_rtti_parameterized_delegate_v1_t.start.hpp │ │ │ │ ├── winrt_rtti_parameterized_interface_instance_v1_t.end.hpp │ │ │ │ ├── winrt_rtti_parameterized_interface_instance_v1_t.start.hpp │ │ │ │ ├── winrt_rtti_parameterized_interface_v1_t.end.hpp │ │ │ │ ├── winrt_rtti_parameterized_interface_v1_t.start.hpp │ │ │ │ ├── winrt_rtti_runtime_class_v1_t.end.hpp │ │ │ │ ├── winrt_rtti_runtime_class_v1_t.start.hpp │ │ │ │ ├── winrt_rtti_t.end.hpp │ │ │ │ ├── winrt_rtti_t.start.hpp │ │ │ │ ├── winrt_type_serializer_ndr_helper_t.end.hpp │ │ │ │ ├── winrt_type_serializer_ndr_helper_t.start.hpp │ │ │ │ ├── winrt_type_serializer_t.end.hpp │ │ │ │ ├── winrt_type_serializer_t.start.hpp │ │ │ │ ├── wire_array_of_touched_astas_t.end.hpp │ │ │ │ ├── wire_array_of_touched_astas_t.start.hpp │ │ │ │ ├── wire_brecord_t.end.hpp │ │ │ │ ├── wire_brecord_t.start.hpp │ │ │ │ ├── wire_container_extent_array_accessor_t.end.hpp │ │ │ │ ├── wire_container_extent_array_accessor_t.start.hpp │ │ │ │ ├── wire_container_extent_array_t.end.hpp │ │ │ │ ├── wire_container_extent_array_t.start.hpp │ │ │ │ ├── wire_container_extent_t.end.hpp │ │ │ │ ├── wire_container_extent_t.start.hpp │ │ │ │ ├── wire_container_that_part1_t.end.hpp │ │ │ │ ├── wire_container_that_part1_t.start.hpp │ │ │ │ ├── wire_container_that_t.end.hpp │ │ │ │ ├── wire_container_that_t.start.hpp │ │ │ │ ├── wire_container_this_part1_t.end.hpp │ │ │ │ ├── wire_container_this_part1_t.start.hpp │ │ │ │ ├── wire_container_this_t.end.hpp │ │ │ │ ├── wire_container_this_t.start.hpp │ │ │ │ ├── wire_error_information_extent_v1_t.end.hpp │ │ │ │ ├── wire_error_information_extent_v1_t.start.hpp │ │ │ │ ├── wire_extent_array_t.end.hpp │ │ │ │ ├── wire_extent_array_t.start.hpp │ │ │ │ ├── wire_extent_t.end.hpp │ │ │ │ ├── wire_extent_t.start.hpp │ │ │ │ ├── wire_local_that_part1_t.end.hpp │ │ │ │ ├── wire_local_that_part1_t.start.hpp │ │ │ │ ├── wire_local_that_part2_t.end.hpp │ │ │ │ ├── wire_local_that_part2_t.start.hpp │ │ │ │ ├── wire_local_that_t.end.hpp │ │ │ │ ├── wire_local_that_t.start.hpp │ │ │ │ ├── wire_local_this_part1_t.end.hpp │ │ │ │ ├── wire_local_this_part1_t.start.hpp │ │ │ │ ├── wire_local_this_part2_t.end.hpp │ │ │ │ ├── wire_local_this_part2_t.start.hpp │ │ │ │ ├── wire_local_this_t.end.hpp │ │ │ │ ├── wire_local_this_t.start.hpp │ │ │ │ ├── wire_safearr_brecord_t.end.hpp │ │ │ │ ├── wire_safearr_brecord_t.start.hpp │ │ │ │ ├── wire_safearr_bstr_t.end.hpp │ │ │ │ ├── wire_safearr_bstr_t.start.hpp │ │ │ │ ├── wire_safearr_dispatch_t.end.hpp │ │ │ │ ├── wire_safearr_dispatch_t.start.hpp │ │ │ │ ├── wire_safearr_haveiid_t.end.hpp │ │ │ │ ├── wire_safearr_haveiid_t.start.hpp │ │ │ │ ├── wire_safearr_unknown_t.end.hpp │ │ │ │ ├── wire_safearr_unknown_t.start.hpp │ │ │ │ ├── wire_safearr_variant_t.end.hpp │ │ │ │ ├── wire_safearr_variant_t.start.hpp │ │ │ │ ├── wire_safearray_t.end.hpp │ │ │ │ ├── wire_safearray_t.start.hpp │ │ │ │ ├── wire_safearray_union_t.end.hpp │ │ │ │ ├── wire_safearray_union_t.start.hpp │ │ │ │ ├── wire_that_part1_t.end.hpp │ │ │ │ ├── wire_that_part1_t.start.hpp │ │ │ │ ├── wire_that_part2_t.end.hpp │ │ │ │ ├── wire_that_part2_t.start.hpp │ │ │ │ ├── wire_that_t.end.hpp │ │ │ │ ├── wire_that_t.start.hpp │ │ │ │ ├── wire_this_part1_t.end.hpp │ │ │ │ ├── wire_this_part1_t.start.hpp │ │ │ │ ├── wire_this_part2_t.end.hpp │ │ │ │ ├── wire_this_part2_t.start.hpp │ │ │ │ ├── wire_this_t.end.hpp │ │ │ │ ├── wire_this_t.start.hpp │ │ │ │ ├── wire_variant_t.end.hpp │ │ │ │ ├── wire_variant_t.start.hpp │ │ │ │ ├── wire_winrt_async_call_failure_details_part1_t.end.hpp │ │ │ │ ├── wire_winrt_async_call_failure_details_part1_t.start.hpp │ │ │ │ ├── wire_winrt_async_call_outcome_details_t.end.hpp │ │ │ │ ├── wire_winrt_async_call_outcome_details_t.start.hpp │ │ │ │ ├── wire_winrt_async_call_response_block_part1_t.end.hpp │ │ │ │ ├── wire_winrt_async_call_response_block_part1_t.start.hpp │ │ │ │ ├── wire_winrt_async_call_success_details_part1_t.end.hpp │ │ │ │ ├── wire_winrt_async_call_success_details_part1_t.start.hpp │ │ │ │ ├── wmiregguidw_t.end.hpp │ │ │ │ ├── wmiregguidw_t.start.hpp │ │ │ │ ├── wmireginfow_t.end.hpp │ │ │ │ ├── wmireginfow_t.start.hpp │ │ │ │ ├── wof_external_file_id_t.end.hpp │ │ │ │ ├── wof_external_file_id_t.start.hpp │ │ │ │ ├── wof_external_info_t.end.hpp │ │ │ │ ├── wof_external_info_t.start.hpp │ │ │ │ ├── wof_version_info_t.end.hpp │ │ │ │ ├── wof_version_info_t.start.hpp │ │ │ │ ├── word_blob_t.end.hpp │ │ │ │ ├── word_blob_t.start.hpp │ │ │ │ ├── worker_factory_basic_information_t.end.hpp │ │ │ │ ├── worker_factory_basic_information_t.start.hpp │ │ │ │ ├── worker_factory_deferred_work_t.end.hpp │ │ │ │ ├── worker_factory_deferred_work_t.start.hpp │ │ │ │ ├── wow64_architecture_information_t.end.hpp │ │ │ │ ├── wow64_architecture_information_t.start.hpp │ │ │ │ ├── wow64_context_t.end.hpp │ │ │ │ ├── wow64_context_t.start.hpp │ │ │ │ ├── wow64_cpuarea_info_t.end.hpp │ │ │ │ ├── wow64_cpuarea_info_t.start.hpp │ │ │ │ ├── wow64_descriptor_table_entry_t.end.hpp │ │ │ │ ├── wow64_descriptor_table_entry_t.start.hpp │ │ │ │ ├── wow64_floating_save_area_t.end.hpp │ │ │ │ ├── wow64_floating_save_area_t.start.hpp │ │ │ │ ├── wow64_ldt_entry_t.end.hpp │ │ │ │ ├── wow64_ldt_entry_t.start.hpp │ │ │ │ ├── wpp_pointer_to_ushort_t.end.hpp │ │ │ │ ├── wpp_pointer_to_ushort_t.start.hpp │ │ │ │ ├── wpp_project_control_block_t.end.hpp │ │ │ │ ├── wpp_project_control_block_t.start.hpp │ │ │ │ ├── wpp_win2k_control_block_t.end.hpp │ │ │ │ ├── wpp_win2k_control_block_t.start.hpp │ │ │ │ ├── write_usn_reason_input_t.end.hpp │ │ │ │ ├── write_usn_reason_input_t.start.hpp │ │ │ │ ├── wx86_thread_state_t.end.hpp │ │ │ │ ├── wx86_thread_state_t.start.hpp │ │ │ │ ├── wx86tib_t.end.hpp │ │ │ │ ├── wx86tib_t.start.hpp │ │ │ │ ├── x86_call_frame_t.end.hpp │ │ │ │ ├── x86_call_frame_t.start.hpp │ │ │ │ ├── xi_persist_file_t.end.hpp │ │ │ │ ├── xi_persist_file_t.start.hpp │ │ │ │ ├── xi_persist_storage_t.end.hpp │ │ │ │ ├── xi_persist_storage_t.start.hpp │ │ │ │ ├── xi_storage_t.end.hpp │ │ │ │ ├── xi_storage_t.start.hpp │ │ │ │ ├── xi_unknown_t.end.hpp │ │ │ │ ├── xi_unknown_t.start.hpp │ │ │ │ ├── xmit_routine_quintuple_t.end.hpp │ │ │ │ ├── xmit_routine_quintuple_t.start.hpp │ │ │ │ ├── xml_error_t.end.hpp │ │ │ │ ├── xml_error_t.start.hpp │ │ │ │ ├── xsave_cet_u_format_t.end.hpp │ │ │ │ ├── xsave_cet_u_format_t.start.hpp │ │ │ │ ├── xsave_cpu_errata_t.end.hpp │ │ │ │ ├── xsave_cpu_errata_t.start.hpp │ │ │ │ ├── xsave_cpu_info_t.end.hpp │ │ │ │ ├── xsave_cpu_info_t.start.hpp │ │ │ │ ├── xsave_feature_t.end.hpp │ │ │ │ ├── xsave_feature_t.start.hpp │ │ │ │ ├── xsave_policy_t.end.hpp │ │ │ │ ├── xsave_policy_t.start.hpp │ │ │ │ ├── xsave_supported_cpu_t.end.hpp │ │ │ │ ├── xsave_supported_cpu_t.start.hpp │ │ │ │ ├── xsave_vendor_t.end.hpp │ │ │ │ ├── xsave_vendor_t.start.hpp │ │ │ │ ├── xsave_vendors_t.end.hpp │ │ │ │ ├── xsave_vendors_t.start.hpp │ │ │ │ ├── xtime_t.end.hpp │ │ │ │ ├── xtime_t.start.hpp │ │ │ │ ├── zdb_header_t.end.hpp │ │ │ │ ├── zdb_header_t.start.hpp │ │ │ │ ├── zoneattributes_t.end.hpp │ │ │ │ └── zoneattributes_t.start.hpp │ │ │ ├── make_integer_sequence_t.hpp │ │ │ ├── malloc_free_struct_t.hpp │ │ │ ├── manage_hot_patch_apply_image_patch_t.hpp │ │ │ ├── manage_hot_patch_check_enabled_t.hpp │ │ │ ├── manage_hot_patch_load_patch_t.hpp │ │ │ ├── manage_hot_patch_query_active_patches_t.hpp │ │ │ ├── manage_hot_patch_query_patches_t.hpp │ │ │ ├── manage_hot_patch_query_single_patch_t.hpp │ │ │ ├── manage_hot_patch_unload_patch_t.hpp │ │ │ ├── manage_writes_to_executable_memory_t.hpp │ │ │ ├── mandatory_level_t.hpp │ │ │ ├── mark_handle_info32_t.hpp │ │ │ ├── mark_handle_info_t.hpp │ │ │ ├── marshal_by_value_serialization_data_t.hpp │ │ │ ├── marshal_params_t.hpp │ │ │ ├── marshaled_handle_storage_t.hpp │ │ │ ├── marshaling_context_attribute_value_t.hpp │ │ │ ├── mat2_t.hpp │ │ │ ├── matchmode_t.hpp │ │ │ ├── maxversiontested_info_t.hpp │ │ │ ├── mbstatet_t.hpp │ │ │ ├── mega_midl_expr_format_string_t.hpp │ │ │ ├── mega_midl_proc_format_string_t.hpp │ │ │ ├── mega_midl_type_format_string_t.hpp │ │ │ ├── mem_address_requirements_t.hpp │ │ │ ├── mem_extended_parameter_type_t.hpp │ │ │ ├── mem_section_extended_parameter_type_t.hpp │ │ │ ├── memory_bad_identity_information_t.hpp │ │ │ ├── memory_basic_information32_t.hpp │ │ │ ├── memory_basic_information64_t.hpp │ │ │ ├── memory_basic_information_t.hpp │ │ │ ├── memory_combine_information_ex2_t.hpp │ │ │ ├── memory_combine_information_ex_t.hpp │ │ │ ├── memory_combine_information_t.hpp │ │ │ ├── memory_enclave_image_information_t.hpp │ │ │ ├── memory_exhaustion_information_t.hpp │ │ │ ├── memory_exhaustion_type_t.hpp │ │ │ ├── memory_frame_information_t.hpp │ │ │ ├── memory_image_information_t.hpp │ │ │ ├── memory_info_t.hpp │ │ │ ├── memory_partition_attribute_information_t.hpp │ │ │ ├── memory_partition_charge_sharing_attributes_t.hpp │ │ │ ├── memory_partition_charge_sharing_information_t.hpp │ │ │ ├── memory_partition_charge_sharing_type_t.hpp │ │ │ ├── memory_partition_configuration_information_t.hpp │ │ │ ├── memory_partition_create_large_pages_information_t.hpp │ │ │ ├── memory_partition_dedicated_memory_attribute_t.hpp │ │ │ ├── memory_partition_dedicated_memory_information_t.hpp │ │ │ ├── memory_partition_dedicated_memory_open_information_t.hpp │ │ │ ├── memory_partition_initial_add_information_t.hpp │ │ │ ├── memory_partition_memory_events_information_t.hpp │ │ │ ├── memory_partition_node_information_t.hpp │ │ │ ├── memory_partition_node_page_information_t.hpp │ │ │ ├── memory_partition_page_combine_information_t.hpp │ │ │ ├── memory_partition_page_range_t.hpp │ │ │ ├── memory_partition_pagefile_information_t.hpp │ │ │ ├── memory_partition_transfer_information_t.hpp │ │ │ ├── memory_physical_contiguity_information_t.hpp │ │ │ ├── memory_physical_contiguity_unit_information_t.hpp │ │ │ ├── memory_priority_information_t.hpp │ │ │ ├── memory_region_information_t.hpp │ │ │ ├── memory_reserve_type_t.hpp │ │ │ ├── memory_resource_notification_type_t.hpp │ │ │ ├── memory_scrub_information_t.hpp │ │ │ ├── memory_shared_commit_information_t.hpp │ │ │ ├── memory_working_set_block_t.hpp │ │ │ ├── memory_working_set_ex_block_t.hpp │ │ │ ├── memory_working_set_ex_information_t.hpp │ │ │ ├── memory_working_set_ex_location_t.hpp │ │ │ ├── memory_working_set_information_t.hpp │ │ │ ├── memorystatus_t.hpp │ │ │ ├── memorystatusex_t.hpp │ │ │ ├── memstm_t.hpp │ │ │ ├── menu_event_record_t.hpp │ │ │ ├── menuitemtemplate_t.hpp │ │ │ ├── menuitemtemplateheader_t.hpp │ │ │ ├── merge_flags_t.hpp │ │ │ ├── message_direction_t.hpp │ │ │ ├── message_resource_block_t.hpp │ │ │ ├── message_resource_data_t.hpp │ │ │ ├── message_resource_entry_t.hpp │ │ │ ├── message_trace_header_t.hpp │ │ │ ├── message_trace_t.hpp │ │ │ ├── message_trace_user_t.hpp │ │ │ ├── mft_enum_data_v0_t.hpp │ │ │ ├── mft_enum_data_v1_t.hpp │ │ │ ├── mgot_name_list_t.hpp │ │ │ ├── mgot_scm_token_t.hpp │ │ │ ├── mgotflags_t.hpp │ │ │ ├── microsoft_telemetry_assert_args_t.hpp │ │ │ ├── microsoft_telemetry_assert_triggered_node_t.hpp │ │ │ ├── mid_entry_t.hpp │ │ │ ├── midl_es_code_t.hpp │ │ │ ├── midl_es_handle_style_t.hpp │ │ │ ├── midl_format_string_t.hpp │ │ │ ├── midl_i_activator_custom_marshal_0001_t.hpp │ │ │ ├── midl_i_authenticate_ex_0001_t.hpp │ │ │ ├── midl_i_bind_status_callback_0001_t.hpp │ │ │ ├── midl_i_bind_status_callback_0002_t.hpp │ │ │ ├── midl_i_bind_status_callback_0003_t.hpp │ │ │ ├── midl_i_bind_status_callback_0004_t.hpp │ │ │ ├── midl_i_bind_status_callback_0005_t.hpp │ │ │ ├── midl_i_bind_status_callback_0006_t.hpp │ │ │ ├── midl_i_bind_status_callback_ex_0001_t.hpp │ │ │ ├── midl_i_call_frame_0001_t.hpp │ │ │ ├── midl_i_call_frame_0002_t.hpp │ │ │ ├── midl_i_call_frame_0003_t.hpp │ │ │ ├── midl_i_call_frame_0004_t.hpp │ │ │ ├── midl_i_code_install_0001_t.hpp │ │ │ ├── midl_i_get_bind_handle_0001_t.hpp │ │ │ ├── midl_i_internet_security_manager_0001_t.hpp │ │ │ ├── midl_i_internet_security_manager_0002_t.hpp │ │ │ ├── midl_i_internet_security_manager_0003_t.hpp │ │ │ ├── midl_i_internet_zone_manager_0001_t.hpp │ │ │ ├── midl_i_internet_zone_manager_0002_t.hpp │ │ │ ├── midl_i_local_object_exporter_0001_t.hpp │ │ │ ├── midl_i_local_object_exporter_0002_t.hpp │ │ │ ├── midl_i_local_object_exporter_0003_t.hpp │ │ │ ├── midl_i_local_object_exporter_0004_t.hpp │ │ │ ├── midl_i_local_object_exporter_0005_t.hpp │ │ │ ├── midl_i_local_object_exporter_0006_t.hpp │ │ │ ├── midl_i_local_object_exporter_0007_t.hpp │ │ │ ├── midl_i_moniker_prop_0001_t.hpp │ │ │ ├── midl_i_uri_0001_t.hpp │ │ │ ├── midl_i_uri_0002_t.hpp │ │ │ ├── midl_idll_host_0001_t.hpp │ │ │ ├── midl_interception_info_t.hpp │ │ │ ├── midl_interface_method_properties_t.hpp │ │ │ ├── midl_irot_0001_t.hpp │ │ │ ├── midl_method_property_map_t.hpp │ │ │ ├── midl_method_property_t.hpp │ │ │ ├── midl_midl_itf_activate_0000_0010_0001_t.hpp │ │ │ ├── midl_midl_itf_activate_0000_0010_0002_t.hpp │ │ │ ├── midl_midl_itf_activate_0000_0010_0003_t.hpp │ │ │ ├── midl_midl_itf_activate_0000_0010_0004_t.hpp │ │ │ ├── midl_midl_itf_immact_0000_0002_0002_t.hpp │ │ │ ├── midl_midl_itf_marshal_options_0000_0000_0001_t.hpp │ │ │ ├── midl_midl_itf_odeth_0000_0001_0001_t.hpp │ │ │ ├── midl_midl_itf_odeth_0000_0002_0001_t.hpp │ │ │ ├── midl_midl_itf_odeth_0000_0003_0001_t.hpp │ │ │ ├── midl_midl_itf_odeth_0000_0003_0002_t.hpp │ │ │ ├── midl_midl_itf_privact_0000_0009_0001_t.hpp │ │ │ ├── midl_midl_itf_wtypes_0000_0001_0001_t.hpp │ │ │ ├── midl_server_info_t.hpp │ │ │ ├── midl_stub_desc_t.hpp │ │ │ ├── midl_stub_message_t.hpp │ │ │ ├── midl_stubless_proxy_info_t.hpp │ │ │ ├── midl_syntax_info_t.hpp │ │ │ ├── midl_type_format_string_t.hpp │ │ │ ├── midl_type_pickling_flags_t.hpp │ │ │ ├── midl_type_pickling_info_t.hpp │ │ │ ├── midl_winrt_type_serialization_info_t.hpp │ │ │ ├── midl_xmit_defs_0001_t.hpp │ │ │ ├── midl_xmit_defs_0002_t.hpp │ │ │ ├── midl_xmit_defs_0003_t.hpp │ │ │ ├── midl_xmit_defs_0004_t.hpp │ │ │ ├── midl_xmit_defs_0005_t.hpp │ │ │ ├── midl_xmit_defs_0006_t.hpp │ │ │ ├── midl_xmit_defs_0007_t.hpp │ │ │ ├── midl_xmit_defs_0008_t.hpp │ │ │ ├── midl_xmit_defs_0010_t.hpp │ │ │ ├── midl_xmit_defs_0011_t.hpp │ │ │ ├── midluser_allocate_t.hpp │ │ │ ├── mig_xml_type_t.hpp │ │ │ ├── minidump_callback_information_t.hpp │ │ │ ├── minidump_callback_input_t.hpp │ │ │ ├── minidump_callback_output_t.hpp │ │ │ ├── minidump_callback_type_t.hpp │ │ │ ├── minidump_exception_information_t.hpp │ │ │ ├── minidump_include_module_callback_t.hpp │ │ │ ├── minidump_include_thread_callback_t.hpp │ │ │ ├── minidump_io_callback_t.hpp │ │ │ ├── minidump_memory_info_t.hpp │ │ │ ├── minidump_module_callback_t.hpp │ │ │ ├── minidump_read_memory_failure_callback_t.hpp │ │ │ ├── minidump_stream_type_t.hpp │ │ │ ├── minidump_thread_callback_t.hpp │ │ │ ├── minidump_thread_ex_callback_t.hpp │ │ │ ├── minidump_type_t.hpp │ │ │ ├── minidump_user_stream_information_t.hpp │ │ │ ├── minidump_user_stream_t.hpp │ │ │ ├── minidump_vm_post_read_callback_t.hpp │ │ │ ├── minidump_vm_pre_read_callback_t.hpp │ │ │ ├── minidump_vm_query_callback_t.hpp │ │ │ ├── mipid_t.hpp │ │ │ ├── mk_interface_list_entry_t.hpp │ │ │ ├── mk_interface_list_t.hpp │ │ │ ├── mmpfn_identity_t.hpp │ │ │ ├── mnk_eq_buf_t.hpp │ │ │ ├── modemdevcaps_t.hpp │ │ │ ├── modemsettings_t.hpp │ │ │ ├── modern_sta_incoming_call_data_t.hpp │ │ │ ├── modern_sta_incoming_call_list_t.hpp │ │ │ ├── modern_sta_state_t.hpp │ │ │ ├── modern_sta_wait_context_t.hpp │ │ │ ├── modern_sta_wait_satisfied_reason_t.hpp │ │ │ ├── modern_sta_wait_window_message_dispatch_t.hpp │ │ │ ├── mof_field_t.hpp │ │ │ ├── monitor_display_state_t.hpp │ │ │ ├── mouse_event_record_t.hpp │ │ │ ├── move_file_data32_t.hpp │ │ │ ├── move_file_data_t.hpp │ │ │ ├── move_file_record_data_t.hpp │ │ │ ├── mta_host_usage_flags_t.hpp │ │ │ ├── mta_usage_globals_t.hpp │ │ │ ├── mta_usage_incrementor_t.hpp │ │ │ ├── mtx_internal_imp_t.hpp │ │ │ ├── muiccentry_t.hpp │ │ │ ├── muiccheader_t.hpp │ │ │ ├── muilangcfglist_t.hpp │ │ │ ├── muilangcfgnode_t.hpp │ │ │ ├── muilanginfo_t.hpp │ │ │ ├── muilanglist_t.hpp │ │ │ ├── muilanglistnode_t.hpp │ │ │ ├── muilanguages_t.hpp │ │ │ ├── muiregistryinfo_t.hpp │ │ │ ├── muistringpool_t.hpp │ │ │ ├── multi_string_iterator_t.hpp │ │ │ ├── multi_string_t.hpp │ │ │ ├── multi_time_t.hpp │ │ │ ├── multiple_trustee_operation_t.hpp │ │ │ ├── multiplication_state_t.hpp │ │ │ ├── mutant_basic_information_t.hpp │ │ │ ├── mutant_information_class_t.hpp │ │ │ ├── mutant_owner_information_t.hpp │ │ │ ├── mutex_handle_wrapper_api_types_t.hpp │ │ │ ├── n_crypt_algorithm_name_t.hpp │ │ │ ├── n_crypt_key_name_t.hpp │ │ │ ├── n_crypt_provider_name_t.hpp │ │ │ ├── n_gen_hint_enum_t.hpp │ │ │ ├── native_type_array_flags_t.hpp │ │ │ ├── nb10i_header_t.hpp │ │ │ ├── nb10i_t.hpp │ │ │ ├── nciflags_t.hpp │ │ │ ├── ncrypt_alloc_para_t.hpp │ │ │ ├── ncrypt_cipher_padding_info_t.hpp │ │ │ ├── ncrypt_exported_isolated_key_envelope_t.hpp │ │ │ ├── ncrypt_exported_isolated_key_header_t.hpp │ │ │ ├── ncrypt_isolated_key_attested_attributes_t.hpp │ │ │ ├── ncrypt_key_access_policy_blob_t.hpp │ │ │ ├── ncrypt_key_attest_padding_info_t.hpp │ │ │ ├── ncrypt_key_blob_header_t.hpp │ │ │ ├── ncrypt_pcp_hmac_auth_signature_info_t.hpp │ │ │ ├── ncrypt_pcp_raw_policydigest_t.hpp │ │ │ ├── ncrypt_pcp_tpm_fw_version_info_t.hpp │ │ │ ├── ncrypt_pcp_tpm_web_authn_attestation_statement_t.hpp │ │ │ ├── ncrypt_platform_attest_padding_info_t.hpp │ │ │ ├── ncrypt_supported_lengths_t.hpp │ │ │ ├── ncrypt_tpm_loadable_key_blob_header_t.hpp │ │ │ ├── ncrypt_tpm_platform_attestation_statement_t.hpp │ │ │ ├── ncrypt_ui_policy_t.hpp │ │ │ ├── ncrypt_vsm_key_attestation_claim_restrictions_t.hpp │ │ │ ├── ncrypt_vsm_key_attestation_statement_t.hpp │ │ │ ├── ndr64_array_element_info_t.hpp │ │ │ ├── ndr64_array_flags_t.hpp │ │ │ ├── ndr64_bind_and_notify_extension_t.hpp │ │ │ ├── ndr64_bind_context_t.hpp │ │ │ ├── ndr64_bind_generic_t.hpp │ │ │ ├── ndr64_bind_primitive_t.hpp │ │ │ ├── ndr64_bindings_t.hpp │ │ │ ├── ndr64_bogus_array_header_format_t.hpp │ │ │ ├── ndr64_bogus_structure_header_format_t.hpp │ │ │ ├── ndr64_buffer_align_format_t.hpp │ │ │ ├── ndr64_bufsize_pointer_queue_element_t.hpp │ │ │ ├── ndr64_conf_array_header_format_t.hpp │ │ │ ├── ndr64_conf_bogus_structure_header_format_t.hpp │ │ │ ├── ndr64_conf_structure_header_format_t.hpp │ │ │ ├── ndr64_conf_var_array_header_format_t.hpp │ │ │ ├── ndr64_conf_var_bogus_array_header_format_t.hpp │ │ │ ├── ndr64_conformant_string_format_t.hpp │ │ │ ├── ndr64_constant_iid_format_t.hpp │ │ │ ├── ndr64_context_handle_flags_t.hpp │ │ │ ├── ndr64_context_handle_format_t.hpp │ │ │ ├── ndr64_embedded_complex_format_t.hpp │ │ │ ├── ndr64_encapsulated_union_t.hpp │ │ │ ├── ndr64_expr_const32_t.hpp │ │ │ ├── ndr64_expr_const64_t.hpp │ │ │ ├── ndr64_expr_noop_t.hpp │ │ │ ├── ndr64_expr_operator_t.hpp │ │ │ ├── ndr64_expr_var_t.hpp │ │ │ ├── ndr64_expression_type_t.hpp │ │ │ ├── ndr64_fix_array_header_format_t.hpp │ │ │ ├── ndr64_fixed_repeat_format_t.hpp │ │ │ ├── ndr64_format_character_t.hpp │ │ │ ├── ndr64_free_pointer_queue_element_t.hpp │ │ │ ├── ndr64_iid_flags_t.hpp │ │ │ ├── ndr64_iid_format_t.hpp │ │ │ ├── ndr64_mempad_format_t.hpp │ │ │ ├── ndr64_memsize_pointer_queue_element_t.hpp │ │ │ ├── ndr64_mrshl_pointer_queue_element_t.hpp │ │ │ ├── ndr64_no_repeat_format_t.hpp │ │ │ ├── ndr64_non_conformant_string_format_t.hpp │ │ │ ├── ndr64_non_encapsulated_union_t.hpp │ │ │ ├── ndr64_param_flags_t.hpp │ │ │ ├── ndr64_param_format_t.hpp │ │ │ ├── ndr64_pipe_flags_t.hpp │ │ │ ├── ndr64_pipe_format_t.hpp │ │ │ ├── ndr64_pointer_format_t.hpp │ │ │ ├── ndr64_pointer_instance_header_format_t.hpp │ │ │ ├── ndr64_pointer_repeat_flags_t.hpp │ │ │ ├── ndr64_proc_flags_t.hpp │ │ │ ├── ndr64_proc_format_t.hpp │ │ │ ├── ndr64_range_format_t.hpp │ │ │ ├── ndr64_range_pipe_format_t.hpp │ │ │ ├── ndr64_ranged_string_format_t.hpp │ │ │ ├── ndr64_repeat_format_t.hpp │ │ │ ├── ndr64_rpc_flags_t.hpp │ │ │ ├── ndr64_simple_member_format_t.hpp │ │ │ ├── ndr64_simple_region_format_t.hpp │ │ │ ├── ndr64_sized_conformant_string_format_t.hpp │ │ │ ├── ndr64_string_flags_t.hpp │ │ │ ├── ndr64_string_header_format_t.hpp │ │ │ ├── ndr64_structure_flags_t.hpp │ │ │ ├── ndr64_structure_header_format_t.hpp │ │ │ ├── ndr64_system_handle_format_t.hpp │ │ │ ├── ndr64_transmit_as_flags_t.hpp │ │ │ ├── ndr64_transmit_as_format_t.hpp │ │ │ ├── ndr64_type_strict_context_handle_t.hpp │ │ │ ├── ndr64_union_arm_selector_t.hpp │ │ │ ├── ndr64_union_arm_t.hpp │ │ │ ├── ndr64_unmrshl_pointer_queue_element_t.hpp │ │ │ ├── ndr64_user_marshal_flags_t.hpp │ │ │ ├── ndr64_user_marshal_format_t.hpp │ │ │ ├── ndr64_usr_mrshl_bufsize_pointer_queue_element_t.hpp │ │ │ ├── ndr64_usr_mrshl_memsize_pointer_queue_element_t.hpp │ │ │ ├── ndr64_usr_mrshl_mrshl_pointer_queue_element_t.hpp │ │ │ ├── ndr64_usr_mrshl_unmrshl_pointer_queue_element_t.hpp │ │ │ ├── ndr64_var_array_header_format_t.hpp │ │ │ ├── ndr_alloc_all_nodes_context_t.hpp │ │ │ ├── ndr_alloca_context_t.hpp │ │ │ ├── ndr_async_message_t.hpp │ │ │ ├── ndr_bufsize_pointer_queue_element_t.hpp │ │ │ ├── ndr_callback_routines_table_t.hpp │ │ │ ├── ndr_context_handle_arg_desc_t.hpp │ │ │ ├── ndr_context_handle_flags_t.hpp │ │ │ ├── ndr_convert_pointer_queue_element_t.hpp │ │ │ ├── ndr_correlation_flags_t.hpp │ │ │ ├── ndr_correlation_info_data_t.hpp │ │ │ ├── ndr_correlation_info_header_t.hpp │ │ │ ├── ndr_correlation_info_t.hpp │ │ │ ├── ndr_cs_array_format_t.hpp │ │ │ ├── ndr_cs_routines_t.hpp │ │ │ ├── ndr_cs_size_convert_routines_t.hpp │ │ │ ├── ndr_cs_tag_flags_t.hpp │ │ │ ├── ndr_cs_tag_format_t.hpp │ │ │ ├── ndr_dcom_async_call_state_t.hpp │ │ │ ├── ndr_dcom_async_flags_t.hpp │ │ │ ├── ndr_dcom_async_message_t.hpp │ │ │ ├── ndr_dcom_oi2_proc_header_t.hpp │ │ │ ├── ndr_expr_desc_t.hpp │ │ │ ├── ndr_fcdef_correlation_t.hpp │ │ │ ├── ndr_free_pointer_queue_element_t.hpp │ │ │ ├── ndr_fwd_routines_t.hpp │ │ │ ├── ndr_memsize_pointer_queue_element_t.hpp │ │ │ ├── ndr_minicompute_queue_element_t.hpp │ │ │ ├── ndr_minicompute_queue_t.hpp │ │ │ ├── ndr_mrshl_pointer_queue_element_t.hpp │ │ │ ├── ndr_pfnfree_pointer_queue_element_t.hpp │ │ │ ├── ndr_pipe_desc_t.hpp │ │ │ ├── ndr_pipe_helper_t.hpp │ │ │ ├── ndr_pipe_message_t.hpp │ │ │ ├── ndr_pipe_state_t.hpp │ │ │ ├── ndr_pointer_queue_element_t.hpp │ │ │ ├── ndr_pointer_queue_state_t.hpp │ │ │ ├── ndr_pointer_queue_t.hpp │ │ │ ├── ndr_proc_context_t.hpp │ │ │ ├── ndr_proc_desc_t.hpp │ │ │ ├── ndr_proc_header_exts64_t.hpp │ │ │ ├── ndr_proc_header_exts_arm_t.hpp │ │ │ ├── ndr_proc_header_exts_t.hpp │ │ │ ├── ndr_proc_info_t.hpp │ │ │ ├── ndr_scontext_t.hpp │ │ │ ├── ndr_string_header_t.hpp │ │ │ ├── ndr_string_ptr_header_t.hpp │ │ │ ├── ndr_unmrshl_pointer_queue_element_t.hpp │ │ │ ├── ndr_user_marshal_info_level1_t.hpp │ │ │ ├── ndr_user_marshal_info_t.hpp │ │ │ ├── ndr_usr_mrshl_bufsize_pointer_queue_element_t.hpp │ │ │ ├── ndr_usr_mrshl_memsize_pointer_queue_element_t.hpp │ │ │ ├── ndr_usr_mrshl_mrshl_pointer_queue_element_t.hpp │ │ │ ├── ndr_usr_mrshl_unmrshl_pointer_queue_element_t.hpp │ │ │ ├── ndrole_extension_routines_table_t.hpp │ │ │ ├── netconnectinfostruct_t.hpp │ │ │ ├── netinfostruct_t.hpp │ │ │ ├── netresourcea_t.hpp │ │ │ ├── netresourcew_t.hpp │ │ │ ├── network_app_instance_ea_t.hpp │ │ │ ├── network_behavior_t.hpp │ │ │ ├── nic_record_t.hpp │ │ │ ├── nlstableinfo_t.hpp │ │ │ ├── nlsversioninfo_t.hpp │ │ │ ├── nlsversioninfoex_t.hpp │ │ │ ├── non_sta_state_t.hpp │ │ │ ├── nonoicf_pointer_queue_state_t.hpp │ │ │ ├── noop_coroutine_frame_legacy_t.hpp │ │ │ ├── noop_coroutine_frame_standard_t.hpp │ │ │ ├── norm_form_t.hpp │ │ │ ├── notify_user_power_setting_t.hpp │ │ │ ├── ntfs_extended_volume_data_t.hpp │ │ │ ├── ntfs_file_record_input_buffer_t.hpp │ │ │ ├── ntfs_file_record_output_buffer_t.hpp │ │ │ ├── ntfs_statistics_ex_t.hpp │ │ │ ├── ntfs_statistics_t.hpp │ │ │ ├── ntfs_volume_data_buffer_t.hpp │ │ │ ├── ntos_test_export_interface_t.hpp │ │ │ ├── ntpss_memory_bulk_information_t.hpp │ │ │ ├── ntvdm_flags_t.hpp │ │ │ ├── numberfmt_a_t.hpp │ │ │ ├── numberfmt_w_t.hpp │ │ │ ├── numparse_t.hpp │ │ │ ├── object_attributes32_t.hpp │ │ │ ├── object_attributes64_t.hpp │ │ │ ├── object_basic_information_t.hpp │ │ │ ├── object_directory_information_t.hpp │ │ │ ├── object_handle_flag_information_t.hpp │ │ │ ├── object_method_exception_handling_info_t.hpp │ │ │ ├── object_splay_node_t.hpp │ │ │ ├── object_type_information_t.hpp │ │ │ ├── object_types_information_t.hpp │ │ │ ├── occlusion_based_view_state_options_t.hpp │ │ │ ├── ocsp_basic_response_entry_t.hpp │ │ │ ├── ocsp_basic_response_info_t.hpp │ │ │ ├── ocsp_basic_revoked_info_t.hpp │ │ │ ├── ocsp_basic_signed_response_info_t.hpp │ │ │ ├── ocsp_cert_id_t.hpp │ │ │ ├── ocsp_request_entry_t.hpp │ │ │ ├── ocsp_request_info_t.hpp │ │ │ ├── ocsp_response_info_t.hpp │ │ │ ├── ocsp_signature_info_t.hpp │ │ │ ├── ocsp_signed_request_info_t.hpp │ │ │ ├── offer_priority_t.hpp │ │ │ ├── offsetinstancedataandlength_t.hpp │ │ │ ├── ofstruct_t.hpp │ │ │ ├── oicf_pointer_queue_state_t.hpp │ │ │ ├── ole32sqm_flags_t.hpp │ │ │ ├── ole_thunk_wow_t.hpp │ │ │ ├── olestream_t.hpp │ │ │ ├── olestreamvtbl_t.hpp │ │ │ ├── oletls_cross_thread_flags_t.hpp │ │ │ ├── oletls_prevent_rundown_mitigation_t.hpp │ │ │ ├── onexit_table_t.hpp │ │ │ ├── opaque_data_info_t.hpp │ │ │ ├── opaque_string_t.hpp │ │ │ ├── operation_end_parameters_t.hpp │ │ │ ├── operation_start_parameters_t.hpp │ │ │ ├── operators_t.hpp │ │ │ ├── optical_media_record_t.hpp │ │ │ ├── orcb_midl_proc_format_string_t.hpp │ │ │ ├── orcb_midl_type_format_string_t.hpp │ │ │ ├── orpc_dbg_all_t.hpp │ │ │ ├── orpc_init_args_t.hpp │ │ │ ├── os_frame_t.hpp │ │ │ ├── osinfo_t.hpp │ │ │ ├── osversioninfoa_t.hpp │ │ │ ├── osversioninfoex2a_t.hpp │ │ │ ├── osversioninfoex2w_t.hpp │ │ │ ├── osversioninfoex3a_t.hpp │ │ │ ├── osversioninfoex3w_t.hpp │ │ │ ├── osversioninfoexa_t.hpp │ │ │ ├── out_parameter_marshaling_client_t.hpp │ │ │ ├── out_parameter_marshaling_server_t.hpp │ │ │ ├── out_parameter_marshaling_set_t.hpp │ │ │ ├── outgoing_call_diagnosis_t.hpp │ │ │ ├── outlinetextmetrica_t.hpp │ │ │ ├── outlinetextmetricw_t.hpp │ │ │ ├── output_debug_string_info_t.hpp │ │ │ ├── overlapped_entry_t.hpp │ │ │ ├── overlapped_t.hpp │ │ │ ├── oxid_entry_t.hpp │ │ │ ├── oxidflags_t.hpp │ │ │ ├── p_unk_list_element_t.hpp │ │ │ ├── package_context_t.hpp │ │ │ ├── package_dependency_lifetime_kind_t.hpp │ │ │ ├── package_dependency_processor_architectures_t.hpp │ │ │ ├── package_family_error_details_t.hpp │ │ │ ├── package_filter_t.hpp │ │ │ ├── package_id_and_install_order_t.hpp │ │ │ ├── package_id_and_install_orders_t.hpp │ │ │ ├── package_id_t.hpp │ │ │ ├── package_info_reference_t.hpp │ │ │ ├── package_info_t.hpp │ │ │ ├── package_info_type_t.hpp │ │ │ ├── package_list_buffer_t.hpp │ │ │ ├── package_origin_t.hpp │ │ │ ├── package_path_type_t.hpp │ │ │ ├── package_version_t.hpp │ │ │ ├── packagedependency_context_t.hpp │ │ │ ├── packedeventinfo_t.hpp │ │ │ ├── page_priority_information_t.hpp │ │ │ ├── pagedir_information_t.hpp │ │ │ ├── param_attributes_t.hpp │ │ │ ├── param_description_t.hpp │ │ │ ├── param_struct_t.hpp │ │ │ ├── paraminfo_t.hpp │ │ │ ├── parse_message_context_t.hpp │ │ │ ├── partition_information_class_t.hpp │ │ │ ├── patch_main_callout_params_t.hpp │ │ │ ├── patchmatchdata_t.hpp │ │ │ ├── patchop_t.hpp │ │ │ ├── patchopcodes_t.hpp │ │ │ ├── patchwritedata_t.hpp │ │ │ ├── path_type_t.hpp │ │ │ ├── pathcch_options_t.hpp │ │ │ ├── pathname_buffer_t.hpp │ │ │ ├── pending_call_list_head_t.hpp │ │ │ ├── perfinfo_battery_life_info_t.hpp │ │ │ ├── perfinfo_boot_phase_start_t.hpp │ │ │ ├── perfinfo_boot_prefetch_information_t.hpp │ │ │ ├── perfinfo_cc_can_write_fail_t.hpp │ │ │ ├── perfinfo_cc_extra_wb_thread_info_t.hpp │ │ │ ├── perfinfo_cc_flush_cache_t.hpp │ │ │ ├── perfinfo_cc_flush_section_t.hpp │ │ │ ├── perfinfo_cc_lazy_write_scan_t.hpp │ │ │ ├── perfinfo_cc_logged_stream_info_t.hpp │ │ │ ├── perfinfo_cc_read_ahead_t.hpp │ │ │ ├── perfinfo_cc_schedule_read_ahead_t.hpp │ │ │ ├── perfinfo_cc_workitem_complete_t.hpp │ │ │ ├── perfinfo_cc_workitem_dequeue_t.hpp │ │ │ ├── perfinfo_cc_workitem_enqueue_t.hpp │ │ │ ├── perfinfo_ccswap_buffer_t.hpp │ │ │ ├── perfinfo_ccswap_idle_short_t.hpp │ │ │ ├── perfinfo_ccswap_idle_t.hpp │ │ │ ├── perfinfo_ccswap_lite_t.hpp │ │ │ ├── perfinfo_ccswap_t.hpp │ │ │ ├── perfinfo_ccswap_type_t.hpp │ │ │ ├── perfinfo_clock_interrupt_information_t.hpp │ │ │ ├── perfinfo_contiguous_page_generate_t.hpp │ │ │ ├── perfinfo_debug_event_reason_t.hpp │ │ │ ├── perfinfo_debug_event_t.hpp │ │ │ ├── perfinfo_domain_change_event_reason_t.hpp │ │ │ ├── perfinfo_domain_change_event_t.hpp │ │ │ ├── perfinfo_dpc_enqueue_information_t.hpp │ │ │ ├── perfinfo_dpc_enqueue_information_v2_t.hpp │ │ │ ├── perfinfo_dpc_execution_information_t.hpp │ │ │ ├── perfinfo_dpc_information_t.hpp │ │ │ ├── perfinfo_driver_complete_request_ret_t.hpp │ │ │ ├── perfinfo_driver_complete_request_t.hpp │ │ │ ├── perfinfo_driver_completionroutine_t.hpp │ │ │ ├── perfinfo_driver_majorfunction_ret_t.hpp │ │ │ ├── perfinfo_driver_majorfunction_t.hpp │ │ │ ├── perfinfo_dynamic_tick_disable_reason_t.hpp │ │ │ ├── perfinfo_dynamic_tick_veto_reason_t.hpp │ │ │ ├── perfinfo_executive_resource_config_t.hpp │ │ │ ├── perfinfo_file_create_t.hpp │ │ │ ├── perfinfo_file_direnum_t.hpp │ │ │ ├── perfinfo_file_information_t.hpp │ │ │ ├── perfinfo_file_operation_end_t.hpp │ │ │ ├── perfinfo_file_path_operation_t.hpp │ │ │ ├── perfinfo_file_read_write_t.hpp │ │ │ ├── perfinfo_file_simple_operation_t.hpp │ │ │ ├── perfinfo_filename_same_information_t.hpp │ │ │ ├── perfinfo_fileobject_information_t.hpp │ │ │ ├── perfinfo_flt_operation_status_t.hpp │ │ │ ├── perfinfo_flt_operation_t.hpp │ │ │ ├── perfinfo_hardpagefault_information_t.hpp │ │ │ ├── perfinfo_hv_hypercall_t.hpp │ │ │ ├── perfinfo_idle_state_change_t.hpp │ │ │ ├── perfinfo_imageload_in_pagefile_info_t.hpp │ │ │ ├── perfinfo_interrupt_information_t.hpp │ │ │ ├── perfinfo_io_timer_t.hpp │ │ │ ├── perfinfo_ipi_receive_data_t.hpp │ │ │ ├── perfinfo_ipi_send_data_t.hpp │ │ │ ├── perfinfo_kernelmemory_range_usage_t.hpp │ │ │ ├── perfinfo_long_dpc_detection_information_t.hpp │ │ │ ├── perfinfo_long_dpc_mitigation_information_t.hpp │ │ │ ├── perfinfo_mark_event_t.hpp │ │ │ ├── perfinfo_mark_information_t.hpp │ │ │ ├── perfinfo_mem_reset_info_t.hpp │ │ │ ├── perfinfo_mem_reset_info_type_t.hpp │ │ │ ├── perfinfo_memory_huge_iospace_entry_t.hpp │ │ │ ├── perfinfo_memory_information_t.hpp │ │ │ ├── perfinfo_memory_node_entry_t.hpp │ │ │ ├── perfinfo_memory_node_information_t.hpp │ │ │ ├── perfinfo_page_range_identity_t.hpp │ │ │ ├── perfinfo_pagecombine_aggregate_stat_t.hpp │ │ │ ├── perfinfo_pagecombine_iteration_stat_t.hpp │ │ │ ├── perfinfo_pfmapped_section_information_t.hpp │ │ │ ├── perfinfo_pfmapped_section_object_information_t.hpp │ │ │ ├── perfinfo_pmc_sample_information_t.hpp │ │ │ ├── perfinfo_po_calibrated_perfcounter_t.hpp │ │ │ ├── perfinfo_po_notify_device_complete_t.hpp │ │ │ ├── perfinfo_po_notify_device_t.hpp │ │ │ ├── perfinfo_po_postsleep_t.hpp │ │ │ ├── perfinfo_po_presleep_t.hpp │ │ │ ├── perfinfo_po_session_callout_ret_t.hpp │ │ │ ├── perfinfo_po_session_callout_t.hpp │ │ │ ├── perfinfo_ppm_idle_exit_latency_t.hpp │ │ │ ├── perfinfo_ppm_idle_state_change_t.hpp │ │ │ ├── perfinfo_ppm_idle_state_enter_t.hpp │ │ │ ├── perfinfo_ppm_idle_state_exit_t.hpp │ │ │ ├── perfinfo_ppm_perf_state_change_t.hpp │ │ │ ├── perfinfo_ppm_thermal_constraint_t.hpp │ │ │ ├── perfinfo_process_inswap_t.hpp │ │ │ ├── perfinfo_process_perfctr32_t.hpp │ │ │ ├── perfinfo_process_perfctr64_t.hpp │ │ │ ├── perfinfo_process_perfctr_t.hpp │ │ │ ├── perfinfo_sampled_profile_cache_t.hpp │ │ │ ├── perfinfo_sampled_profile_config_t.hpp │ │ │ ├── perfinfo_sampled_profile_information_t.hpp │ │ │ ├── perfinfo_sessioncreate_information_t.hpp │ │ │ ├── perfinfo_set_devices_state_ret_t.hpp │ │ │ ├── perfinfo_set_devices_state_t.hpp │ │ │ ├── perfinfo_set_power_action_ret_t.hpp │ │ │ ├── perfinfo_set_power_action_t.hpp │ │ │ ├── perfinfo_spec_control_retpoline_exit_t.hpp │ │ │ ├── perfinfo_spinlock_config_t.hpp │ │ │ ├── perfinfo_syscall_enter_data_t.hpp │ │ │ ├── perfinfo_syscall_exit_data_t.hpp │ │ │ ├── perfinfo_system_memory_information_t.hpp │ │ │ ├── perfinfo_thread_feedback_read_t.hpp │ │ │ ├── perfinfo_trace_header_t.hpp │ │ │ ├── perfinfo_vad_rotate_info_t.hpp │ │ │ ├── perfinfo_virtual_alloc_t.hpp │ │ │ ├── perfinfo_virtual_alloc_xpartition_t.hpp │ │ │ ├── perfinfo_vtl_change_t.hpp │ │ │ ├── perfinfo_workingset_entry_t.hpp │ │ │ ├── perfinfo_workingset_information_t.hpp │ │ │ ├── perfinfo_workload_class_update_t.hpp │ │ │ ├── perfinfo_yield_processor_information_t.hpp │ │ │ ├── performance_data_t.hpp │ │ │ ├── physical_channel_run_t.hpp │ │ │ ├── physical_disk_record_t.hpp │ │ │ ├── pidmsi_status_value_t.hpp │ │ │ ├── pipe_handle_wrapper_api_types_t.hpp │ │ │ ├── pipedesc_flags_t.hpp │ │ │ ├── pkcs12_pbes2_export_params_t.hpp │ │ │ ├── plex_read_data_request_t.hpp │ │ │ ├── plugplay_control_blocked_driver_data_t.hpp │ │ │ ├── plugplay_control_class_association_data_t.hpp │ │ │ ├── plugplay_control_class_t.hpp │ │ │ ├── plugplay_control_conflict_data_t.hpp │ │ │ ├── plugplay_control_conflict_entry_t.hpp │ │ │ ├── plugplay_control_conflict_list_t.hpp │ │ │ ├── plugplay_control_conflict_strings_t.hpp │ │ │ ├── plugplay_control_depth_data_t.hpp │ │ │ ├── plugplay_control_device_control_data_t.hpp │ │ │ ├── plugplay_control_device_interface_enabled_t.hpp │ │ │ ├── plugplay_control_device_relations_data_t.hpp │ │ │ ├── plugplay_control_install_data_t.hpp │ │ │ ├── plugplay_control_interface_alias_data_t.hpp │ │ │ ├── plugplay_control_interface_list_data_t.hpp │ │ │ ├── plugplay_control_legacy_devgen_data_t.hpp │ │ │ ├── plugplay_control_property_data_t.hpp │ │ │ ├── plugplay_control_query_and_remove_data_t.hpp │ │ │ ├── plugplay_control_related_device_data_t.hpp │ │ │ ├── plugplay_control_retrieve_dock_data_t.hpp │ │ │ ├── plugplay_control_status_data_t.hpp │ │ │ ├── plugplay_control_target_relation_data_t.hpp │ │ │ ├── plugplay_control_user_response_data_t.hpp │ │ │ ├── plugplay_custom_notification_t.hpp │ │ │ ├── plugplay_notify_hdr_t.hpp │ │ │ ├── pmd_t.hpp │ │ │ ├── pmsihandle_t.hpp │ │ │ ├── point_of_random_delay_t.hpp │ │ │ ├── pointer_activation_policy_t.hpp │ │ │ ├── pointer_buffer_swap_context_t.hpp │ │ │ ├── pointer_bufferlength_swap_context_t.hpp │ │ │ ├── pointer_feedback_mode_t.hpp │ │ │ ├── pointer_memsize_swap_context_t.hpp │ │ │ ├── pointfloat_t.hpp │ │ │ ├── pointl_t.hpp │ │ │ ├── policy_account_domain_info_t.hpp │ │ │ ├── pooled_usage_and_limits_t.hpp │ │ │ ├── port_data_entry_t.hpp │ │ │ ├── port_data_information_t.hpp │ │ │ ├── port_information_class_t.hpp │ │ │ ├── port_view_t.hpp │ │ │ ├── postrelrifref_t.hpp │ │ │ ├── powerbroadcast_setting_t.hpp │ │ │ ├── prevent_rundown_bias_container_t.hpp │ │ │ ├── prevent_rundown_bias_t.hpp │ │ │ ├── prevent_rundown_bias_type_t.hpp │ │ │ ├── priority_hint_t.hpp │ │ │ ├── priv_hive_cache_data_t.hpp │ │ │ ├── priv_hive_hkey_cache_t.hpp │ │ │ ├── priv_mem_allocator_t.hpp │ │ │ ├── priv_mem_deleter_t.hpp │ │ │ ├── priv_resolver_info_t.hpp │ │ │ ├── priv_scm_info_t.hpp │ │ │ ├── privkeyver3_t.hpp │ │ │ ├── proc_thread_attribute_list_t.hpp │ │ │ ├── proc_thread_attribute_num_t.hpp │ │ │ ├── process_access_token_t.hpp │ │ │ ├── process_activator_token_t.hpp │ │ │ ├── process_activity_type_t.hpp │ │ │ ├── process_affinity_update_mode_t.hpp │ │ │ ├── process_basic_information64_t.hpp │ │ │ ├── process_basic_information_t.hpp │ │ │ ├── process_child_process_information_t.hpp │ │ │ ├── process_combine_security_domains_information_t.hpp │ │ │ ├── process_commit_release_information_t.hpp │ │ │ ├── process_cycle_time_information_t.hpp │ │ │ ├── process_devicemap_information_ex_t.hpp │ │ │ ├── process_devicemap_information_t.hpp │ │ │ ├── process_dynamic_eh_continuation_target_t.hpp │ │ │ ├── process_dynamic_eh_continuation_targets_information_t.hpp │ │ │ ├── process_dynamic_enforced_address_range_t.hpp │ │ │ ├── process_dynamic_enforced_address_ranges_information_t.hpp │ │ │ ├── process_dynamic_function_table_information_t.hpp │ │ │ ├── process_energy_component_type_num_t.hpp │ │ │ ├── process_energy_tracking_state_t.hpp │ │ │ ├── process_exception_port_t.hpp │ │ │ ├── process_extended_basic_information64_t.hpp │ │ │ ├── process_extended_basic_information_t.hpp │ │ │ ├── process_fault_information_t.hpp │ │ │ ├── process_fiber_shadow_stack_allocation_information_t.hpp │ │ │ ├── process_foreground_background_t.hpp │ │ │ ├── process_free_fiber_shadow_stack_allocation_information_t.hpp │ │ │ ├── process_handle_information_t.hpp │ │ │ ├── process_handle_snapshot_information_t.hpp │ │ │ ├── process_handle_table_entry_info_t.hpp │ │ │ ├── process_handle_tracing_enable_ex_t.hpp │ │ │ ├── process_handle_tracing_enable_t.hpp │ │ │ ├── process_handle_tracing_entry_t.hpp │ │ │ ├── process_handle_tracing_query_t.hpp │ │ │ ├── process_handle_wrapper_api_types_t.hpp │ │ │ ├── process_handle_wrapper_traits_t.hpp │ │ │ ├── process_heap_entry_t.hpp │ │ │ ├── process_heap_information_t.hpp │ │ │ ├── process_identity_t.hpp │ │ │ ├── process_information_class_t.hpp │ │ │ ├── process_information_t.hpp │ │ │ ├── process_instrumentation_callback_information_t.hpp │ │ │ ├── process_job_memory_info_t.hpp │ │ │ ├── process_keepalive_count_information_t.hpp │ │ │ ├── process_leap_second_info_t.hpp │ │ │ ├── process_leap_second_information_t.hpp │ │ │ ├── process_logging_information_t.hpp │ │ │ ├── process_machine_information_t.hpp │ │ │ ├── process_memory_allocation_mode_t.hpp │ │ │ ├── process_memory_exhaustion_info_t.hpp │ │ │ ├── process_memory_exhaustion_type_t.hpp │ │ │ ├── process_mitigation_aslr_policy_t.hpp │ │ │ ├── process_mitigation_binary_signature_policy_t.hpp │ │ │ ├── process_mitigation_child_process_policy_t.hpp │ │ │ ├── process_mitigation_control_flow_guard_policy_t.hpp │ │ │ ├── process_mitigation_dep_policy_t.hpp │ │ │ ├── process_mitigation_dynamic_code_policy_t.hpp │ │ │ ├── process_mitigation_extension_point_disable_policy_t.hpp │ │ │ ├── process_mitigation_font_disable_policy_t.hpp │ │ │ ├── process_mitigation_image_load_policy_t.hpp │ │ │ ├── process_mitigation_payload_restriction_policy_t.hpp │ │ │ ├── process_mitigation_policy_information_t.hpp │ │ │ ├── process_mitigation_policy_t.hpp │ │ │ ├── process_mitigation_redirection_trust_policy_t.hpp │ │ │ ├── process_mitigation_side_channel_isolation_policy_t.hpp │ │ │ ├── process_mitigation_strict_handle_check_policy_t.hpp │ │ │ ├── process_mitigation_system_call_disable_policy_t.hpp │ │ │ ├── process_mitigation_system_call_filter_policy_t.hpp │ │ │ ├── process_mitigation_user_shadow_stack_policy_t.hpp │ │ │ ├── process_power_throttling_state_t.hpp │ │ │ ├── process_priority_class_t.hpp │ │ │ ├── process_protection_level_information_t.hpp │ │ │ ├── process_readwritevm_logging_information_t.hpp │ │ │ ├── process_revoke_file_handles_information_t.hpp │ │ │ ├── process_security_domain_information_t.hpp │ │ │ ├── process_session_information_t.hpp │ │ │ ├── process_stack_allocation_information_ex_t.hpp │ │ │ ├── process_stack_allocation_information_t.hpp │ │ │ ├── process_state_change_type_t.hpp │ │ │ ├── process_system_resource_management_t.hpp │ │ │ ├── process_t.hpp │ │ │ ├── process_telemetry_id_information_t.hpp │ │ │ ├── process_tls_information_t.hpp │ │ │ ├── process_tls_information_type_t.hpp │ │ │ ├── process_token_t.hpp │ │ │ ├── process_uptime_information_t.hpp │ │ │ ├── process_wake_information_t.hpp │ │ │ ├── process_window_information_t.hpp │ │ │ ├── process_working_set_control_t.hpp │ │ │ ├── process_working_set_operation_t.hpp │ │ │ ├── process_ws_watch_information_ex_t.hpp │ │ │ ├── process_ws_watch_information_t.hpp │ │ │ ├── processinfoclass_t.hpp │ │ │ ├── processor_idle_state_t.hpp │ │ │ ├── processor_idle_states_t.hpp │ │ │ ├── processor_idle_times_t.hpp │ │ │ ├── processor_power_information_t.hpp │ │ │ ├── processor_power_policy_info_t.hpp │ │ │ ├── processor_power_policy_t.hpp │ │ │ ├── processor_record_t.hpp │ │ │ ├── profile_source_info_t.hpp │ │ │ ├── progress_invoke_setting_t.hpp │ │ │ ├── prop_midl_expr_format_string_t.hpp │ │ │ ├── prop_midl_proc_format_string_t.hpp │ │ │ ├── prop_midl_type_format_string_t.hpp │ │ │ ├── prov_enumalgs_ex_t.hpp │ │ │ ├── prov_enumalgs_t.hpp │ │ │ ├── provider_info_t.hpp │ │ │ ├── proxy_phase_t.hpp │ │ │ ├── proxy_stub_registration_entry_properties_t.hpp │ │ │ ├── proxy_stub_registration_entry_property_flags_t.hpp │ │ │ ├── proxy_stub_registration_entry_property_index_t.hpp │ │ │ ├── prt_t.hpp │ │ │ ├── psfeature_custpaper_t.hpp │ │ │ ├── psfeature_output_t.hpp │ │ │ ├── psinjectdata_t.hpp │ │ │ ├── psm_activate_background_type_t.hpp │ │ │ ├── psm_appstate_change_routine_category_t.hpp │ │ │ ├── psm_appstate_registration_t.hpp │ │ │ ├── psm_broker_token_scope_t.hpp │ │ │ ├── pss_capture_flags_t.hpp │ │ │ ├── pss_duplicate_flags_t.hpp │ │ │ ├── pss_handle_flags_t.hpp │ │ │ ├── pss_performance_counters_t.hpp │ │ │ ├── pss_process_flags_t.hpp │ │ │ ├── pss_process_information_t.hpp │ │ │ ├── pss_query_information_class_t.hpp │ │ │ ├── pss_thread_flags_t.hpp │ │ │ ├── pubkey_t.hpp │ │ │ ├── pubkeyver3_t.hpp │ │ │ ├── public_object_basic_information_t.hpp │ │ │ ├── public_object_type_information_t.hpp │ │ │ ├── publickeystruc_t.hpp │ │ │ ├── pullstate_t.hpp │ │ │ ├── push_call_chain_info_t.hpp │ │ │ ├── push_com_call_passthrough_trace_activity_t.hpp │ │ │ ├── push_com_call_trace_activity_t.hpp │ │ │ ├── push_com_callout_trace_activity_t.hpp │ │ │ ├── push_logical_thread_id_t.hpp │ │ │ ├── push_request_container_passthrough_data_t.hpp │ │ │ ├── push_tls_prevent_rundown_mitigation_t.hpp │ │ │ ├── push_trace_activity_t.hpp │ │ │ ├── pushstate_t.hpp │ │ │ ├── pvalue_a_t.hpp │ │ │ ├── pvalue_w_t.hpp │ │ │ ├── query_bad_ranges_input_range_t.hpp │ │ │ ├── query_bad_ranges_input_t.hpp │ │ │ ├── query_bad_ranges_output_range_t.hpp │ │ │ ├── query_bad_ranges_output_t.hpp │ │ │ ├── query_cached_runs_bin_t.hpp │ │ │ ├── query_cached_runs_entry_t.hpp │ │ │ ├── query_cached_runs_input_t.hpp │ │ │ ├── query_cached_runs_output_t.hpp │ │ │ ├── query_cached_runs_run_t.hpp │ │ │ ├── query_direct_access_extents_t.hpp │ │ │ ├── query_file_layout_filter_type_t.hpp │ │ │ ├── query_file_layout_input_t.hpp │ │ │ ├── query_file_layout_output_t.hpp │ │ │ ├── query_performance_counter_flags_t.hpp │ │ │ ├── query_service_configa_t.hpp │ │ │ ├── query_service_configw_t.hpp │ │ │ ├── query_service_lock_statusa_t.hpp │ │ │ ├── query_service_lock_statusw_t.hpp │ │ │ ├── query_storage_reserve_input_t.hpp │ │ │ ├── query_storage_reserve_output_t.hpp │ │ │ ├── queue_user_apc_flags_t.hpp │ │ │ ├── quirks_t.hpp │ │ │ ├── quota_limits_ex_t.hpp │ │ │ ├── quota_limits_t.hpp │ │ │ ├── raise_activation_authentication_level_app_compat_settings_t.hpp │ │ │ ├── rasterizer_status_t.hpp │ │ │ ├── rate_quota_limit_t.hpp │ │ │ ├── rc_config_t.hpp │ │ │ ├── rdr_callout_state_t.hpp │ │ │ ├── read_directory_notify_information_class_t.hpp │ │ │ ├── read_file_usn_data_t.hpp │ │ │ ├── read_usn_journal_data_v0_t.hpp │ │ │ ├── read_usn_journal_data_v1_t.hpp │ │ │ ├── rearrange_file_data32_t.hpp │ │ │ ├── rearrange_file_data_t.hpp │ │ │ ├── reason_buffer_t.hpp │ │ │ ├── reason_context_t.hpp │ │ │ ├── rectl_t.hpp │ │ │ ├── redirection_descriptor_t.hpp │ │ │ ├── redirection_function_descriptor_t.hpp │ │ │ ├── reentrant_sta_state_t.hpp │ │ │ ├── refid_to_fullptr_element_t.hpp │ │ │ ├── refs_deallocate_ranges_input_buffer_t.hpp │ │ │ ├── refs_deallocate_ranges_range_t.hpp │ │ │ ├── refs_remove_hardlink_backpointer_t.hpp │ │ │ ├── refs_smr_volume_gc_action_t.hpp │ │ │ ├── refs_smr_volume_gc_method_t.hpp │ │ │ ├── refs_smr_volume_gc_parameters_t.hpp │ │ │ ├── refs_smr_volume_gc_state_t.hpp │ │ │ ├── refs_smr_volume_info_output_t.hpp │ │ │ ├── refs_stream_extent_properties_t.hpp │ │ │ ├── refs_stream_extent_t.hpp │ │ │ ├── refs_stream_snapshot_list_output_buffer_entry_t.hpp │ │ │ ├── refs_stream_snapshot_list_output_buffer_t.hpp │ │ │ ├── refs_stream_snapshot_management_input_buffer_t.hpp │ │ │ ├── refs_stream_snapshot_query_deltas_input_buffer_t.hpp │ │ │ ├── refs_stream_snapshot_query_deltas_output_buffer_t.hpp │ │ │ ├── refs_volume_counter_info_input_buffer_t.hpp │ │ │ ├── refs_volume_data_buffer_t.hpp │ │ │ ├── reg_action_t.hpp │ │ │ ├── reg_input_entry_t.hpp │ │ │ ├── reg_input_t.hpp │ │ │ ├── reg_notify_information_t.hpp │ │ │ ├── reg_output_t.hpp │ │ │ ├── registration_property_type_t.hpp │ │ │ ├── registration_refresh_policy_t.hpp │ │ │ ├── registration_source_t.hpp │ │ │ ├── registration_store_helper_t.hpp │ │ │ ├── registration_store_t.hpp │ │ │ ├── registry_guid_list_t.hpp │ │ │ ├── registry_key_handle_wrapper_api_types_t.hpp │ │ │ ├── registry_key_handle_wrapper_traits_t.hpp │ │ │ ├── registry_key_t.hpp │ │ │ ├── registry_key_value_t.hpp │ │ │ ├── registry_key_watcher_t.hpp │ │ │ ├── registry_path_watcher_t.hpp │ │ │ ├── regquery_flags_t.hpp │ │ │ ├── relative_module_address_t.hpp │ │ │ ├── release_ctrl_unk_callback_data_t.hpp │ │ │ ├── rem_interface_weak_ref_t.hpp │ │ │ ├── remotable_handle_t.hpp │ │ │ ├── remote_link_tracking_information_t.hpp │ │ │ ├── remote_metafilepict_t.hpp │ │ │ ├── remote_name_infoa_t.hpp │ │ │ ├── remote_name_infow_t.hpp │ │ │ ├── remote_reply_scm_info_t.hpp │ │ │ ├── remote_request_scm_info_t.hpp │ │ │ ├── remsecurity_attributes_t.hpp │ │ │ ├── repair_copies_input_t.hpp │ │ │ ├── repair_copies_output_t.hpp │ │ │ ├── repair_storage_reserve_input_t.hpp │ │ │ ├── reparse_data_buffer_ex_t.hpp │ │ │ ├── reparse_guid_data_buffer_t.hpp │ │ │ ├── reparse_index_key_t.hpp │ │ │ ├── reparse_point_information_t.hpp │ │ │ ├── replaces_general_numeric_defines_t.hpp │ │ │ ├── reported_exceptions_t.hpp │ │ │ ├── request_oplock_input_buffer_t.hpp │ │ │ ├── request_oplock_output_buffer_t.hpp │ │ │ ├── request_raw_encrypted_data_t.hpp │ │ │ ├── resource_scope_t.hpp │ │ │ ├── resource_strings_t.hpp │ │ │ ├── resourcemanager_basic_information_t.hpp │ │ │ ├── resourcemanager_completion_information_t.hpp │ │ │ ├── response_message_type_t.hpp │ │ │ ├── restart_usn_journal_data_t.hpp │ │ │ ├── restricted_error_chain_enumerator_t.hpp │ │ │ ├── resume_performance_t.hpp │ │ │ ├── retrieval_pointer_base_t.hpp │ │ │ ├── retrieval_pointer_count_t.hpp │ │ │ ├── retrieval_pointers_and_refcount_buffer_t.hpp │ │ │ ├── retrieval_pointers_buffer_t.hpp │ │ │ ├── revoke_classes_t.hpp │ │ │ ├── revoke_entry_t.hpp │ │ │ ├── rgndata_t.hpp │ │ │ ├── rgndataheader_t.hpp │ │ │ ├── rif_ref_buffer_t.hpp │ │ │ ├── rip_info_t.hpp │ │ │ ├── rm_activity_importance_t.hpp │ │ │ ├── rm_appmodel_policy_flags_t.hpp │ │ │ ├── rm_common_policy_flags_t.hpp │ │ │ ├── rm_execution_speed_t.hpp │ │ │ ├── rm_internal_resources_t.hpp │ │ │ ├── rm_presentation_class_t.hpp │ │ │ ├── rm_proc_empty_policy_t.hpp │ │ │ ├── rm_proximity_class_t.hpp │ │ │ ├── rm_resource_limit_flags_t.hpp │ │ │ ├── rm_resource_limit_mask_t.hpp │ │ │ ├── rm_resource_limits_t.hpp │ │ │ ├── rm_resource_request_t.hpp │ │ │ ├── rm_resource_set_properties_t.hpp │ │ │ ├── rm_revoke_action_t.hpp │ │ │ ├── rm_revoke_message_t.hpp │ │ │ ├── rm_revoke_reason_t.hpp │ │ │ ├── rm_sharing_options_t.hpp │ │ │ ├── rmp_seg_t.hpp │ │ │ ├── ro_error_reporting_flags_t.hpp │ │ │ ├── ro_init_type_t.hpp │ │ │ ├── ro_registration_cookie_t.hpp │ │ │ ├── ro_variant_t.hpp │ │ │ ├── root_info_luid_t.hpp │ │ │ ├── roparamiidhandle_t.hpp │ │ │ ├── rsapubkey_t.hpp │ │ │ ├── rsdsi_header_t.hpp │ │ │ ├── rsdsi_t.hpp │ │ │ ├── rtc_error_number_t.hpp │ │ │ ├── rtlwow64_crossprocess_work_head_t.hpp │ │ │ ├── rtlwow64_crossprocess_work_item_t.hpp │ │ │ ├── rtlwow64_crossprocess_work_operation_t.hpp │ │ │ ├── rtti_parser_t.hpp │ │ │ ├── rundown_instrumentation_data_t.hpp │ │ │ ├── rundown_server_oid_t.hpp │ │ │ ├── runlevel_t.hpp │ │ │ ├── running_in_dcom_launch_state_t.hpp │ │ │ ├── running_in_rpcss_state_t.hpp │ │ │ ├── runtime_broker_cache_key_compare_functor_t.hpp │ │ │ ├── runtime_broker_cache_key_t.hpp │ │ │ ├── s_access_cache_t.hpp │ │ │ ├── s_activatable_class_id_hash_node_t.hpp │ │ │ ├── s_blanket_t.hpp │ │ │ ├── s_catchable_type_array_t.hpp │ │ │ ├── s_catchable_type_t.hpp │ │ │ ├── s_channel_hook_call_info_t.hpp │ │ │ ├── s_ext_hash_node_t.hpp │ │ │ ├── s_guid_t.hpp │ │ │ ├── s_hash_chain_t.hpp │ │ │ ├── s_hook_list_t.hpp │ │ │ ├── s_multi_guid_hash_node_t.hpp │ │ │ ├── s_multi_guid_key_t.hpp │ │ │ ├── s_name_hash_node_t.hpp │ │ │ ├── s_name_key_t.hpp │ │ │ ├── s_pending_call_t.hpp │ │ │ ├── s_permission_header_t.hpp │ │ │ ├── s_pointer_hash_node_t.hpp │ │ │ ├── s_rtti_base_class_array_t.hpp │ │ │ ├── s_rtti_base_class_descriptor2_t.hpp │ │ │ ├── s_rtti_base_class_descriptor_t.hpp │ │ │ ├── s_rtti_class_hierarchy_descriptor_t.hpp │ │ │ ├── s_rtti_complete_object_locator2_t.hpp │ │ │ ├── s_serialization_header_t.hpp │ │ │ ├── s_string_hash_node_t.hpp │ │ │ ├── s_throw_info_t.hpp │ │ │ ├── s_two_bits_t.hpp │ │ │ ├── safe_int_error_t.hpp │ │ │ ├── safe_int_exception_t.hpp │ │ │ ├── sasl_authzid_state_t.hpp │ │ │ ├── save_ndrslot_t.hpp │ │ │ ├── sc_action_t.hpp │ │ │ ├── sc_action_type_t.hpp │ │ │ ├── sc_enum_type_t.hpp │ │ │ ├── sc_event_type_t.hpp │ │ │ ├── sc_handle_t.hpp │ │ │ ├── sc_notification_registration_t.hpp │ │ │ ├── sc_status_type_t.hpp │ │ │ ├── sch_get_extensions_options_t.hpp │ │ │ ├── schannel_alg_t.hpp │ │ │ ├── schannel_cred_t.hpp │ │ │ ├── scm_midl_expr_format_string_t.hpp │ │ │ ├── scm_midl_proc_format_string_t.hpp │ │ │ ├── scm_midl_type_format_string_t.hpp │ │ │ ├── scm_reply_info_t.hpp │ │ │ ├── scm_request_info_t.hpp │ │ │ ├── scmregkey_t.hpp │ │ │ ├── scontext_queue_t.hpp │ │ │ ├── scope_table_amd64_t.hpp │ │ │ ├── scope_table_arm64_t.hpp │ │ │ ├── scope_table_arm_t.hpp │ │ │ ├── scrt_module_type_t.hpp │ │ │ ├── scrt_narrow_argv_policy_t.hpp │ │ │ ├── scrt_narrow_environment_policy_t.hpp │ │ │ ├── scrt_native_startup_state_t.hpp │ │ │ ├── scrt_wide_argv_policy_t.hpp │ │ │ ├── scrub_data_input_t.hpp │ │ │ ├── scrub_data_output_t.hpp │ │ │ ├── scrub_parity_extent_data_t.hpp │ │ │ ├── scrub_parity_extent_t.hpp │ │ │ ├── sd_change_machine_sid_input_t.hpp │ │ │ ├── sd_change_machine_sid_output_t.hpp │ │ │ ├── sd_enum_sds_entry_t.hpp │ │ │ ├── sd_enum_sds_input_t.hpp │ │ │ ├── sd_enum_sds_output_t.hpp │ │ │ ├── sd_global_change_input_t.hpp │ │ │ ├── sd_global_change_output_t.hpp │ │ │ ├── sd_query_stats_input_t.hpp │ │ │ ├── sd_query_stats_output_t.hpp │ │ │ ├── sdword_hash_node_t.hpp │ │ │ ├── secpkg_app_mode_info_t.hpp │ │ │ ├── secpkg_attr_lct_status_t.hpp │ │ │ ├── secpkg_cred_class_t.hpp │ │ │ ├── section_handle_wrapper_api_types_t.hpp │ │ │ ├── section_image_information32_t.hpp │ │ │ ├── section_image_information64_t.hpp │ │ │ ├── section_information_class_t.hpp │ │ │ ├── section_internal_image_information_t.hpp │ │ │ ├── sectionbasicinfo_t.hpp │ │ │ ├── secure_setting_value_type_t.hpp │ │ │ ├── secure_speculation_control_information_t.hpp │ │ │ ├── segment_heap_performance_counter_information_t.hpp │ │ │ ├── semaphore_basic_information_t.hpp │ │ │ ├── semaphore_handle_wrapper_api_types_t.hpp │ │ │ ├── semaphore_information_class_t.hpp │ │ │ ├── send_message_to_classic_sta_params_t.hpp │ │ │ ├── send_message_to_classic_sta_reason_t.hpp │ │ │ ├── serializable_property_t.hpp │ │ │ ├── serializer_t.hpp │ │ │ ├── server_address_type_t.hpp │ │ │ ├── server_call_t.hpp │ │ │ ├── server_call_tracing_info_t.hpp │ │ │ ├── server_context_work_data_t.hpp │ │ │ ├── server_location_info_t.hpp │ │ │ ├── server_machine_registration_entry_properties_t.hpp │ │ │ ├── server_machine_registration_entry_property_flags_t.hpp │ │ │ ├── server_machine_registration_entry_property_index_t.hpp │ │ │ ├── server_protection_level_t.hpp │ │ │ ├── server_registration_entry_properties_t.hpp │ │ │ ├── server_registration_entry_property_flags_t.hpp │ │ │ ├── server_registration_entry_property_index_t.hpp │ │ │ ├── server_type_enum_t.hpp │ │ │ ├── serversilo_basic_information_t.hpp │ │ │ ├── serversilo_init_information_t.hpp │ │ │ ├── service_control_status_reason_paramsa_t.hpp │ │ │ ├── service_control_status_reason_paramsw_t.hpp │ │ │ ├── service_custom_system_state_change_data_item_t.hpp │ │ │ ├── service_delayed_auto_start_info_t.hpp │ │ │ ├── service_descriptiona_t.hpp │ │ │ ├── service_descriptionw_t.hpp │ │ │ ├── service_directory_type_t.hpp │ │ │ ├── service_failure_actions_flag_t.hpp │ │ │ ├── service_failure_actionsa_t.hpp │ │ │ ├── service_failure_actionsw_t.hpp │ │ │ ├── service_launch_protected_info_t.hpp │ │ │ ├── service_notify_1_t.hpp │ │ │ ├── service_notify_2a_t.hpp │ │ │ ├── service_notify_2w_t.hpp │ │ │ ├── service_preferred_node_info_t.hpp │ │ │ ├── service_preshutdown_info_t.hpp │ │ │ ├── service_registry_state_type_t.hpp │ │ │ ├── service_required_privileges_infoa_t.hpp │ │ │ ├── service_required_privileges_infow_t.hpp │ │ │ ├── service_shared_directory_type_t.hpp │ │ │ ├── service_shared_registry_state_type_t.hpp │ │ │ ├── service_sid_info_t.hpp │ │ │ ├── service_start_reason_t.hpp │ │ │ ├── service_status_handle_t.hpp │ │ │ ├── service_status_process_t.hpp │ │ │ ├── service_status_t.hpp │ │ │ ├── service_table_entrya_t.hpp │ │ │ ├── service_table_entryw_t.hpp │ │ │ ├── service_timechange_info_t.hpp │ │ │ ├── service_trigger_custom_state_id_t.hpp │ │ │ ├── service_trigger_info_t.hpp │ │ │ ├── service_trigger_specific_data_item_t.hpp │ │ │ ├── service_trigger_t.hpp │ │ │ ├── session_user_context_t.hpp │ │ │ ├── set_dax_alloc_alignment_hint_input_t.hpp │ │ │ ├── set_frame_cloak_t.hpp │ │ │ ├── set_power_setting_value_t.hpp │ │ │ ├── setjmp_float128_t.hpp │ │ │ ├── shared_or_exclusive_lock_t.hpp │ │ │ ├── shared_virtual_disk_handle_state_t.hpp │ │ │ ├── shared_virtual_disk_support_t.hpp │ │ │ ├── shared_virtual_disk_support_type_t.hpp │ │ │ ├── shellhookinfo_t.hpp │ │ │ ├── short_sizedarr_t.hpp │ │ │ ├── shrink_volume_information_t.hpp │ │ │ ├── shrink_volume_request_types_t.hpp │ │ │ ├── shuffle_file_data_t.hpp │ │ │ ├── shutdown_action_t.hpp │ │ │ ├── siloobject_basic_information_t.hpp │ │ │ ├── siloobject_root_directory_t.hpp │ │ │ ├── sl_appx_cache_t.hpp │ │ │ ├── sl_appx_cache_value_descriptor_t.hpp │ │ │ ├── sl_hwid_device_info_t.hpp │ │ │ ├── sl_kmem_cache_t.hpp │ │ │ ├── sl_kmem_cache_value_descriptor_t.hpp │ │ │ ├── small_rect_t.hpp │ │ │ ├── smb_share_flush_and_purge_input_t.hpp │ │ │ ├── smb_share_flush_and_purge_output_t.hpp │ │ │ ├── smipid_hash_node_t.hpp │ │ │ ├── snapshot_report_t.hpp │ │ │ ├── socket_handle_wrapper_api_types_t.hpp │ │ │ ├── soid_registration_t.hpp │ │ │ ├── source_of_client_h_result_t.hpp │ │ │ ├── sparse_overallocate_data_t.hpp │ │ │ ├── special_properties_t.hpp │ │ │ ├── sqm_stream_entry_ex_t.hpp │ │ │ ├── sqm_stream_entry_t.hpp │ │ │ ├── sqm_type_t.hpp │ │ │ ├── sr_cache_context_t.hpp │ │ │ ├── sr_cache_expand_macros_evaluator_t.hpp │ │ │ ├── sr_cache_expand_macros_flags_t.hpp │ │ │ ├── sr_cache_flags_t.hpp │ │ │ ├── sr_cache_manager_t.hpp │ │ │ ├── srgtprot_midl_proc_format_string_t.hpp │ │ │ ├── srgtprot_midl_type_format_string_t.hpp │ │ │ ├── ssl_ecckey_blob_t.hpp │ │ │ ├── ssl_f12_extra_cert_chain_policy_status_t.hpp │ │ │ ├── ssl_hpkp_header_extra_cert_chain_policy_para_t.hpp │ │ │ ├── ssl_key_pin_extra_cert_chain_policy_para_t.hpp │ │ │ ├── ssl_key_pin_extra_cert_chain_policy_status_t.hpp │ │ │ ├── stack_trace_data_t.hpp │ │ │ ├── stack_trace_t.hpp │ │ │ ├── stack_walk_event_data_t.hpp │ │ │ ├── standard_com_client_call_t.hpp │ │ │ ├── standard_com_server_call_t.hpp │ │ │ ├── starting_lcn_input_buffer_ex_t.hpp │ │ │ ├── starting_lcn_input_buffer_t.hpp │ │ │ ├── starting_vcn_input_buffer_t.hpp │ │ │ ├── startupinfoa_t.hpp │ │ │ ├── startupinfoexa_t.hpp │ │ │ ├── startupinfoexw_t.hpp │ │ │ ├── startupinfow_t.hpp │ │ │ ├── stat32_t.hpp │ │ │ ├── stat32i64_t.hpp │ │ │ ├── stat64_t.hpp │ │ │ ├── stat64i32_t.hpp │ │ │ ├── stat_t.hpp │ │ │ ├── std_disc_data_t.hpp │ │ │ ├── std_exception_data_t.hpp │ │ │ ├── std_type_info_data_t.hpp │ │ │ ├── storage_query_dependent_volume_lev1_entry_t.hpp │ │ │ ├── storage_query_dependent_volume_lev2_entry_t.hpp │ │ │ ├── storage_query_dependent_volume_request_t.hpp │ │ │ ├── storage_query_dependent_volume_response_t.hpp │ │ │ ├── storage_reserve_area_definition_t.hpp │ │ │ ├── storage_reserve_area_info_t.hpp │ │ │ ├── storage_reserve_id_t.hpp │ │ │ ├── stowed_exception_information_header_t.hpp │ │ │ ├── stowed_exception_information_v1_t.hpp │ │ │ ├── stowed_exception_information_v2_flat_t.hpp │ │ │ ├── stowed_exception_information_v2_t.hpp │ │ │ ├── stream_data_reader_writer_t.hpp │ │ │ ├── stream_extent_entry_t.hpp │ │ │ ├── stream_info_levels_t.hpp │ │ │ ├── stream_information_entry_t.hpp │ │ │ ├── stream_layout_entry_t.hpp │ │ │ ├── streams_associate_id_input_buffer_t.hpp │ │ │ ├── streams_query_id_output_buffer_t.hpp │ │ │ ├── streams_query_parameters_output_buffer_t.hpp │ │ │ ├── string_cache_t.hpp │ │ │ ├── string_opaque_t.hpp │ │ │ ├── stub_phase_t.hpp │ │ │ ├── subsystem_information_type_t.hpp │ │ │ ├── subtraction_state_t.hpp │ │ │ ├── supported_os_info_t.hpp │ │ │ ├── suspend_resiliency_state_t.hpp │ │ │ ├── suspend_resiliency_type_t.hpp │ │ │ ├── suuid_hash_node_t.hpp │ │ │ ├── svc_sk_call_parameters_t.hpp │ │ │ ├── switch_context_dll_trigger_condition_t.hpp │ │ │ ├── switch_context_platform_id_t.hpp │ │ │ ├── switch_context_source_t.hpp │ │ │ ├── switch_context_type_t.hpp │ │ │ ├── symbolic_link_info_class_t.hpp │ │ │ ├── sync_client_call_retry_context_t.hpp │ │ │ ├── sync_server_call_t.hpp │ │ │ ├── sync_stub_call_t.hpp │ │ │ ├── syntax_dispatch_table_t.hpp │ │ │ ├── syntax_type_t.hpp │ │ │ ├── sysdbg_bus_data_t.hpp │ │ │ ├── sysdbg_command_t.hpp │ │ │ ├── sysdbg_control_space_t.hpp │ │ │ ├── sysdbg_io_space_t.hpp │ │ │ ├── sysdbg_kd_pull_remote_file_t.hpp │ │ │ ├── sysdbg_livedump_control_addpages_t.hpp │ │ │ ├── sysdbg_livedump_control_flags_t.hpp │ │ │ ├── sysdbg_livedump_control_t.hpp │ │ │ ├── sysdbg_msr_t.hpp │ │ │ ├── sysdbg_physical_t.hpp │ │ │ ├── sysdbg_triage_dump_t.hpp │ │ │ ├── sysdbg_virtual_t.hpp │ │ │ ├── sysgeoclass_t.hpp │ │ │ ├── sysgeotype_t.hpp │ │ │ ├── sysnls_function_t.hpp │ │ │ ├── system_access_filter_ace_t.hpp │ │ │ ├── system_acpi_audit_information_t.hpp │ │ │ ├── system_activity_moderation_app_type_t.hpp │ │ │ ├── system_activity_moderation_info_t.hpp │ │ │ ├── system_activity_moderation_state_t.hpp │ │ │ ├── system_activity_moderation_user_settings_t.hpp │ │ │ ├── system_alarm_ace_t.hpp │ │ │ ├── system_alarm_callback_ace_t.hpp │ │ │ ├── system_alarm_callback_object_ace_t.hpp │ │ │ ├── system_alarm_object_ace_t.hpp │ │ │ ├── system_audit_ace_t.hpp │ │ │ ├── system_audit_callback_ace_t.hpp │ │ │ ├── system_audit_callback_object_ace_t.hpp │ │ │ ├── system_audit_object_ace_t.hpp │ │ │ ├── system_basic_information_t.hpp │ │ │ ├── system_basic_performance_information_t.hpp │ │ │ ├── system_battery_state_t.hpp │ │ │ ├── system_bigpool_entry_t.hpp │ │ │ ├── system_bigpool_information_t.hpp │ │ │ ├── system_block_header_t.hpp │ │ │ ├── system_boot_environment_information_t.hpp │ │ │ ├── system_boot_environment_information_v1_t.hpp │ │ │ ├── system_boot_graphics_information_t.hpp │ │ │ ├── system_boot_logo_information_t.hpp │ │ │ ├── system_build_version_information_t.hpp │ │ │ ├── system_call_count_information_t.hpp │ │ │ ├── system_call_time_information_t.hpp │ │ │ ├── system_codeintegrity_certificate_information_t.hpp │ │ │ ├── system_codeintegrity_information_t.hpp │ │ │ ├── system_codeintegrity_unlock_information_t.hpp │ │ │ ├── system_codeintegritypolicy_information_t.hpp │ │ │ ├── system_codeintegrityverification_information_t.hpp │ │ │ ├── system_console_information_t.hpp │ │ │ ├── system_context_switch_information_t.hpp │ │ │ ├── system_cpu_set_information_t.hpp │ │ │ ├── system_cpu_set_tag_information_t.hpp │ │ │ ├── system_crash_dump_configuration_class_t.hpp │ │ │ ├── system_crash_dump_state_information_t.hpp │ │ │ ├── system_device_data_information_t.hpp │ │ │ ├── system_device_information_t.hpp │ │ │ ├── system_dif_volatile_information_t.hpp │ │ │ ├── system_dma_guard_policy_information_t.hpp │ │ │ ├── system_dma_protection_information_t.hpp │ │ │ ├── system_dpc_behavior_information_t.hpp │ │ │ ├── system_dpc_watchdog_configuration_information_t.hpp │ │ │ ├── system_dpc_watchdog_configuration_information_v2_t.hpp │ │ │ ├── system_elam_certificate_information_t.hpp │ │ │ ├── system_enclave_launch_control_information_t.hpp │ │ │ ├── system_energy_estimation_config_information_t.hpp │ │ │ ├── system_entropy_timing_information_t.hpp │ │ │ ├── system_error_port_timeouts_t.hpp │ │ │ ├── system_exception_information_t.hpp │ │ │ ├── system_extended_thread_information_t.hpp │ │ │ ├── system_feature_configuration_information_t.hpp │ │ │ ├── system_feature_configuration_query_t.hpp │ │ │ ├── system_feature_configuration_sections_information_entry_t.hpp │ │ │ ├── system_feature_configuration_sections_information_t.hpp │ │ │ ├── system_feature_configuration_sections_request_t.hpp │ │ │ ├── system_feature_configuration_update_t.hpp │ │ │ ├── system_feature_usage_subscription_update_entry_t.hpp │ │ │ ├── system_feature_usage_subscription_update_t.hpp │ │ │ ├── system_filecache_information_t.hpp │ │ │ ├── system_firmware_partition_information_t.hpp │ │ │ ├── system_firmware_ramdisk_information_t.hpp │ │ │ ├── system_firmware_table_action_t.hpp │ │ │ ├── system_firmware_table_handler_t.hpp │ │ │ ├── system_firmware_table_information_t.hpp │ │ │ ├── system_flags_information_t.hpp │ │ │ ├── system_flush_information_t.hpp │ │ │ ├── system_gdi_driver_information_t.hpp │ │ │ ├── system_handle_basic_raii_wrapper_t.hpp │ │ │ ├── system_handle_information_ex_t.hpp │ │ │ ├── system_handle_information_t.hpp │ │ │ ├── system_handle_t.hpp │ │ │ ├── system_handle_table_entry_info_ex_t.hpp │ │ │ ├── system_handle_table_entry_info_t.hpp │ │ │ ├── system_hiberfile_information_t.hpp │ │ │ ├── system_hot_patch_registry_value_t.hpp │ │ │ ├── system_hypervisor_detail_information_t.hpp │ │ │ ├── system_hypervisor_processor_count_information_t.hpp │ │ │ ├── system_hypervisor_query_information_t.hpp │ │ │ ├── system_hypervisor_shared_page_information_t.hpp │ │ │ ├── system_image_file_execution_options_information_t.hpp │ │ │ ├── system_info_t.hpp │ │ │ ├── system_information_class_t.hpp │ │ │ ├── system_interrupt_cpu_set_information_t.hpp │ │ │ ├── system_interrupt_information_t.hpp │ │ │ ├── system_interrupt_steering_information_input_t.hpp │ │ │ ├── system_interrupt_steering_information_output_t.hpp │ │ │ ├── system_isolated_user_mode_information_t.hpp │ │ │ ├── system_kernel_debugger_flags_t.hpp │ │ │ ├── system_kernel_debugger_information_ex_t.hpp │ │ │ ├── system_kernel_debugger_information_t.hpp │ │ │ ├── system_kernel_va_shadow_information_t.hpp │ │ │ ├── system_leap_second_information_t.hpp │ │ │ ├── system_legacy_driver_information_t.hpp │ │ │ ├── system_logical_processor_information_t.hpp │ │ │ ├── system_lookaside_information_t.hpp │ │ │ ├── system_low_priority_io_information_t.hpp │ │ │ ├── system_mandatory_label_ace_t.hpp │ │ │ ├── system_manufacturing_information_t.hpp │ │ │ ├── system_memory_channel_information_t.hpp │ │ │ ├── system_memory_information_t.hpp │ │ │ ├── system_memory_list_command_t.hpp │ │ │ ├── system_memory_list_information_t.hpp │ │ │ ├── system_memory_topology_information_t.hpp │ │ │ ├── system_memory_usage_information_t.hpp │ │ │ ├── system_net_rate_control_callback_table_t.hpp │ │ │ ├── system_net_rate_control_context_header_t.hpp │ │ │ ├── system_net_rate_control_quota_context_t.hpp │ │ │ ├── system_net_rate_control_set_context_t.hpp │ │ │ ├── system_net_rate_control_type_t.hpp │ │ │ ├── system_numa_information_t.hpp │ │ │ ├── system_numa_proximity_map_t.hpp │ │ │ ├── system_object_information_t.hpp │ │ │ ├── system_objecttype_information_t.hpp │ │ │ ├── system_page_entry_t.hpp │ │ │ ├── system_pagefile_information_ex_t.hpp │ │ │ ├── system_pagefile_information_t.hpp │ │ │ ├── system_performance_information_t.hpp │ │ │ ├── system_physical_memory_information_t.hpp │ │ │ ├── system_pixel_format_t.hpp │ │ │ ├── system_platform_binary_information_t.hpp │ │ │ ├── system_policy_information_t.hpp │ │ │ ├── system_pool_entry_t.hpp │ │ │ ├── system_pool_information_t.hpp │ │ │ ├── system_pool_limit_info_t.hpp │ │ │ ├── system_pool_limit_information_t.hpp │ │ │ ├── system_pool_limit_mem_info_t.hpp │ │ │ ├── system_pool_zeroing_information_t.hpp │ │ │ ├── system_pooltag_information_t.hpp │ │ │ ├── system_pooltag_t.hpp │ │ │ ├── system_portable_workspace_efi_launcher_information_t.hpp │ │ │ ├── system_power_information_t.hpp │ │ │ ├── system_power_logging_entry_t.hpp │ │ │ ├── system_power_state_disable_reason_t.hpp │ │ │ ├── system_power_status_t.hpp │ │ │ ├── system_prefetch_options_t.hpp │ │ │ ├── system_prefetch_patch_information_t.hpp │ │ │ ├── system_prefetch_stats_t.hpp │ │ │ ├── system_process_classification_t.hpp │ │ │ ├── system_process_id_information_t.hpp │ │ │ ├── system_process_information_extension_t.hpp │ │ │ ├── system_process_information_t.hpp │ │ │ ├── system_process_trust_label_ace_t.hpp │ │ │ ├── system_processor_cycle_stats_information_t.hpp │ │ │ ├── system_processor_cycle_time_information_t.hpp │ │ │ ├── system_processor_features_information_t.hpp │ │ │ ├── system_processor_idle_cycle_time_information_t.hpp │ │ │ ├── system_processor_idle_information_t.hpp │ │ │ ├── system_processor_information_t.hpp │ │ │ ├── system_processor_microcode_update_information_t.hpp │ │ │ ├── system_processor_performance_distribution_t.hpp │ │ │ ├── system_processor_performance_hitcount_t.hpp │ │ │ ├── system_processor_performance_information_ex_t.hpp │ │ │ ├── system_processor_performance_information_t.hpp │ │ │ ├── system_processor_performance_state_distribution_t.hpp │ │ │ ├── system_processor_policy_information_t.hpp │ │ │ ├── system_processor_power_information_t.hpp │ │ │ ├── system_processor_profile_control_area_t.hpp │ │ │ ├── system_query_performance_counter_information_t.hpp │ │ │ ├── system_query_time_adjust_information_precise_t.hpp │ │ │ ├── system_query_time_adjust_information_t.hpp │ │ │ ├── system_ref_trace_information_t.hpp │ │ │ ├── system_registry_append_string_parameters_t.hpp │ │ │ ├── system_registry_quota_information_t.hpp │ │ │ ├── system_resource_attribute_ace_t.hpp │ │ │ ├── system_root_silo_information_t.hpp │ │ │ ├── system_scoped_policy_id_ace_t.hpp │ │ │ ├── system_secure_kernel_hyperguard_profile_information_t.hpp │ │ │ ├── system_secureboot_information_t.hpp │ │ │ ├── system_secureboot_platform_manifest_information_t.hpp │ │ │ ├── system_secureboot_policy_full_information_t.hpp │ │ │ ├── system_secureboot_policy_information_t.hpp │ │ │ ├── system_security_model_information_t.hpp │ │ │ ├── system_session_bigpool_information_t.hpp │ │ │ ├── system_session_mapped_view_information_t.hpp │ │ │ ├── system_session_pooltag_information_t.hpp │ │ │ ├── system_session_process_information_t.hpp │ │ │ ├── system_set_time_adjust_information_precise_t.hpp │ │ │ ├── system_set_time_adjust_information_t.hpp │ │ │ ├── system_shadow_stack_information_t.hpp │ │ │ ├── system_single_module_information_t.hpp │ │ │ ├── system_single_processor_relationship_information_request_t.hpp │ │ │ ├── system_special_pool_information_t.hpp │ │ │ ├── system_speculation_control_information_t.hpp │ │ │ ├── system_supported_processor_architectures_information_t.hpp │ │ │ ├── system_system_disk_information_t.hpp │ │ │ ├── system_system_partition_information_t.hpp │ │ │ ├── system_thread_cid_priority_information_t.hpp │ │ │ ├── system_thread_information_t.hpp │ │ │ ├── system_timeofday_information_t.hpp │ │ │ ├── system_tpm_information_t.hpp │ │ │ ├── system_trace_header_t.hpp │ │ │ ├── system_va_list_information_t.hpp │ │ │ ├── system_va_type_t.hpp │ │ │ ├── system_vdm_instemul_info_t.hpp │ │ │ ├── system_verifier_cancellation_information_t.hpp │ │ │ ├── system_verifier_counters_information_t.hpp │ │ │ ├── system_verifier_faults_information_t.hpp │ │ │ ├── system_verifier_information_ex_t.hpp │ │ │ ├── system_verifier_information_t.hpp │ │ │ ├── system_verifier_issue_t.hpp │ │ │ ├── system_verifier_triage_information_t.hpp │ │ │ ├── system_vhd_boot_information_t.hpp │ │ │ ├── system_vsm_protection_information_t.hpp │ │ │ ├── system_watchdog_timer_information_t.hpp │ │ │ ├── system_workingset_entry_t.hpp │ │ │ ├── system_workload_allowed_cpu_set_information_t.hpp │ │ │ ├── system_write_constraint_information_t.hpp │ │ │ ├── system_xfg_failure_information_t.hpp │ │ │ ├── systemtime_t.hpp │ │ │ ├── t2_set_parameters_v0_t.hpp │ │ │ ├── t_buffer_type_t.hpp │ │ │ ├── t_corruption_distribution_type_t.hpp │ │ │ ├── t_corruption_pattern_t.hpp │ │ │ ├── t_corruption_size_type_t.hpp │ │ │ ├── t_delay_type_t.hpp │ │ │ ├── t_rpc_verifier_settings_t.hpp │ │ │ ├── tagpropertykey_t.hpp │ │ │ ├── tape_create_partition_t.hpp │ │ │ ├── tape_drive_problem_type_t.hpp │ │ │ ├── tape_erase_t.hpp │ │ │ ├── tape_get_drive_parameters_t.hpp │ │ │ ├── tape_get_media_parameters_t.hpp │ │ │ ├── tape_get_position_t.hpp │ │ │ ├── tape_prepare_t.hpp │ │ │ ├── tape_set_drive_parameters_t.hpp │ │ │ ├── tape_set_media_parameters_t.hpp │ │ │ ├── tape_set_position_t.hpp │ │ │ ├── tape_wmi_operations_t.hpp │ │ │ ├── tape_write_marks_t.hpp │ │ │ ├── teb_active_frame_context_ex_t.hpp │ │ │ ├── teb_active_frame_ex_t.hpp │ │ │ ├── thdtype_t.hpp │ │ │ ├── thrd_t.hpp │ │ │ ├── thread_basic_information_t.hpp │ │ │ ├── thread_call_object_cache_t.hpp │ │ │ ├── thread_cycle_time_information_t.hpp │ │ │ ├── thread_handle_wrapper_api_types_t.hpp │ │ │ ├── thread_handle_wrapper_traits_t.hpp │ │ │ ├── thread_information_class_t.hpp │ │ │ ├── thread_last_syscall_information_t.hpp │ │ │ ├── thread_name_information_t.hpp │ │ │ ├── thread_power_throttling_state_t.hpp │ │ │ ├── thread_profiling_information_t.hpp │ │ │ ├── thread_state_change_type_t.hpp │ │ │ ├── thread_t.hpp │ │ │ ├── thread_teb_information_t.hpp │ │ │ ├── thread_tls_information_t.hpp │ │ │ ├── thread_type_specific_routines_t.hpp │ │ │ ├── thread_ums_information_command_t.hpp │ │ │ ├── thread_ums_information_t.hpp │ │ │ ├── threading_model_t.hpp │ │ │ ├── threadlocaleinfostruct_t.hpp │ │ │ ├── threadmbcinfostruct_t.hpp │ │ │ ├── threshold_app_launch_perf_feature_state_t.hpp │ │ │ ├── tick_count_timer_t.hpp │ │ │ ├── time_dynamic_zone_information_t.hpp │ │ │ ├── time_zone_information_t.hpp │ │ │ ├── timer_basic_information_t.hpp │ │ │ ├── timer_information_class_t.hpp │ │ │ ├── timer_set_coalescable_timer_info_t.hpp │ │ │ ├── timer_set_information_class_t.hpp │ │ │ ├── timespec32_t.hpp │ │ │ ├── timespec64_t.hpp │ │ │ ├── timespec_t.hpp │ │ │ ├── tm_t.hpp │ │ │ ├── token_appcontainer_information_t.hpp │ │ │ ├── token_bno_isolation_information_t.hpp │ │ │ ├── token_default_dacl_t.hpp │ │ │ ├── token_device_claims_t.hpp │ │ │ ├── token_elevation_t.hpp │ │ │ ├── token_elevation_type_t.hpp │ │ │ ├── token_groups_and_privileges_t.hpp │ │ │ ├── token_handle_wrapper_api_types_t.hpp │ │ │ ├── token_handle_wrapper_traits_t.hpp │ │ │ ├── token_linked_token_t.hpp │ │ │ ├── token_mandatory_label_t.hpp │ │ │ ├── token_origin_t.hpp │ │ │ ├── token_owner_t.hpp │ │ │ ├── token_primary_group_t.hpp │ │ │ ├── token_security_attribute_fqbn_value_t.hpp │ │ │ ├── token_security_attribute_octet_string_value_t.hpp │ │ │ ├── token_security_attribute_operation_t.hpp │ │ │ ├── token_security_attribute_relative_v1_t.hpp │ │ │ ├── token_security_attribute_v1_t.hpp │ │ │ ├── token_security_attributes_and_operation_information_t.hpp │ │ │ ├── token_security_attributes_information_t.hpp │ │ │ ├── token_sid_information_t.hpp │ │ │ ├── token_statistics_t.hpp │ │ │ ├── token_user_claims_t.hpp │ │ │ ├── token_user_t.hpp │ │ │ ├── transaction_basic_information_t.hpp │ │ │ ├── transaction_bind_information_t.hpp │ │ │ ├── transaction_enlistment_pair_t.hpp │ │ │ ├── transaction_enlistments_information_t.hpp │ │ │ ├── transaction_list_entry_t.hpp │ │ │ ├── transaction_list_information_t.hpp │ │ │ ├── transaction_notification_marshal_argument_t.hpp │ │ │ ├── transaction_notification_propagate_argument_t.hpp │ │ │ ├── transaction_notification_recovery_argument_t.hpp │ │ │ ├── transaction_notification_savepoint_argument_t.hpp │ │ │ ├── transaction_notification_tm_online_argument_t.hpp │ │ │ ├── transaction_outcome_t.hpp │ │ │ ├── transaction_properties_information_t.hpp │ │ │ ├── transaction_state_t.hpp │ │ │ ├── transaction_superior_enlistment_information_t.hpp │ │ │ ├── transactionmanager_basic_information_t.hpp │ │ │ ├── transactionmanager_log_information_t.hpp │ │ │ ├── transactionmanager_logpath_information_t.hpp │ │ │ ├── transactionmanager_oldest_information_t.hpp │ │ │ ├── transactionmanager_recovery_information_t.hpp │ │ │ ├── transport_and_server_calls_t.hpp │ │ │ ├── transport_locality_t.hpp │ │ │ ├── triple_list_entry_t.hpp │ │ │ ├── triple_list_iterator_t.hpp │ │ │ ├── triple_list_t.hpp │ │ │ ├── trivertex_t.hpp │ │ │ ├── trust_level_t.hpp │ │ │ ├── trustee_form_t.hpp │ │ │ ├── trustee_type_t.hpp │ │ │ ├── trustee_w_t.hpp │ │ │ ├── txfs_create_miniversion_info_t.hpp │ │ │ ├── txfs_get_metadata_info_out_t.hpp │ │ │ ├── txfs_get_transacted_version_t.hpp │ │ │ ├── txfs_list_transaction_locked_files_entry_t.hpp │ │ │ ├── txfs_list_transaction_locked_files_t.hpp │ │ │ ├── txfs_list_transactions_entry_t.hpp │ │ │ ├── txfs_list_transactions_t.hpp │ │ │ ├── txfs_modify_rm_t.hpp │ │ │ ├── txfs_query_rm_information_t.hpp │ │ │ ├── txfs_read_backup_information_out_t.hpp │ │ │ ├── txfs_rollforward_redo_information_t.hpp │ │ │ ├── txfs_savepoint_information_t.hpp │ │ │ ├── txfs_start_rm_information_t.hpp │ │ │ ├── txfs_transaction_active_info_t.hpp │ │ │ ├── txfs_write_backup_information_t.hpp │ │ │ ├── type_descriptor_t.hpp │ │ │ ├── type_info_cache_t.hpp │ │ │ ├── type_info_node_t.hpp │ │ │ ├── type_info_t.hpp │ │ │ ├── type_info_vtbl_t.hpp │ │ │ ├── udate_t.hpp │ │ │ ├── udt_alignment_workaround_action_t.hpp │ │ │ ├── ums_create_thread_attributes_t.hpp │ │ │ ├── ums_scheduler_startup_info_t.hpp │ │ │ ├── ums_system_thread_information_t.hpp │ │ │ ├── unbiased_timer_t.hpp │ │ │ ├── uninit_mta_worker_context_flags_t.hpp │ │ │ ├── uninit_stage_t.hpp │ │ │ ├── uninitmtaworkercontext_t.hpp │ │ │ ├── unique_process_information_t.hpp │ │ │ ├── universal_marshaler_type_t.hpp │ │ │ ├── universal_name_infoa_t.hpp │ │ │ ├── universal_name_infow_t.hpp │ │ │ ├── unload_dll_debug_info_t.hpp │ │ │ ├── unmarshal_for_query_interface_t.hpp │ │ │ ├── unmarshaler_clsid_info_t.hpp │ │ │ ├── unmarshalers_table_t.hpp │ │ │ ├── unmarshaling_policy_check_reason_t.hpp │ │ │ ├── unnamed_struct_causality_control_cookie_t.hpp │ │ │ ├── unnamed_struct_dll_class_handle_t.hpp │ │ │ ├── unused_cached_factories_t.hpp │ │ │ ├── unwind_code_t.hpp │ │ │ ├── unwind_history_table_entry_t.hpp │ │ │ ├── unwind_history_table_t.hpp │ │ │ ├── unwind_info_t.hpp │ │ │ ├── unwind_op_codes_t.hpp │ │ │ ├── urlzonereg_t.hpp │ │ │ ├── user_bitmap_t.hpp │ │ │ ├── user_clipformat_t.hpp │ │ │ ├── user_context_properties_data_t.hpp │ │ │ ├── user_context_properties_t.hpp │ │ │ ├── user_flag_stgmedium_t.hpp │ │ │ ├── user_hbitmap_t.hpp │ │ │ ├── user_henhmetafile_t.hpp │ │ │ ├── user_hglobal_t.hpp │ │ │ ├── user_hmetafile_t.hpp │ │ │ ├── user_hmetafilepict_t.hpp │ │ │ ├── user_hpalette_t.hpp │ │ │ ├── user_marshal_cb_t.hpp │ │ │ ├── user_marshal_cb_type_t.hpp │ │ │ ├── user_marshal_routine_quadruple_t.hpp │ │ │ ├── user_stgmedium_t.hpp │ │ │ ├── usn_journal_data_v0_t.hpp │ │ │ ├── usn_journal_data_v1_t.hpp │ │ │ ├── usn_journal_data_v2_t.hpp │ │ │ ├── usn_range_track_output_t.hpp │ │ │ ├── usn_record_common_header_t.hpp │ │ │ ├── usn_record_extent_t.hpp │ │ │ ├── usn_record_union_t.hpp │ │ │ ├── usn_record_v2_t.hpp │ │ │ ├── usn_record_v3_t.hpp │ │ │ ├── usn_record_v4_t.hpp │ │ │ ├── usn_track_modified_ranges_t.hpp │ │ │ ├── uuid_vector_t.hpp │ │ │ ├── val_context_t.hpp │ │ │ ├── value_ent_a_t.hpp │ │ │ ├── value_ent_w_t.hpp │ │ │ ├── value_unmarshaler_t.hpp │ │ │ ├── varenum_t.hpp │ │ │ ├── variable_name_and_value_t.hpp │ │ │ ├── variable_name_t.hpp │ │ │ ├── variant_anaheim_promotion_post_install_post_unlock_delayed_trigger_event_t.hpp │ │ │ ├── variant_anaheim_promotion_pre_install_post_unlock_delayed_trigger_event_for_anaheim_insiders_t.hpp │ │ │ ├── variant_anaheim_promotion_pre_install_post_unlock_delayed_trigger_event_for_non_anaheim_insiders_t.hpp │ │ │ ├── variant_edge_desktop_shortcut_t.hpp │ │ │ ├── variant_face_client_enrollment_experience_t.hpp │ │ │ ├── variant_in_place_update_for_medium_packages_t.hpp │ │ │ ├── variant_in_place_update_for_small_packages_t.hpp │ │ │ ├── variant_in_place_update_t.hpp │ │ │ ├── variant_launch_anaheim_download_page_at_login_for_anaheim_insiders_t.hpp │ │ │ ├── variant_launch_anaheim_download_page_at_login_for_non_anaheim_insiders_t.hpp │ │ │ ├── variant_lock_exp_mgr_app_hosting_model_t.hpp │ │ │ ├── variant_lock_reliability_performance_boost_t.hpp │ │ │ ├── variant_prelaunch_edge_logon_t.hpp │ │ │ ├── variant_prelaunch_edge_on_frame_exit_t.hpp │ │ │ ├── variant_publish_activity_annotations_t.hpp │ │ │ ├── variant_screen_clipping_undocked_wcos_t.hpp │ │ │ ├── variant_set_lock_screen_image_as_desktop_background_t.hpp │ │ │ ├── variant_set_number_of_days_displayed_in_timeline_t.hpp │ │ │ ├── variant_shell_suggestions_in_timeline_t.hpp │ │ │ ├── variant_single_tab_visuals_t.hpp │ │ │ ├── variant_t.hpp │ │ │ ├── variant_tab_shell_auto_tabbing_preference_t.hpp │ │ │ ├── variant_tab_shell_visibility_t.hpp │ │ │ ├── variant_web_timeline_t.hpp │ │ │ ├── variant_window_tab_host_t.hpp │ │ │ ├── variant_your_phone_desktop_shortcut_t.hpp │ │ │ ├── variant_your_phone_taskbar_icon_t.hpp │ │ │ ├── vcn_range_input_buffer_t.hpp │ │ │ ├── videoparameters_t.hpp │ │ │ ├── virtual_storage_behavior_code_t.hpp │ │ │ ├── virtual_storage_set_behavior_input_t.hpp │ │ │ ├── virtual_storage_type_t.hpp │ │ │ ├── virtualization_instance_info_input_ex_t.hpp │ │ │ ├── virtualization_instance_info_input_t.hpp │ │ │ ├── virtualization_instance_info_output_t.hpp │ │ │ ├── virtualization_record_t.hpp │ │ │ ├── vm_counters_ex2_t.hpp │ │ │ ├── vm_counters_ex_t.hpp │ │ │ ├── vm_counters_t.hpp │ │ │ ├── volume_bitmap_buffer_t.hpp │ │ │ ├── volume_refs_info_buffer_t.hpp │ │ │ ├── vsa_parameter_type_t.hpp │ │ │ ├── vsa_standard_parameter_t.hpp │ │ │ ├── vtbl_splay_node_t.hpp │ │ │ ├── wait_for_call_reason_t.hpp │ │ │ ├── waitable_count_t.hpp │ │ │ ├── wake_timer_info_t.hpp │ │ │ ├── watchdog_handler_action_t.hpp │ │ │ ├── watchdog_information_class_t.hpp │ │ │ ├── well_known_sid_type_t.hpp │ │ │ ├── wer_bi_task_diag_data_t.hpp │ │ │ ├── wer_consent_t.hpp │ │ │ ├── wer_extended_diag_data_header_t.hpp │ │ │ ├── wer_file_type_t.hpp │ │ │ ├── wer_javascript_gc_state_t.hpp │ │ │ ├── wer_modern_app_diag_data_t.hpp │ │ │ ├── wer_plm_modern_app_diag_data_t.hpp │ │ │ ├── wer_report_information_t.hpp │ │ │ ├── wer_report_type_t.hpp │ │ │ ├── wer_submit_result_t.hpp │ │ │ ├── wer_wwa_diag_data_t.hpp │ │ │ ├── wfinddata32_t.hpp │ │ │ ├── wfinddata32i64_t.hpp │ │ │ ├── wfinddata64_t.hpp │ │ │ ├── wfinddata64i32_t.hpp │ │ │ ├── wglswap_t.hpp │ │ │ ├── which_delegate_t.hpp │ │ │ ├── which_scm_service_process_t.hpp │ │ │ ├── which_transfer_syntax_t.hpp │ │ │ ├── which_type_of_rundown_t.hpp │ │ │ ├── wim_provider_add_overlay_input_t.hpp │ │ │ ├── wim_provider_control_integrity_t.hpp │ │ │ ├── wim_provider_external_info_t.hpp │ │ │ ├── wim_provider_integrity_status_t.hpp │ │ │ ├── wim_provider_overlay_entry_t.hpp │ │ │ ├── wim_provider_remove_overlay_input_t.hpp │ │ │ ├── wim_provider_start_integrity_t.hpp │ │ │ ├── wim_provider_suspend_overlay_input_t.hpp │ │ │ ├── wim_provider_update_overlay_input_t.hpp │ │ │ ├── win32_file_attribute_data_t.hpp │ │ │ ├── win32_find_dataa_t.hpp │ │ │ ├── win32_find_dataw_t.hpp │ │ │ ├── win32_find_stream_data_t.hpp │ │ │ ├── win32_memory_information_class_t.hpp │ │ │ ├── win32_memory_partition_information_class_t.hpp │ │ │ ├── win32_memory_partition_information_t.hpp │ │ │ ├── win32_memory_range_entry_t.hpp │ │ │ ├── win32_memory_region_information_t.hpp │ │ │ ├── win32_stream_id_t.hpp │ │ │ ├── win32k_syscall_filter_t.hpp │ │ │ ├── win_rt_activation_properties_data_t.hpp │ │ │ ├── win_rt_activation_properties_t.hpp │ │ │ ├── window_buffer_size_record_t.hpp │ │ │ ├── windows_os_options_t.hpp │ │ │ ├── windows_runtime_hstring_flags_t.hpp │ │ │ ├── winrt_async_channel_message_t.hpp │ │ │ ├── winrt_async_channel_operation_entry_t.hpp │ │ │ ├── winrt_async_channel_operation_info_t.hpp │ │ │ ├── winrt_async_channel_operation_map_t.hpp │ │ │ ├── winrt_async_channel_operation_placeholder_t.hpp │ │ │ ├── winrt_async_channel_operation_t.hpp │ │ │ ├── winrt_async_channel_unmarshaler_info_t.hpp │ │ │ ├── winrt_async_channel_unmarshaler_t.hpp │ │ │ ├── winrt_async_client_call_t.hpp │ │ │ ├── winrt_async_operation_info_t.hpp │ │ │ ├── winrt_async_operation_type_t.hpp │ │ │ ├── winrt_async_pattern_method_indicator_t.hpp │ │ │ ├── winrt_async_proxy_call_t.hpp │ │ │ ├── winrt_async_proxy_method_info_cache_t.hpp │ │ │ ├── winrt_async_proxy_method_info_t.hpp │ │ │ ├── winrt_async_response_t.hpp │ │ │ ├── winrt_async_rpc_channel_buffer_for_type_serializer_t.hpp │ │ │ ├── winrt_async_server_call_t.hpp │ │ │ ├── winrt_async_server_continuation_message_t.hpp │ │ │ ├── winrt_handle_wrapper_unmarshaler_t.hpp │ │ │ ├── winrt_mega_midl_proc_format_string_t.hpp │ │ │ ├── winrt_mega_midl_type_format_string_t.hpp │ │ │ ├── winrt_rtti_interface_v1_t.hpp │ │ │ ├── winrt_rtti_kind_t.hpp │ │ │ ├── winrt_rtti_namespace_v1_t.hpp │ │ │ ├── winrt_rtti_parameterized_delegate_instance_v1_t.hpp │ │ │ ├── winrt_rtti_parameterized_delegate_v1_t.hpp │ │ │ ├── winrt_rtti_parameterized_interface_instance_v1_t.hpp │ │ │ ├── winrt_rtti_parameterized_interface_v1_t.hpp │ │ │ ├── winrt_rtti_runtime_class_v1_t.hpp │ │ │ ├── winrt_rtti_t.hpp │ │ │ ├── winrt_sxs_catalog_t.hpp │ │ │ ├── winrt_type_serializer_ndr_helper_t.hpp │ │ │ ├── winrt_type_serializer_t.hpp │ │ │ ├── wire_array_of_touched_astas_t.hpp │ │ │ ├── wire_brecord_t.hpp │ │ │ ├── wire_container_extent_array_accessor_t.hpp │ │ │ ├── wire_container_extent_array_t.hpp │ │ │ ├── wire_container_extent_t.hpp │ │ │ ├── wire_container_that_part1_t.hpp │ │ │ ├── wire_container_that_t.hpp │ │ │ ├── wire_container_this_part1_t.hpp │ │ │ ├── wire_container_this_t.hpp │ │ │ ├── wire_error_information_extent_v1_t.hpp │ │ │ ├── wire_extent_array_t.hpp │ │ │ ├── wire_extent_t.hpp │ │ │ ├── wire_local_that_part1_t.hpp │ │ │ ├── wire_local_that_part2_t.hpp │ │ │ ├── wire_local_that_t.hpp │ │ │ ├── wire_local_this_part1_t.hpp │ │ │ ├── wire_local_this_part2_t.hpp │ │ │ ├── wire_local_this_t.hpp │ │ │ ├── wire_safearr_brecord_t.hpp │ │ │ ├── wire_safearr_bstr_t.hpp │ │ │ ├── wire_safearr_dispatch_t.hpp │ │ │ ├── wire_safearr_haveiid_t.hpp │ │ │ ├── wire_safearr_unknown_t.hpp │ │ │ ├── wire_safearr_variant_t.hpp │ │ │ ├── wire_safearray_t.hpp │ │ │ ├── wire_safearray_union_t.hpp │ │ │ ├── wire_that_part1_t.hpp │ │ │ ├── wire_that_part2_t.hpp │ │ │ ├── wire_that_t.hpp │ │ │ ├── wire_this_part1_t.hpp │ │ │ ├── wire_this_part2_t.hpp │ │ │ ├── wire_this_t.hpp │ │ │ ├── wire_variant_t.hpp │ │ │ ├── wire_winrt_async_call_failure_details_part1_t.hpp │ │ │ ├── wire_winrt_async_call_outcome_details_t.hpp │ │ │ ├── wire_winrt_async_call_response_block_part1_t.hpp │ │ │ ├── wire_winrt_async_call_success_details_part1_t.hpp │ │ │ ├── wmidprequestcode_t.hpp │ │ │ ├── wmiregguidw_t.hpp │ │ │ ├── wmireginfow_t.hpp │ │ │ ├── wof_external_file_id_t.hpp │ │ │ ├── wof_external_info_t.hpp │ │ │ ├── wof_version_info_t.hpp │ │ │ ├── word_blob_t.hpp │ │ │ ├── worker_factory_basic_information_t.hpp │ │ │ ├── worker_factory_callback_class_t.hpp │ │ │ ├── worker_factory_deferred_work_t.hpp │ │ │ ├── workerfactoryinfoclass_t.hpp │ │ │ ├── wow64_architecture_information_t.hpp │ │ │ ├── wow64_context_t.hpp │ │ │ ├── wow64_cpuarea_info_t.hpp │ │ │ ├── wow64_descriptor_table_entry_t.hpp │ │ │ ├── wow64_floating_save_area_t.hpp │ │ │ ├── wow64_function_code64_t.hpp │ │ │ ├── wow64_ldt_entry_t.hpp │ │ │ ├── wpp_ctl_names_t.hpp │ │ │ ├── wpp_define_bit_names_t.hpp │ │ │ ├── wpp_flag_len_enum_max_t.hpp │ │ │ ├── wpp_flag_len_enum_t.hpp │ │ │ ├── wpp_pointer_to_ushort_t.hpp │ │ │ ├── wpp_project_control_block_t.hpp │ │ │ ├── wpp_win2k_control_block_t.hpp │ │ │ ├── wrap_encoded_kernel32_functions_t.hpp │ │ │ ├── write_usn_reason_input_t.hpp │ │ │ ├── wx86_thread_state_t.hpp │ │ │ ├── wx86tib_t.hpp │ │ │ ├── x86_call_frame_t.hpp │ │ │ ├── x86_context_t.hpp │ │ │ ├── x86_nt5_context_t.hpp │ │ │ ├── x_windows_c_foundation_c_collections_c_collection_change_t.hpp │ │ │ ├── x_windows_c_foundation_c_diagnostics_c_causality_relation_t.hpp │ │ │ ├── x_windows_c_foundation_c_diagnostics_c_causality_source_t.hpp │ │ │ ├── x_windows_c_foundation_c_diagnostics_c_causality_synchronous_work_t.hpp │ │ │ ├── x_windows_c_foundation_c_diagnostics_c_causality_trace_level_t.hpp │ │ │ ├── x_windows_c_foundation_c_property_type_t.hpp │ │ │ ├── xi_persist_file_t.hpp │ │ │ ├── xi_persist_storage_t.hpp │ │ │ ├── xi_storage_t.hpp │ │ │ ├── xi_unknown_t.hpp │ │ │ ├── xlat_side_t.hpp │ │ │ ├── xmit_routine_quintuple_t.hpp │ │ │ ├── xml_error_t.hpp │ │ │ ├── xmldom_document_events_t.hpp │ │ │ ├── xsave_cet_u_format_t.hpp │ │ │ ├── xsave_cpu_errata_t.hpp │ │ │ ├── xsave_cpu_info_t.hpp │ │ │ ├── xsave_feature_t.hpp │ │ │ ├── xsave_policy_t.hpp │ │ │ ├── xsave_supported_cpu_t.hpp │ │ │ ├── xsave_vendor_t.hpp │ │ │ ├── xsave_vendors_t.hpp │ │ │ ├── xtime_t.hpp │ │ │ ├── zdb_compression_algorithm_t.hpp │ │ │ ├── zdb_header_t.hpp │ │ │ └── zoneattributes_t.hpp │ │ ├── wmi/ │ │ │ ├── api.hpp │ │ │ ├── buffer_header_t.hpp │ │ │ ├── contextswap_t.hpp │ │ │ ├── delay_execution_t.hpp │ │ │ ├── diskio_io_redirected_init_t.hpp │ │ │ ├── diskio_notify_routines_t.hpp │ │ │ ├── diskio_readwrite_init_t.hpp │ │ │ ├── dpi_record_t.hpp │ │ │ ├── extended_thread_information64_t.hpp │ │ │ ├── extended_thread_information_t.hpp │ │ │ ├── file_io_t.hpp │ │ │ ├── fileio_notify_routines_t.hpp │ │ │ ├── fltio_notify_routines_t.hpp │ │ │ ├── ide_channel_record_t.hpp │ │ │ ├── imageid_information32_t.hpp │ │ │ ├── imageid_information64_t.hpp │ │ │ ├── imageid_information_t.hpp │ │ │ ├── imageload_information32_t.hpp │ │ │ ├── imageload_information64_t.hpp │ │ │ ├── imageload_information_t.hpp │ │ │ ├── irq_record_t.hpp │ │ │ ├── job_assign_process_t.hpp │ │ │ ├── job_information_t.hpp │ │ │ ├── job_remove_process_t.hpp │ │ │ ├── job_send_notification_information_t.hpp │ │ │ ├── job_set_query_cpu_rate_t.hpp │ │ │ ├── job_set_query_information_t.hpp │ │ │ ├── job_set_query_net_rate_t.hpp │ │ │ ├── logger_context_t.hpp │ │ │ ├── logger_information_t.hpp │ │ │ ├── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ ├── api.start.hpp │ │ │ │ ├── buffer_header_t.end.hpp │ │ │ │ ├── buffer_header_t.start.hpp │ │ │ │ ├── contextswap_t.end.hpp │ │ │ │ ├── contextswap_t.start.hpp │ │ │ │ ├── delay_execution_t.end.hpp │ │ │ │ ├── delay_execution_t.start.hpp │ │ │ │ ├── diskio_io_redirected_init_t.end.hpp │ │ │ │ ├── diskio_io_redirected_init_t.start.hpp │ │ │ │ ├── diskio_notify_routines_t.end.hpp │ │ │ │ ├── diskio_notify_routines_t.start.hpp │ │ │ │ ├── diskio_readwrite_init_t.end.hpp │ │ │ │ ├── diskio_readwrite_init_t.start.hpp │ │ │ │ ├── dpi_record_t.end.hpp │ │ │ │ ├── dpi_record_t.start.hpp │ │ │ │ ├── extended_thread_information64_t.end.hpp │ │ │ │ ├── extended_thread_information64_t.start.hpp │ │ │ │ ├── extended_thread_information_t.end.hpp │ │ │ │ ├── extended_thread_information_t.start.hpp │ │ │ │ ├── file_io_t.end.hpp │ │ │ │ ├── file_io_t.start.hpp │ │ │ │ ├── fileio_notify_routines_t.end.hpp │ │ │ │ ├── fileio_notify_routines_t.start.hpp │ │ │ │ ├── fltio_notify_routines_t.end.hpp │ │ │ │ ├── fltio_notify_routines_t.start.hpp │ │ │ │ ├── ide_channel_record_t.end.hpp │ │ │ │ ├── ide_channel_record_t.start.hpp │ │ │ │ ├── imageid_information32_t.end.hpp │ │ │ │ ├── imageid_information32_t.start.hpp │ │ │ │ ├── imageid_information64_t.end.hpp │ │ │ │ ├── imageid_information64_t.start.hpp │ │ │ │ ├── imageid_information_t.end.hpp │ │ │ │ ├── imageid_information_t.start.hpp │ │ │ │ ├── imageload_information32_t.end.hpp │ │ │ │ ├── imageload_information32_t.start.hpp │ │ │ │ ├── imageload_information64_t.end.hpp │ │ │ │ ├── imageload_information64_t.start.hpp │ │ │ │ ├── imageload_information_t.end.hpp │ │ │ │ ├── imageload_information_t.start.hpp │ │ │ │ ├── irq_record_t.end.hpp │ │ │ │ ├── irq_record_t.start.hpp │ │ │ │ ├── job_assign_process_t.end.hpp │ │ │ │ ├── job_assign_process_t.start.hpp │ │ │ │ ├── job_information_t.end.hpp │ │ │ │ ├── job_information_t.start.hpp │ │ │ │ ├── job_remove_process_t.end.hpp │ │ │ │ ├── job_remove_process_t.start.hpp │ │ │ │ ├── job_send_notification_information_t.end.hpp │ │ │ │ ├── job_send_notification_information_t.start.hpp │ │ │ │ ├── job_set_query_cpu_rate_t.end.hpp │ │ │ │ ├── job_set_query_cpu_rate_t.start.hpp │ │ │ │ ├── job_set_query_information_t.end.hpp │ │ │ │ ├── job_set_query_information_t.start.hpp │ │ │ │ ├── job_set_query_net_rate_t.end.hpp │ │ │ │ ├── job_set_query_net_rate_t.start.hpp │ │ │ │ ├── logger_context_t.end.hpp │ │ │ │ ├── logger_context_t.start.hpp │ │ │ │ ├── logger_information_t.end.hpp │ │ │ │ ├── logger_information_t.start.hpp │ │ │ │ ├── page_fault_t.end.hpp │ │ │ │ ├── page_fault_t.start.hpp │ │ │ │ ├── pnp_record_v3_t.end.hpp │ │ │ │ ├── pnp_record_v3_t.start.hpp │ │ │ │ ├── pnp_record_v4_t.end.hpp │ │ │ │ ├── pnp_record_v4_t.start.hpp │ │ │ │ ├── pnp_record_v5_t.end.hpp │ │ │ │ ├── pnp_record_v5_t.start.hpp │ │ │ │ ├── power_record_t.end.hpp │ │ │ │ ├── power_record_t.start.hpp │ │ │ │ ├── process_information64_t.end.hpp │ │ │ │ ├── process_information64_t.start.hpp │ │ │ │ ├── process_information_t.end.hpp │ │ │ │ ├── process_information_t.start.hpp │ │ │ │ ├── pushlock_t.end.hpp │ │ │ │ ├── pushlock_t.start.hpp │ │ │ │ ├── queue_t.end.hpp │ │ │ │ ├── queue_t.start.hpp │ │ │ │ ├── registry_t.end.hpp │ │ │ │ ├── registry_t.start.hpp │ │ │ │ ├── resource_t.end.hpp │ │ │ │ ├── resource_t.start.hpp │ │ │ │ ├── spinlock_t.end.hpp │ │ │ │ ├── spinlock_t.start.hpp │ │ │ │ ├── splitio_notify_routines_t.end.hpp │ │ │ │ ├── splitio_notify_routines_t.start.hpp │ │ │ │ ├── tcpip_t.end.hpp │ │ │ │ ├── tcpip_t.start.hpp │ │ │ │ ├── thread_information_t.end.hpp │ │ │ │ ├── thread_information_t.start.hpp │ │ │ │ ├── trace_message_packet_t.end.hpp │ │ │ │ ├── trace_message_packet_t.start.hpp │ │ │ │ ├── trace_packet_t.end.hpp │ │ │ │ ├── trace_packet_t.start.hpp │ │ │ │ ├── trace_routine_notification_t.end.hpp │ │ │ │ ├── trace_routine_notification_t.start.hpp │ │ │ │ ├── trace_rundown_notification_t.end.hpp │ │ │ │ ├── trace_rundown_notification_t.start.hpp │ │ │ │ ├── txr_t.end.hpp │ │ │ │ ├── txr_t.start.hpp │ │ │ │ ├── udp_t.end.hpp │ │ │ │ ├── udp_t.start.hpp │ │ │ │ ├── wait_multiple_t.end.hpp │ │ │ │ ├── wait_multiple_t.start.hpp │ │ │ │ ├── wait_object_record_t.end.hpp │ │ │ │ ├── wait_object_record_t.start.hpp │ │ │ │ ├── wait_single_t.end.hpp │ │ │ │ ├── wait_single_t.start.hpp │ │ │ │ ├── wdf_notify_routines_t.end.hpp │ │ │ │ └── wdf_notify_routines_t.start.hpp │ │ │ ├── page_fault_t.hpp │ │ │ ├── pnp_record_v3_t.hpp │ │ │ ├── pnp_record_v4_t.hpp │ │ │ ├── pnp_record_v5_t.hpp │ │ │ ├── power_record_t.hpp │ │ │ ├── process_information64_t.hpp │ │ │ ├── process_information_t.hpp │ │ │ ├── pushlock_t.hpp │ │ │ ├── queue_t.hpp │ │ │ ├── registry_t.hpp │ │ │ ├── resource_t.hpp │ │ │ ├── spinlock_t.hpp │ │ │ ├── splitio_notify_routines_t.hpp │ │ │ ├── tcpip_t.hpp │ │ │ ├── thread_information_t.hpp │ │ │ ├── trace_message_packet_t.hpp │ │ │ ├── trace_packet_t.hpp │ │ │ ├── trace_routine_notification_t.hpp │ │ │ ├── trace_rundown_notification_t.hpp │ │ │ ├── txr_t.hpp │ │ │ ├── udp_t.hpp │ │ │ ├── wait_multiple_t.hpp │ │ │ ├── wait_object_record_t.hpp │ │ │ ├── wait_single_t.hpp │ │ │ └── wdf_notify_routines_t.hpp │ │ ├── wmip/ │ │ │ ├── api.hpp │ │ │ └── magic/ │ │ │ ├── api.end.hpp │ │ │ └── api.start.hpp │ │ ├── wnf/ │ │ │ ├── api.hpp │ │ │ ├── ci_blocked_driver_context_t.hpp │ │ │ ├── cmpt_blocked_app_context_t.hpp │ │ │ ├── data_scope_t.hpp │ │ │ ├── delivery_descriptor_t.hpp │ │ │ ├── dispatcher_t.hpp │ │ │ ├── helper/ │ │ │ │ ├── api.hpp │ │ │ │ └── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ └── api.start.hpp │ │ │ ├── lock_t.hpp │ │ │ ├── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ ├── api.start.hpp │ │ │ │ ├── ci_blocked_driver_context_t.end.hpp │ │ │ │ ├── ci_blocked_driver_context_t.start.hpp │ │ │ │ ├── cmpt_blocked_app_context_t.end.hpp │ │ │ │ ├── cmpt_blocked_app_context_t.start.hpp │ │ │ │ ├── delivery_descriptor_t.end.hpp │ │ │ │ ├── delivery_descriptor_t.start.hpp │ │ │ │ ├── dispatcher_t.end.hpp │ │ │ │ ├── dispatcher_t.start.hpp │ │ │ │ ├── lock_t.end.hpp │ │ │ │ ├── lock_t.start.hpp │ │ │ │ ├── name_instance_t.end.hpp │ │ │ │ ├── name_instance_t.start.hpp │ │ │ │ ├── node_header_t.end.hpp │ │ │ │ ├── node_header_t.start.hpp │ │ │ │ ├── permanent_data_store_t.end.hpp │ │ │ │ ├── permanent_data_store_t.start.hpp │ │ │ │ ├── process_context_t.end.hpp │ │ │ │ ├── process_context_t.start.hpp │ │ │ │ ├── scope_instance_t.end.hpp │ │ │ │ ├── scope_instance_t.start.hpp │ │ │ │ ├── scope_map_entry_t.end.hpp │ │ │ │ ├── scope_map_entry_t.start.hpp │ │ │ │ ├── scope_map_t.end.hpp │ │ │ │ ├── scope_map_t.start.hpp │ │ │ │ ├── silodriverstate_t.end.hpp │ │ │ │ ├── silodriverstate_t.start.hpp │ │ │ │ ├── state_data_t.end.hpp │ │ │ │ ├── state_data_t.start.hpp │ │ │ │ ├── state_name_registration_t.end.hpp │ │ │ │ ├── state_name_registration_t.start.hpp │ │ │ │ ├── state_name_struct_t.end.hpp │ │ │ │ ├── state_name_struct_t.start.hpp │ │ │ │ ├── state_name_t.end.hpp │ │ │ │ ├── state_name_t.start.hpp │ │ │ │ ├── subscription_t.end.hpp │ │ │ │ ├── subscription_t.start.hpp │ │ │ │ ├── type_id_t.end.hpp │ │ │ │ └── type_id_t.start.hpp │ │ │ ├── name_instance_t.hpp │ │ │ ├── node_header_t.hpp │ │ │ ├── permanent_data_store_t.hpp │ │ │ ├── process_context_t.hpp │ │ │ ├── scope_instance_t.hpp │ │ │ ├── scope_map_entry_t.hpp │ │ │ ├── scope_map_t.hpp │ │ │ ├── silodriverstate_t.hpp │ │ │ ├── state_data_t.hpp │ │ │ ├── state_name_information_t.hpp │ │ │ ├── state_name_lifetime_t.hpp │ │ │ ├── state_name_registration_t.hpp │ │ │ ├── state_name_struct_t.hpp │ │ │ ├── state_name_t.hpp │ │ │ ├── subscription_state_t.hpp │ │ │ ├── subscription_t.hpp │ │ │ ├── type_id_t.hpp │ │ │ └── user_subscription_t.hpp │ │ ├── wsk/ │ │ │ ├── api.hpp │ │ │ ├── buf_t.hpp │ │ │ ├── client_connection_dispatch_t.hpp │ │ │ ├── client_dispatch_t.hpp │ │ │ ├── client_npi_t.hpp │ │ │ ├── data_indication_t.hpp │ │ │ ├── magic/ │ │ │ │ ├── api.end.hpp │ │ │ │ ├── api.start.hpp │ │ │ │ ├── buf_t.end.hpp │ │ │ │ ├── buf_t.start.hpp │ │ │ │ ├── client_connection_dispatch_t.end.hpp │ │ │ │ ├── client_connection_dispatch_t.start.hpp │ │ │ │ ├── client_dispatch_t.end.hpp │ │ │ │ ├── client_dispatch_t.start.hpp │ │ │ │ ├── client_npi_t.end.hpp │ │ │ │ ├── client_npi_t.start.hpp │ │ │ │ ├── data_indication_t.end.hpp │ │ │ │ ├── data_indication_t.start.hpp │ │ │ │ ├── provider_characteristics_t.end.hpp │ │ │ │ ├── provider_characteristics_t.start.hpp │ │ │ │ ├── provider_dispatch_t.end.hpp │ │ │ │ ├── provider_dispatch_t.start.hpp │ │ │ │ ├── provider_npi_t.end.hpp │ │ │ │ ├── provider_npi_t.start.hpp │ │ │ │ ├── registration_t.end.hpp │ │ │ │ └── registration_t.start.hpp │ │ │ ├── provider_characteristics_t.hpp │ │ │ ├── provider_dispatch_t.hpp │ │ │ ├── provider_npi_t.hpp │ │ │ └── registration_t.hpp │ │ ├── wwan/ │ │ │ ├── activation_command_t.hpp │ │ │ ├── auth_aka_challenge_t.hpp │ │ │ ├── auth_akap_challenge_t.hpp │ │ │ ├── auth_challenge_t.hpp │ │ │ ├── auth_method_t.hpp │ │ │ ├── auth_protocol_t.hpp │ │ │ ├── auth_sim_challenge_t.hpp │ │ │ ├── cellular_class_t.hpp │ │ │ ├── compression_t.hpp │ │ │ ├── configuration_source_t.hpp │ │ │ ├── context_type_t.hpp │ │ │ ├── device_caps_t.hpp │ │ │ ├── device_type_t.hpp │ │ │ ├── driver_caps_t.hpp │ │ │ ├── emergency_mode_t.hpp │ │ │ ├── ip_type_t.hpp │ │ │ ├── list_header_t.hpp │ │ │ ├── magic/ │ │ │ │ ├── auth_aka_challenge_t.end.hpp │ │ │ │ ├── auth_aka_challenge_t.start.hpp │ │ │ │ ├── auth_akap_challenge_t.end.hpp │ │ │ │ ├── auth_akap_challenge_t.start.hpp │ │ │ │ ├── auth_challenge_t.end.hpp │ │ │ │ ├── auth_challenge_t.start.hpp │ │ │ │ ├── auth_sim_challenge_t.end.hpp │ │ │ │ ├── auth_sim_challenge_t.start.hpp │ │ │ │ ├── device_caps_t.end.hpp │ │ │ │ ├── device_caps_t.start.hpp │ │ │ │ ├── driver_caps_t.end.hpp │ │ │ │ ├── driver_caps_t.start.hpp │ │ │ │ ├── list_header_t.end.hpp │ │ │ │ ├── list_header_t.start.hpp │ │ │ │ ├── pin_desc_t.end.hpp │ │ │ │ ├── pin_desc_t.start.hpp │ │ │ │ ├── pin_list_t.end.hpp │ │ │ │ ├── pin_list_t.start.hpp │ │ │ │ ├── provider_t.end.hpp │ │ │ │ ├── provider_t.start.hpp │ │ │ │ ├── ready_info_t.end.hpp │ │ │ │ ├── ready_info_t.start.hpp │ │ │ │ ├── service_activation_t.end.hpp │ │ │ │ ├── service_activation_t.start.hpp │ │ │ │ ├── set_context_state_t.end.hpp │ │ │ │ ├── set_context_state_t.start.hpp │ │ │ │ ├── set_context_t.end.hpp │ │ │ │ ├── set_context_t.start.hpp │ │ │ │ ├── set_register_state_t.end.hpp │ │ │ │ ├── set_register_state_t.start.hpp │ │ │ │ ├── set_signal_indication_t.end.hpp │ │ │ │ ├── set_signal_indication_t.start.hpp │ │ │ │ ├── set_sms_configuration_t.end.hpp │ │ │ │ ├── set_sms_configuration_t.start.hpp │ │ │ │ ├── sms_filter_t.end.hpp │ │ │ │ ├── sms_filter_t.start.hpp │ │ │ │ ├── sms_read_t.end.hpp │ │ │ │ ├── sms_read_t.start.hpp │ │ │ │ ├── sms_send_cdma_t.end.hpp │ │ │ │ ├── sms_send_cdma_t.start.hpp │ │ │ │ ├── sms_send_pdu_t.end.hpp │ │ │ │ ├── sms_send_pdu_t.start.hpp │ │ │ │ ├── sms_send_t.end.hpp │ │ │ │ └── sms_send_t.start.hpp │ │ │ ├── packet_service_action_t.hpp │ │ │ ├── pin_desc_t.hpp │ │ │ ├── pin_format_t.hpp │ │ │ ├── pin_list_t.hpp │ │ │ ├── pin_mode_t.hpp │ │ │ ├── provider_t.hpp │ │ │ ├── psmedia_preference_t.hpp │ │ │ ├── ready_info_t.hpp │ │ │ ├── ready_state_t.hpp │ │ │ ├── register_action_t.hpp │ │ │ ├── service_activation_t.hpp │ │ │ ├── set_context_state_t.hpp │ │ │ ├── set_context_t.hpp │ │ │ ├── set_register_state_t.hpp │ │ │ ├── set_signal_indication_t.hpp │ │ │ ├── set_sms_configuration_t.hpp │ │ │ ├── sim_class_t.hpp │ │ │ ├── sms_cdma_encoding_t.hpp │ │ │ ├── sms_cdma_lang_t.hpp │ │ │ ├── sms_filter_t.hpp │ │ │ ├── sms_flag_t.hpp │ │ │ ├── sms_format_t.hpp │ │ │ ├── sms_read_t.hpp │ │ │ ├── sms_send_cdma_t.hpp │ │ │ ├── sms_send_pdu_t.hpp │ │ │ ├── sms_send_t.hpp │ │ │ ├── struct_type_t.hpp │ │ │ └── voice_class_t.hpp │ │ ├── x86bios/ │ │ │ ├── api.hpp │ │ │ └── magic/ │ │ │ ├── api.end.hpp │ │ │ └── api.start.hpp │ │ ├── xdv/ │ │ │ ├── api.hpp │ │ │ └── magic/ │ │ │ ├── api.end.hpp │ │ │ └── api.start.hpp │ │ ├── xhal/ │ │ │ ├── api.hpp │ │ │ └── magic/ │ │ │ ├── api.end.hpp │ │ │ └── api.start.hpp │ │ ├── xhalp/ │ │ │ ├── api.hpp │ │ │ └── magic/ │ │ │ ├── api.end.hpp │ │ │ └── api.start.hpp │ │ ├── xkd/ │ │ │ ├── api.hpp │ │ │ └── magic/ │ │ │ ├── api.end.hpp │ │ │ └── api.start.hpp │ │ └── xm/ │ │ ├── api.hpp │ │ └── magic/ │ │ ├── api.end.hpp │ │ └── api.start.hpp │ └── trustdb/ │ ├── blacklist.txt │ ├── vulnerable.txt │ └── whitelist.txt ├── sdkgen/ │ ├── sdkgen.sln │ ├── sdkgen.vcxproj │ ├── sdkgen.vcxproj.filters │ ├── sdkgen.vcxproj.user │ └── src/ │ ├── config.hpp │ ├── generator.cpp │ ├── generator.hpp │ ├── main.cpp │ ├── text_parsing.hpp │ ├── writer.cpp │ └── writer.hpp ├── selene/ │ ├── crt.cpp │ ├── gdb/ │ │ ├── ce.cpp │ │ ├── ce.hpp │ │ ├── protocol.hpp │ │ ├── stub.cpp │ │ ├── stub.hpp │ │ ├── target.cpp │ │ ├── target.hpp │ │ └── target_desc.hpp │ ├── hooks/ │ │ ├── inline_hooks.cpp │ │ ├── inline_hooks.hpp │ │ ├── irp_hooks.cpp │ │ ├── irp_hooks.hpp │ │ ├── isr_hooks.cpp │ │ ├── isr_hooks.hpp │ │ ├── patch_manager.cpp │ │ └── patch_manager.hpp │ ├── main.cpp │ ├── misc/ │ │ ├── crashdump.cpp │ │ ├── crashdump.hpp │ │ ├── dbglog.hpp │ │ ├── nopg.cpp │ │ ├── nopg.hpp │ │ ├── ntdll_info.cpp │ │ ├── ntdll_info.hpp │ │ ├── oswarden.cpp │ │ ├── oswarden.hpp │ │ ├── pool.cpp │ │ ├── pool.hpp │ │ ├── profiler.cpp │ │ ├── profiler.hpp │ │ ├── shellcode_dumper.cpp │ │ └── shellcode_dumper.hpp │ ├── net/ │ │ ├── layer_defs.hpp │ │ ├── lwip.cpp │ │ ├── lwip.hpp │ │ ├── lwip_bridge.cpp │ │ ├── lwip_bridge.hpp │ │ └── ndispp.hpp │ ├── sched/ │ │ ├── irq.cpp │ │ ├── irq.hpp │ │ ├── passive.cpp │ │ └── passive.hpp │ ├── selene.sln │ ├── selene.vcxproj │ ├── selene.vcxproj.filters │ ├── selene.vcxproj.user │ ├── su/ │ │ ├── emulation.cpp │ │ ├── ext/ │ │ │ ├── apiset.cpp │ │ │ ├── apiset.hpp │ │ │ ├── vpmu.cpp │ │ │ └── vpmu.hpp │ │ ├── kproxy.cpp │ │ ├── mirror.cpp │ │ ├── mirror.hpp │ │ ├── mirrormm.cpp │ │ ├── mirrormm.hpp │ │ ├── mitigations.cpp │ │ ├── mitigations.hpp │ │ ├── monitor.cpp │ │ ├── plpd.cpp │ │ ├── plpd.hpp │ │ ├── proxy.hpp │ │ ├── register_mask.hpp │ │ ├── su0.cpp │ │ ├── su0.hpp │ │ ├── su3.cpp │ │ ├── su3.hpp │ │ ├── trapframe.hpp │ │ ├── uproxy.cpp │ │ ├── vdbg.cpp │ │ ├── vdbg.hpp │ │ ├── vm.hpp │ │ └── xt.hpp │ └── utility/ │ ├── apic.hpp │ ├── memory.cpp │ ├── memory.hpp │ ├── memory_isolation.cpp │ ├── memory_isolation.hpp │ ├── page_manager.hpp │ ├── safe_wrappers.hpp │ ├── thread.cpp │ └── thread.hpp ├── shared/ │ ├── apollo/ │ │ ├── attributes.hpp │ │ ├── builtins.hpp │ │ ├── details/ │ │ │ ├── crt_syscall_hash.hpp │ │ │ ├── satella_linear.hpp │ │ │ └── satella_pe.hpp │ │ ├── satella.hpp │ │ ├── server_string.hpp │ │ ├── server_string_def.hpp │ │ └── vm_impl.hpp │ ├── asm/ │ │ ├── code_relocation.hpp │ │ └── pe_unwind.hpp │ ├── bus/ │ │ └── stor.hpp │ ├── leh.hpp │ ├── ntpp/ │ │ ├── ci.cpp │ │ ├── ci.hpp │ │ ├── common.hpp │ │ ├── enums.hpp │ │ ├── etw.hpp │ │ ├── import.hpp │ │ ├── io.cpp │ │ ├── io.hpp │ │ ├── memory.cpp │ │ ├── memory.hpp │ │ ├── ob.cpp │ │ ├── ob.hpp │ │ ├── reg.cpp │ │ ├── reg.hpp │ │ ├── sync.cpp │ │ ├── sync.hpp │ │ ├── trust.cpp │ │ └── trust.hpp │ ├── ntpp.hpp │ ├── sdkgen/ │ │ ├── common.hpp │ │ ├── cv_builtins.hpp │ │ ├── integral_builtins.hpp │ │ ├── nt_builtins.hpp │ │ ├── runtime.hpp │ │ ├── support_library.hpp │ │ └── symtable.hpp │ ├── shared.sln │ ├── shared.vcxitems │ ├── shared.vcxitems.filters │ ├── tinyjit.hpp │ ├── trace_snapshot.hpp │ ├── wasm/ │ │ ├── common.hpp │ │ ├── descriptors.hpp │ │ ├── enums.hpp │ │ ├── image.hpp │ │ ├── llvm.hpp │ │ └── vm.hpp │ └── xstd_options.hpp └── xt/ ├── .gitignore ├── CMakeLists.txt ├── README.md ├── func_typedefs.h ├── includes/ │ └── xt/ │ ├── config.hpp │ ├── event.hpp │ ├── event_graph.hpp │ └── program_analysis.hpp ├── lib/ │ └── program_analysis.cpp ├── xt.sln ├── xt.vcxproj └── xt.vcxproj.filters