Sunrise.vcxproj 87 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <ItemGroup Label="ProjectConfigurations">
  4. <ProjectConfiguration Include="Debug|x64">
  5. <Configuration>Debug</Configuration>
  6. <Platform>x64</Platform>
  7. </ProjectConfiguration>
  8. <ProjectConfiguration Include="Release|x64">
  9. <Configuration>Release</Configuration>
  10. <Platform>x64</Platform>
  11. </ProjectConfiguration>
  12. </ItemGroup>
  13. <PropertyGroup Label="Globals">
  14. <VCProjectVersion>17.0</VCProjectVersion>
  15. <ProjectGuid>{A665726B-97A2-4E35-B518-0FC207D3DA1B}</ProjectGuid>
  16. <RootNamespace>sunrise</RootNamespace>
  17. <WindowsTargetPlatformVersion>10.0.26100.0</WindowsTargetPlatformVersion>
  18. <ProjectName>Sunrise</ProjectName>
  19. </PropertyGroup>
  20. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
  21. <PropertyGroup Label="Configuration">
  22. <ConfigurationType>DynamicLibrary</ConfigurationType>
  23. <PlatformToolset>v145</PlatformToolset>
  24. <CharacterSet>Unicode</CharacterSet>
  25. </PropertyGroup>
  26. <PropertyGroup Condition="'$(Configuration)'=='Debug'" Label="Configuration">
  27. <UseDebugLibraries>true</UseDebugLibraries>
  28. </PropertyGroup>
  29. <PropertyGroup Condition="'$(Configuration)'=='Release'" Label="Configuration">
  30. <UseDebugLibraries>false</UseDebugLibraries>
  31. <WholeProgramOptimization>true</WholeProgramOptimization>
  32. </PropertyGroup>
  33. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
  34. <PropertyGroup>
  35. <TargetName>steam_api64</TargetName>
  36. <OutDir>$(ProjectDir)..\build\$(Platform)\$(Configuration)\</OutDir>
  37. <IntDir>$(ProjectDir)..\build\obj\$(Platform)\$(Configuration)\</IntDir>
  38. <ExternalIncludePath>$(ExternalIncludePath);$(ProjectDir)vendor\detours;$(ProjectDir)vendor\imgui;$(ProjectDir)vendor\imgui\backends</ExternalIncludePath>
  39. <VcpkgApplocalDeps>false</VcpkgApplocalDeps>
  40. <!-- clang rejects the UCRT offsetof macro in a constant expression, so point it at the
  41. builtin. MSVC refuses the same define as a reserved name, so it stays on this pass. -->
  42. <ClangTidyPrependExtraArgs>-D_CRT_USE_BUILTIN_OFFSETOF $(ClangTidyPrependExtraArgs)</ClangTidyPrependExtraArgs>
  43. </PropertyGroup>
  44. <ItemDefinitionGroup>
  45. <ClCompile>
  46. <LanguageStandard>stdcpp20</LanguageStandard>
  47. <WarningLevel>Level4</WarningLevel>
  48. <TreatWarningAsError>true</TreatWarningAsError>
  49. <ConformanceMode>true</ConformanceMode>
  50. <MultiProcessorCompilation>true</MultiProcessorCompilation>
  51. <AdditionalOptions>/utf-8 %(AdditionalOptions)</AdditionalOptions>
  52. <AdditionalIncludeDirectories>$(ProjectDir)src;$(ProjectDir)vendor\detours;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
  53. <TreatAngleIncludeAsExternal>true</TreatAngleIncludeAsExternal>
  54. <ExternalWarningLevel>TurnOffAllWarnings</ExternalWarningLevel>
  55. <PreprocessorDefinitions>WIN32;_WINDOWS;_USRDLL;WIN32_LEAN_AND_MEAN;NOMINMAX;IMGUI_USER_CONFIG=&quot;core/ui/imgui_user_config.h&quot;;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  56. </ClCompile>
  57. <Link>
  58. <SubSystem>Windows</SubSystem>
  59. <AdditionalDependencies>kernel32.lib;bcrypt.lib;user32.lib;gdi32.lib;dwmapi.lib;d3dcompiler.lib;shell32.lib;ws2_32.lib;synchronization.lib;%(AdditionalDependencies)</AdditionalDependencies>
  60. </Link>
  61. </ItemDefinitionGroup>
  62. <ItemDefinitionGroup Condition="'$(Configuration)'=='Debug'">
  63. <ClCompile>
  64. <Optimization>Disabled</Optimization>
  65. <RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
  66. <PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  67. </ClCompile>
  68. <Link>
  69. <GenerateDebugInformation>true</GenerateDebugInformation>
  70. </Link>
  71. </ItemDefinitionGroup>
  72. <ItemDefinitionGroup Condition="'$(Configuration)'=='Release'">
  73. <ClCompile>
  74. <Optimization>MaxSpeed</Optimization>
  75. <FunctionLevelLinking>true</FunctionLevelLinking>
  76. <IntrinsicFunctions>true</IntrinsicFunctions>
  77. <RuntimeLibrary>MultiThreaded</RuntimeLibrary>
  78. <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
  79. </ClCompile>
  80. <Link>
  81. <GenerateDebugInformation>true</GenerateDebugInformation>
  82. <EnableCOMDATFolding>true</EnableCOMDATFolding>
  83. <OptimizeReferences>true</OptimizeReferences>
  84. </Link>
  85. </ItemDefinitionGroup>
  86. <ItemGroup>
  87. <ResourceCompile Include="resources\sunrise.rc" />
  88. </ItemGroup>
  89. <ItemGroup>
  90. <None Include="resources\default_settings.json" />
  91. <None Include="vendor\detours\LICENSE.md" />
  92. <None Include="vendor\imgui\LICENSE.txt" />
  93. </ItemGroup>
  94. <ItemGroup>
  95. <ClCompile Include="src\dllmain.cpp" />
  96. <ClCompile Include="src\core\logging\log.cpp" />
  97. <ClCompile Include="src\core\logging\snapshot\log_snapshot_ring.cpp" />
  98. <ClCompile Include="src\core\logging\view\log_snapshot_view.cpp" />
  99. <ClCompile Include="src\core\filesystem\path.cpp" />
  100. <ClCompile Include="src\core\filesystem\temporary_sibling.cpp" />
  101. <ClCompile Include="src\core\settings\settings_parser.cpp" />
  102. <ClCompile Include="src\core\settings\json_number.cpp" />
  103. <ClCompile Include="src\core\settings\json_scalar.cpp" />
  104. <ClCompile Include="src\core\settings\json_structure.cpp" />
  105. <ClCompile Include="src\core\settings\settings_runtime.cpp" />
  106. <ClCompile Include="src\core\settings\settings_upgrade.cpp" />
  107. <ClCompile Include="src\core\settings\client\client_settings_parser.cpp" />
  108. <ClCompile Include="src\core\settings\client\client_ui_settings_parser.cpp" />
  109. <ClCompile Include="src\core\settings\server\server_settings_parser.cpp" />
  110. <ClCompile Include="src\core\settings\server\entitlement_settings_parser.cpp" />
  111. <ClCompile Include="src\core\settings\steam\steam_settings_parser.cpp" />
  112. <ClCompile Include="src\core\settings\state\account_settings_parser.cpp" />
  113. <ClCompile Include="src\core\settings\state\family5_override_parser.cpp" />
  114. <ClCompile Include="src\core\settings\state\activity_default_destination_parser.cpp" />
  115. <ClCompile Include="src\core\settings\state\inventory_parser.cpp" />
  116. <ClCompile Include="src\core\settings\state\audio_parser.cpp" />
  117. <ClCompile Include="src\core\settings\state\controls_parser.cpp" />
  118. <ClCompile Include="src\core\settings\state\display_parser.cpp" />
  119. <ClCompile Include="src\core\settings\state\interface_parser.cpp" />
  120. <ClCompile Include="src\core\settings\state\key_bindings_parser.cpp" />
  121. <ClCompile Include="src\core\settings\state\social_parser.cpp" />
  122. <ClCompile Include="src\core\runtime\core_runtime.cpp" />
  123. <ClCompile Include="src\core\runtime\host_environment.cpp" />
  124. <ClCompile Include="src\core\ui\modules\ui_module_descriptor.cpp" />
  125. <ClCompile Include="src\core\ui\modules\registry\ui_module_registry.cpp" />
  126. <ClCompile Include="src\core\ui\modules\logs\logs_module_runtime.cpp" />
  127. <ClCompile Include="src\core\ui\modules\logs\logs_clipboard_writer.cpp" />
  128. <ClCompile Include="src\client\hooks\cursor\cursor_guard_replacements.cpp" />
  129. <ClCompile Include="src\client\hooks\cursor\cursor_hook_lifecycle.cpp" />
  130. <ClCompile Include="src\client\hooks\graphics\renderer\graphics_renderer_device.cpp" />
  131. <ClCompile Include="src\middleware\web_service\messages\opcode504_codec.cpp" />
  132. <ClCompile Include="src\state\runtime\state_account_runtime.cpp" />
  133. <ClCompile Include="src\core\ui\busy\ui_busy_overlay.cpp" />
  134. <ClCompile Include="src\core\ui\busy\ui_busy_state.cpp" />
  135. <ClCompile Include="src\core\ui\notice\ui_notice_overlay.cpp" />
  136. <ClCompile Include="src\core\ui\modules\logs\logs_panel_render.cpp" />
  137. <ClCompile Include="src\core\ui\modules\logs\filters\logs_filter_controls.cpp" />
  138. <ClCompile Include="src\core\ui\runtime\ui_visibility_runtime.cpp" />
  139. <ClCompile Include="src\core\ui\memory\fixed\ui_fixed_allocator.cpp" />
  140. <ClCompile Include="src\core\ui\memory\fixed\ui_fixed_arena.cpp" />
  141. <ClCompile Include="src\core\ui\animation\transition\ui_transition_animation.cpp" />
  142. <ClCompile Include="src\core\ui\components\card\ui_card_component.cpp" />
  143. <ClCompile Include="src\core\ui\components\filter\ui_filter_component.cpp" />
  144. <ClCompile Include="src\core\ui\components\picker\ui_picker_component.cpp" />
  145. <ClCompile Include="src\core\ui\components\navigation\ui_navigation_component.cpp" />
  146. <ClCompile Include="src\core\ui\components\section\ui_section_component.cpp" />
  147. <ClCompile Include="src\core\ui\components\toggle\ui_toggle_component.cpp" />
  148. <ClCompile Include="src\core\ui\fonts\installed\ui_installed_font_reader.cpp" />
  149. <ClCompile Include="src\core\ui\fonts\runtime\ui_runtime_font_lifecycle.cpp" />
  150. <ClCompile Include="src\core\ui\scaling\dpi\ui_dpi_scaling.cpp" />
  151. <ClCompile Include="src\core\ui\theme\sunrise_ui_theme.cpp" />
  152. <ClCompile Include="src\core\ui\layout\ui_layout_lifecycle.cpp" />
  153. <ClCompile Include="src\core\ui\layout\navigation\ui_layout_navigation.cpp" />
  154. <ClCompile Include="src\core\ui\layout\ui_layout_render.cpp" />
  155. <ClCompile Include="src\core\ui\layout\credits\sunrise_credits_badge.cpp" />
  156. <ClCompile Include="src\client\runtime\client_hook_activation.cpp" />
  157. <ClCompile Include="src\client\runtime\client_platform_hook_activation.cpp" />
  158. <ClCompile Include="src\client\runtime\host\game_host_classification.cpp" />
  159. <ClCompile Include="src\client\runtime\client_runtime_lifecycle.cpp" />
  160. <ClCompile Include="src\client\hooks\graphics\discovery\graphics_target_discovery.cpp" />
  161. <ClCompile Include="src\client\hooks\graphics\graphics_hook_lifecycle.cpp" />
  162. <ClCompile Include="src\client\hooks\graphics\graphics_hook_replacements.cpp" />
  163. <ClCompile Include="src\client\hooks\graphics\input\graphics_window_input.cpp" />
  164. <ClCompile Include="src\client\hooks\graphics\input\graphics_raw_input_window.cpp" />
  165. <ClCompile Include="src\client\hooks\polled_input\polled_input_lifecycle.cpp" />
  166. <ClCompile Include="src\client\hooks\polled_input\polled_input_replacements.cpp" />
  167. <ClCompile Include="src\client\hooks\banner\banner_bind.cpp" />
  168. <ClCompile Include="src\client\hooks\banner\banner_hook_lifecycle.cpp" />
  169. <ClCompile Include="src\middleware\datagen\family4\loadout\subclass_socket_selection.cpp" />
  170. <ClCompile Include="src\state\build_data\cache\records\cache_socket_record_codec.cpp" />
  171. <ClCompile Include="src\client\hooks\graphics\renderer\selection\graphics_swap_chain_selection.cpp" />
  172. <ClCompile Include="src\client\hooks\graphics\renderer\graphics_renderer_lifecycle.cpp" />
  173. <ClCompile Include="src\client\hooks\graphics\renderer\graphics_renderer_frame.cpp" />
  174. <ClCompile Include="src\client\hooks\graphics\renderer\graphics_renderer_report.cpp" />
  175. <ClCompile Include="src\client\hooks\egress\dns\egress_dns_replacements.cpp" />
  176. <ClCompile Include="src\client\hooks\egress\resolver\egress_resolver_forward.cpp" />
  177. <ClCompile Include="src\client\hooks\egress\resolver\egress_resolver_reverse.cpp" />
  178. <ClCompile Include="src\client\hooks\egress\extensions\egress_extension_replacements.cpp" />
  179. <ClCompile Include="src\client\hooks\egress\lifecycle\egress_guard_lifecycle.cpp" />
  180. <ClCompile Include="src\client\hooks\egress\lifecycle\egress_guard_modules.cpp" />
  181. <ClCompile Include="src\client\hooks\egress\lifecycle\egress_guard_exports.cpp" />
  182. <ClCompile Include="src\client\hooks\egress\policy\egress_policy_logging.cpp" />
  183. <ClCompile Include="src\client\hooks\egress\policy\egress_policy_endpoint.cpp" />
  184. <ClCompile Include="src\client\hooks\egress\winsock\connection\egress_connection_replacements.cpp" />
  185. <ClCompile Include="src\client\hooks\egress\winsock\control\egress_control_replacement.cpp" />
  186. <ClCompile Include="src\client\hooks\egress\winsock\discovery\egress_discovery_responder.cpp" />
  187. <ClCompile Include="src\client\hooks\egress\winsock\reception\egress_reception_replacements.cpp" />
  188. <ClCompile Include="src\client\hooks\egress\winsock\transmission\egress_transmission_replacements.cpp" />
  189. <ClCompile Include="src\client\hooks\egress\winsock\transmission\egress_datagram_transmission.cpp" />
  190. <ClCompile Include="src\client\hooks\egress\winsock\transmission\egress_message_transmission.cpp" />
  191. <ClCompile Include="src\client\ui\runtime\client_ui_module_runtime.cpp" />
  192. <ClCompile Include="src\client\ui\movement\movement_panel.cpp" />
  193. <ClCompile Include="src\client\movement\movement_settings_store.cpp" />
  194. <ClCompile Include="src\client\hooks\noclip\horizontal_noclip.cpp" />
  195. <ClCompile Include="src\client\hooks\teleport\teleport_lifecycle.cpp" />
  196. <ClCompile Include="src\client\hooks\teleport\teleport_move.cpp" />
  197. <ClCompile Include="src\client\hooks\teleport\teleport_action_key.cpp" />
  198. <ClCompile Include="src\client\hooking\detour.cpp" />
  199. <ClCompile Include="src\client\hooking\detour\protected_detour_uninstall.cpp" />
  200. <ClCompile Include="src\client\hooking\detour\transaction\detour_thread_transaction.cpp" />
  201. <ClCompile Include="src\client\executable\image.cpp" />
  202. <ClCompile Include="src\client\memory\current_process_memory.cpp" />
  203. <ClCompile Include="src\client\hooks\network\investment\investment_derived_rebuild.cpp" />
  204. <ClCompile Include="src\client\hooks\network\investment\investment_family5_rearm.cpp" />
  205. <ClCompile Include="src\client\hooks\bitmap\bitmap_hook_lifecycle.cpp" />
  206. <ClCompile Include="src\client\hooks\bitmap\bitmap_ref_guard.cpp" />
  207. <ClCompile Include="src\client\hooks\external_server\external_server_route.cpp" />
  208. <ClCompile Include="src\client\hooks\external_server\external_server_setopt_guard.cpp" />
  209. <ClCompile Include="src\client\hooks\bootflow\bootflow_hook_lifecycle.cpp" />
  210. <ClCompile Include="src\client\hooks\bootflow\character_select_hold.cpp" />
  211. <ClCompile Include="src\client\hooks\bootflow\composition_check.cpp" />
  212. <ClCompile Include="src\client\hooks\bootflow\orbit_handoff.cpp" />
  213. <ClCompile Include="src\client\hooks\bootflow\owner_activity_slot.cpp" />
  214. <ClCompile Include="src\client\hooks\bootflow\orbit_slice_set.cpp" />
  215. <ClCompile Include="src\client\hooks\bootflow\region_private.cpp" />
  216. <ClCompile Include="src\client\hooks\bootflow\profile_setup_skip.cpp" />
  217. <ClCompile Include="src\client\hooks\bootflow\join_request_ready.cpp" />
  218. <ClCompile Include="src\client\hooks\bootflow\world_step.cpp" />
  219. <ClCompile Include="src\client\hooks\bootflow\spawn_hold.cpp" />
  220. <ClCompile Include="src\client\hooks\bootflow\spawn\spawn_gate_probe.cpp" />
  221. <ClCompile Include="src\client\hooks\bootflow\spawn\spawn_gate_targets.cpp" />
  222. <ClCompile Include="src\client\hooks\bootflow\spawn\spawn_gate_record_dump.cpp" />
  223. <ClCompile Include="src\client\hooks\bootflow\fade_release.cpp" />
  224. <ClCompile Include="src\server\bap\encrypted\push\activity\activity_arrival.cpp" />
  225. <ClCompile Include="src\middleware\bap\activity_host_manager\request\selection\activity_manager_selection_bits.cpp" />
  226. <ClCompile Include="src\middleware\bap\activity_host_manager\request\selection\activity_manager_selection_snapshot.cpp" />
  227. <ClCompile Include="src\core\settings\state\activity_arrival_override_parser.cpp" />
  228. <ClCompile Include="src\client\hooks\queuez\family0_subscription.cpp" />
  229. <ClCompile Include="src\client\hooks\queuez\svc123_null_payload_guard.cpp" />
  230. <ClCompile Include="src\client\hooks\queuez\queuez_hook_lifecycle.cpp" />
  231. <ClCompile Include="src\client\content\diagnostics\content_readiness_report.cpp" />
  232. <ClCompile Include="src\client\hooks\network\bubble_authority\bubble_authority_replacements.cpp" />
  233. <ClCompile Include="src\client\hooks\network\bubble_authority\scope\bubble_authority_scope.cpp" />
  234. <ClCompile Include="src\client\hooks\network\http\http_descriptor_route.cpp" />
  235. <ClCompile Include="src\client\hooks\network\http\http_executor_replacement.cpp" />
  236. <ClCompile Include="src\client\hooks\network\http\http_worker_completion.cpp" />
  237. <ClCompile Include="src\client\hooks\network\signon\signon_readiness_replacements.cpp" />
  238. <ClCompile Include="src\client\patterns\game\signon\signon_readiness_signature_bytes.cpp" />
  239. <ClCompile Include="src\client\graphics\wine_compat.cpp" />
  240. <ClCompile Include="src\core\settings\client\external\client_external_settings_parser.cpp" />
  241. <ClCompile Include="src\client\targets\game\game_retail_log_targets.cpp" />
  242. <ClCompile Include="src\client\patterns\game\retail_log\retail_log_signature_bytes.cpp" />
  243. <ClCompile Include="src\client\hooks\retail_log\retail_log_enqueue_observer.cpp" />
  244. <ClCompile Include="src\client\hooks\retail_log\retail_log_lifecycle.cpp" />
  245. <ClCompile Include="src\client\hooks\assert_handler\assert_handler_lifecycle.cpp" />
  246. <ClCompile Include="src\client\hooks\assert_handler\assert_handler_observer.cpp" />
  247. <ClCompile Include="src\client\targets\game\assert_handler\game_assert_targets.cpp" />
  248. <ClCompile Include="src\client\targets\game\packages\game_package_targets.cpp" />
  249. <ClCompile Include="src\client\targets\game\config_getter\game_config_getter_targets.cpp" />
  250. <ClCompile Include="src\client\patterns\game\config_getter\config_getter_signature_bytes.cpp" />
  251. <ClCompile Include="src\client\hooks\config_getter\config_getter_lifecycle.cpp" />
  252. <ClCompile Include="src\client\hooks\config_getter\config_getter_answers.cpp" />
  253. <ClCompile Include="src\client\patterns\game\packages\package_key_signature_bytes.cpp" />
  254. <ClCompile Include="src\client\patterns\game\assert_handler\assert_signature_bytes.cpp" />
  255. <ClCompile Include="src\client\hooks\network\coordinator\network_call_coordinator.cpp" />
  256. <ClCompile Include="src\client\hooks\network\network_call_quiescence.cpp" />
  257. <ClCompile Include="src\client\hooks\network\content_config\coordinator\content_config_call_coordinator.cpp" />
  258. <ClCompile Include="src\client\hooks\network\content_config\gate\content_config_signature_gate.cpp" />
  259. <ClCompile Include="src\client\hooks\network\content_config\lifecycle\content_config_hook_install.cpp" />
  260. <ClCompile Include="src\client\hooks\network\content_config\lifecycle\content_config_hook_lifecycle.cpp" />
  261. <ClCompile Include="src\client\hooks\network\content_config\lifecycle\content_config_hook_storage.cpp" />
  262. <ClCompile Include="src\client\hooks\network\content_config\lifecycle\content_config_hook_uninstall.cpp" />
  263. <ClCompile Include="src\client\hooks\network\content_config\request\content_config_get_replacement.cpp" />
  264. <ClCompile Include="src\client\hooks\network\content_config\tick\content_config_tick_replacement.cpp" />
  265. <ClCompile Include="src\client\hooks\network\lifecycle\network_hook_group.cpp" />
  266. <ClCompile Include="src\client\hooks\network\lifecycle\network_hook_entries.cpp" />
  267. <ClCompile Include="src\client\hooks\network\lifecycle\network_hook_lifecycle.cpp" />
  268. <ClCompile Include="src\client\hooks\network\network_consumer_registration.cpp" />
  269. <ClCompile Include="src\client\hooks\network\platform.cpp" />
  270. <ClCompile Include="src\client\patterns\registry.cpp" />
  271. <ClCompile Include="src\client\patterns\image_scan.cpp" />
  272. <ClCompile Include="src\client\patterns\game_signatures.cpp" />
  273. <ClCompile Include="src\client\patterns\steam_signatures.cpp" />
  274. <ClCompile Include="src\client\targets\steam_targets.cpp" />
  275. <ClCompile Include="src\client\targets\game\game_content_targets.cpp" />
  276. <ClCompile Include="src\client\targets\game\game_network_targets.cpp" />
  277. <ClCompile Include="src\client\targets\game\network\network_content_derivation.cpp" />
  278. <ClCompile Include="src\client\targets\game\resolution\game_target_resolution.cpp" />
  279. <ClCompile Include="vendor\detours\detours.cpp">
  280. <WarningLevel>Level3</WarningLevel>
  281. <TreatWarningAsError>false</TreatWarningAsError>
  282. <ExcludedFromBuild Condition="'$(SunriseRunClangTidy)'=='true'">true</ExcludedFromBuild>
  283. </ClCompile>
  284. <ClCompile Include="vendor\detours\disasm.cpp">
  285. <WarningLevel>Level3</WarningLevel>
  286. <TreatWarningAsError>false</TreatWarningAsError>
  287. <ExcludedFromBuild Condition="'$(SunriseRunClangTidy)'=='true'">true</ExcludedFromBuild>
  288. </ClCompile>
  289. <ClCompile Include="vendor\detours\modules.cpp">
  290. <WarningLevel>Level3</WarningLevel>
  291. <TreatWarningAsError>false</TreatWarningAsError>
  292. <ExcludedFromBuild Condition="'$(SunriseRunClangTidy)'=='true'">true</ExcludedFromBuild>
  293. </ClCompile>
  294. <ClCompile Include="vendor\imgui\imgui.cpp">
  295. <WarningLevel>Level3</WarningLevel>
  296. <TreatWarningAsError>false</TreatWarningAsError>
  297. <ExcludedFromBuild Condition="'$(SunriseRunClangTidy)'=='true'">true</ExcludedFromBuild>
  298. </ClCompile>
  299. <ClCompile Include="vendor\imgui\imgui_draw.cpp">
  300. <WarningLevel>Level3</WarningLevel>
  301. <TreatWarningAsError>false</TreatWarningAsError>
  302. <ExcludedFromBuild Condition="'$(SunriseRunClangTidy)'=='true'">true</ExcludedFromBuild>
  303. </ClCompile>
  304. <ClCompile Include="vendor\imgui\imgui_tables.cpp">
  305. <WarningLevel>Level3</WarningLevel>
  306. <TreatWarningAsError>false</TreatWarningAsError>
  307. <ExcludedFromBuild Condition="'$(SunriseRunClangTidy)'=='true'">true</ExcludedFromBuild>
  308. </ClCompile>
  309. <ClCompile Include="vendor\imgui\imgui_widgets.cpp">
  310. <WarningLevel>Level3</WarningLevel>
  311. <TreatWarningAsError>false</TreatWarningAsError>
  312. <ExcludedFromBuild Condition="'$(SunriseRunClangTidy)'=='true'">true</ExcludedFromBuild>
  313. </ClCompile>
  314. <ClCompile Include="vendor\imgui\backends\imgui_impl_win32.cpp">
  315. <WarningLevel>Level3</WarningLevel>
  316. <TreatWarningAsError>false</TreatWarningAsError>
  317. <ExcludedFromBuild Condition="'$(SunriseRunClangTidy)'=='true'">true</ExcludedFromBuild>
  318. </ClCompile>
  319. <ClCompile Include="vendor\imgui\backends\imgui_impl_dx11.cpp">
  320. <WarningLevel>Level3</WarningLevel>
  321. <TreatWarningAsError>false</TreatWarningAsError>
  322. <ExcludedFromBuild Condition="'$(SunriseRunClangTidy)'=='true'">true</ExcludedFromBuild>
  323. </ClCompile>
  324. <ClCompile Include="src\steam\runtime\callbacks\callback_dispatch.cpp" />
  325. <ClCompile Include="src\steam\runtime\callbacks\callback_registry.cpp" />
  326. <ClCompile Include="src\steam\runtime\steam_lifecycle.cpp" />
  327. <ClCompile Include="src\steam\runtime\context\steam_context_state.cpp" />
  328. <ClCompile Include="src\steam\interfaces\methods\common.cpp" />
  329. <ClCompile Include="src\steam\interfaces\methods\apps_dlc.cpp" />
  330. <ClCompile Include="src\steam\interfaces\methods\apps_metadata.cpp" />
  331. <ClCompile Include="src\steam\interfaces\methods\friends.cpp" />
  332. <ClCompile Include="src\steam\interfaces\methods\signon_inputs.cpp" />
  333. <ClCompile Include="src\steam\interfaces\methods\app_ticket.cpp" />
  334. <ClCompile Include="src\steam\interfaces\methods\matchmaking.cpp" />
  335. <ClCompile Include="src\steam\interfaces\methods\serialized_networking.cpp" />
  336. <ClCompile Include="src\steam\interfaces\tables\common_tables.cpp" />
  337. <ClCompile Include="src\steam\interfaces\tables\network_tables.cpp" />
  338. <ClCompile Include="src\steam\interfaces\tables\table_runtime.cpp" />
  339. <ClCompile Include="src\steam\interfaces\steam_interface_factory.cpp" />
  340. <ClCompile Include="src\state\runtime\state_runtime.cpp" />
  341. <ClCompile Include="src\state\activity\activity_session_lookup.cpp" />
  342. <ClCompile Include="src\state\activity\activity_world_arrival.cpp" />
  343. <ClCompile Include="src\state\activity\membership\activity_membership_query.cpp" />
  344. <ClCompile Include="src\state\unlocks\unlocks_runtime.cpp" />
  345. <ClCompile Include="src\state\entitlements\entitlement_defaults.cpp" />
  346. <ClCompile Include="src\state\entitlements\entitlement_runtime.cpp" />
  347. <ClCompile Include="src\state\entitlements\entitlement_validation.cpp" />
  348. <ClCompile Include="src\state\activity\defaults\activity_defaults_snapshot.cpp" />
  349. <ClCompile Include="src\state\activity\defaults\activity_defaults_validation.cpp" />
  350. <ClCompile Include="src\state\activity\destination\activity_destination_snapshot.cpp" />
  351. <ClCompile Include="src\state\activity\destination\activity_destination_spawn_binding.cpp" />
  352. <ClCompile Include="src\state\activity\destination\activity_destination_validation.cpp" />
  353. <ClCompile Include="src\state\activity\transactions\activity_session_prepare.cpp" />
  354. <ClCompile Include="src\state\activity\transactions\activity_session_commit.cpp" />
  355. <ClCompile Include="src\state\activity\transactions\activity_session_release.cpp" />
  356. <ClCompile Include="src\state\activity\entity_slots\transactions\activity_entity_slot_prepare.cpp" />
  357. <ClCompile Include="src\state\activity\entity_slots\transactions\activity_entity_slot_commit.cpp" />
  358. <ClCompile Include="src\state\activity\bubble_authority\transactions\activity_bubble_authority_grant.cpp" />
  359. <ClCompile Include="src\state\activity\membership\transactions\activity_membership_prepare_base.cpp" />
  360. <ClCompile Include="src\state\activity\membership\transactions\activity_membership_authoritative_prepare.cpp" />
  361. <ClCompile Include="src\state\activity\membership\transactions\activity_membership_authoritative_commit.cpp" />
  362. <ClCompile Include="src\state\activity\membership\transactions\activity_membership_prepare.cpp" />
  363. <ClCompile Include="src\state\activity\membership\transactions\activity_membership_commit.cpp" />
  364. <ClCompile Include="src\state\matchmaking\matchmaking_state.cpp" />
  365. <ClCompile Include="src\state\matchmaking\transactions\matchmaking_prepare.cpp" />
  366. <ClCompile Include="src\state\matchmaking\transactions\matchmaking_commit.cpp" />
  367. <ClCompile Include="src\state\runtime\equipment\configured_equipment_identity.cpp" />
  368. <ClCompile Include="src\state\account\account_state.cpp" />
  369. <ClCompile Include="src\state\account\inventory\inventory_state.cpp" />
  370. <ClCompile Include="src\state\account\settings\settings_state.cpp" />
  371. <ClCompile Include="src\state\equipment\light\calculation\equipment_light_calculation.cpp" />
  372. <ClCompile Include="src\state\equipment\light\resolution\configured_equipment_light_resolver.cpp" />
  373. <ClCompile Include="src\state\content\content_catalog.cpp" />
  374. <ClCompile Include="src\state\content_manifest\cache\content_manifest_cache_reader.cpp" />
  375. <ClCompile Include="src\state\content_manifest\cache\content_manifest_cache_writer.cpp" />
  376. <ClCompile Include="src\state\content_manifest\fingerprint\content_manifest_fingerprint.cpp" />
  377. <ClCompile Include="src\state\content_manifest\content_manifest_state_runtime.cpp" />
  378. <ClCompile Include="src\state\content_manifest\scanner\content_manifest_directory_scan.cpp" />
  379. <ClCompile Include="src\state\content_manifest\scanner\content_manifest_header_extraction.cpp" />
  380. <ClCompile Include="src\state\content_manifest\scanner\package\content_manifest_package_header.cpp" />
  381. <ClCompile Include="src\state\content_manifest\scanner\package\content_manifest_package_name.cpp" />
  382. <ClCompile Include="src\state\content_manifest\content_manifest_row_validation.cpp" />
  383. <ClCompile Include="src\state\build_data\build_data_runtime.cpp" />
  384. <ClCompile Include="src\state\build_data\runtime\persistence\build_data_persistence.cpp" />
  385. <ClCompile Include="src\state\build_data\runtime\persistence\publication_transaction.cpp" />
  386. <ClCompile Include="src\state\build_data\cache\read\cache_file_reader.cpp" />
  387. <ClCompile Include="src\state\build_data\cache\read\cache_payload_reader.cpp" />
  388. <ClCompile Include="src\state\build_data\cache\records\cache_domain_validation.cpp" />
  389. <ClCompile Include="src\state\build_data\cache\records\cache_record_codec.cpp" />
  390. <ClCompile Include="src\state\build_data\cache\records\cache_scenario_records.cpp" />
  391. <ClCompile Include="src\state\build_data\cache\records\cache_spawn_set_records.cpp" />
  392. <ClCompile Include="src\state\build_data\cache\records\cache_vendor_records.cpp" />
  393. <ClCompile Include="src\state\build_data\vendors\vendor_catalog.cpp" />
  394. <ClCompile Include="src\state\build_data\vendors\vendor_expression.cpp" />
  395. <ClCompile Include="src\client\content\vendors\package_vendor_build.cpp" />
  396. <ClCompile Include="src\state\build_data\cache\records\cache_hash_name_records.cpp" />
  397. <ClCompile Include="src\state\build_data\cache\records\cache_detail_links.cpp" />
  398. <ClCompile Include="src\state\build_data\scenarios\scenario_catalog.cpp" />
  399. <ClCompile Include="src\state\build_data\spawn_sets\spawn_set_catalog.cpp" />
  400. <ClCompile Include="src\state\build_data\hash_names\hash_name_catalog.cpp" />
  401. <ClCompile Include="src\state\activity\forced\activity_forced_destination.cpp" />
  402. <ClCompile Include="src\state\build_data\runtime\build_data_roster_runtime.cpp" />
  403. <ClCompile Include="src\client\content\scenarios\scenario_build.cpp" />
  404. <ClCompile Include="src\client\content\scenarios\scenario_collect.cpp" />
  405. <ClCompile Include="src\client\content\spawn_sets\spawn_set_build.cpp" />
  406. <ClCompile Include="src\client\content\hash_names\hash_name_build.cpp" />
  407. <ClCompile Include="src\client\content\hash_names\hash_name_matcher.cpp" />
  408. <ClCompile Include="src\client\content\spawn_sets\spawn_set_catalog_builder.cpp" />
  409. <ClCompile Include="src\client\content\scenarios\scenario_roster_build.cpp" />
  410. <ClCompile Include="src\client\content\scenarios\scenario_roster_groups.cpp" />
  411. <ClCompile Include="src\client\content\scenarios\scenario_roster_publish.cpp" />
  412. <ClCompile Include="src\state\build_data\cache\write\cache_file_writer.cpp" />
  413. <ClCompile Include="src\state\build_data\cache\write\temporary\temporary_cache_file.cpp" />
  414. <ClCompile Include="src\state\build_data\cache\write\validation\cache_file_comparison.cpp" />
  415. <ClCompile Include="src\state\build_data\cache\write\cache_payload_writer.cpp" />
  416. <ClCompile Include="src\state\build_data\items\item_catalog.cpp" />
  417. <ClCompile Include="src\state\build_data\items\item_build_data_runtime.cpp" />
  418. <ClCompile Include="src\state\build_data\items\details\item_detail_catalog.cpp" />
  419. <ClCompile Include="src\state\build_data\constants\investment_constant_catalog.cpp" />
  420. <ClCompile Include="src\state\build_data\abilities\ability_bucket_catalog.cpp" />
  421. <ClCompile Include="src\state\build_data\progressions\progression_catalog.cpp" />
  422. <ClCompile Include="src\state\build_data\runtime\domain_markers.cpp" />
  423. <ClCompile Include="src\state\build_data\inventory\buckets\inventory_bucket_catalog.cpp" />
  424. <ClCompile Include="src\state\build_data\runtime\build_data_catalog_runtime.cpp" />
  425. <ClCompile Include="src\state\build_data\named_build_data_runtime.cpp" />
  426. <ClCompile Include="src\state\build_data\socket_entry_lists\socket_entry_list_catalog.cpp" />
  427. <ClCompile Include="src\client\content\handles\handle_resolver.cpp" />
  428. <ClCompile Include="src\client\content\activity\activity_tag_reader.cpp" />
  429. <ClCompile Include="src\client\content\bootstrap\bootstrap_token_publish.cpp" />
  430. <ClCompile Include="src\client\content\investment\investment_source.cpp" />
  431. <ClCompile Include="src\client\content\investment\investment_refresh.cpp" />
  432. <ClCompile Include="src\client\content\investment\worker\investment_refresh_worker.cpp" />
  433. <ClCompile Include="src\client\content\items\details\configured_item_detail_extractor.cpp" />
  434. <ClCompile Include="src\client\content\items\details\definition_detail_reader.cpp" />
  435. <ClCompile Include="src\client\content\items\details\socket_detail_reader.cpp" />
  436. <ClCompile Include="src\middleware\datagen\character_record\character_record_encoder.cpp" />
  437. <ClCompile Include="src\middleware\datagen\character_record\appearance\character_appearance_stats.cpp" />
  438. <ClCompile Include="src\middleware\datagen\character_record\appearance\character_appearance_abilities.cpp" />
  439. <ClCompile Include="src\middleware\datagen\character_record\appearance\character_appearance_banks.cpp" />
  440. <ClCompile Include="src\middleware\datagen\character_record\appearance\character_appearance_render.cpp" />
  441. <ClCompile Include="src\middleware\datagen\character_record\appearance\character_appearance_sentinels.cpp" />
  442. <ClCompile Include="src\middleware\datagen\family4\loadout\loadout_item_resolver.cpp" />
  443. <ClCompile Include="src\middleware\datagen\family4\loadout\loadout_resolver.cpp" />
  444. <ClCompile Include="src\middleware\datagen\family4\account\selection_patch\account_selection_patch_encoder.cpp" />
  445. <ClCompile Include="src\server\runtime\server_runtime.cpp" />
  446. <ClCompile Include="src\server\ui\runtime\server_ui_module_runtime.cpp" />
  447. <ClCompile Include="src\server\ui\activity_override\activity_override_panel.cpp" />
  448. <ClCompile Include="src\server\ui\activity_override\activity_override_lists.cpp" />
  449. <ClCompile Include="src\server\transport\bap_listener.cpp" />
  450. <ClCompile Include="src\server\bap\bap_route.cpp" />
  451. <ClCompile Include="src\server\bap\plaintext.cpp" />
  452. <ClCompile Include="src\server\bap\encrypted\encrypted_runtime.cpp" />
  453. <ClCompile Include="src\server\bap\encrypted\activity_transaction\activity_transaction_notifications.cpp" />
  454. <ClCompile Include="src\server\bap\encrypted\body\bap_service_body.cpp" />
  455. <ClCompile Include="src\server\bap\encrypted\routing\bap_service_routing.cpp" />
  456. <ClCompile Include="src\server\bap\encrypted\routing\bap_service_failure.cpp" />
  457. <ClCompile Include="src\server\bap\encrypted\reply\bap_encrypted_reply.cpp" />
  458. <ClCompile Include="src\server\bap\encrypted\activity_host_manager\activity_host_manager_route.cpp" />
  459. <ClCompile Include="src\server\bap\encrypted\activity_message\activity_message_route.cpp" />
  460. <ClCompile Include="src\server\bap\encrypted\activity_message\patch_epoch\activity_patch_epoch_route.cpp" />
  461. <ClCompile Include="src\server\bap\encrypted\activity_message\membership\activity_membership_route.cpp" />
  462. <ClCompile Include="src\server\bap\encrypted\matchmaking\matchmaking_route.cpp" />
  463. <ClCompile Include="src\server\bap\encrypted\transactions\service_outcome_commit.cpp" />
  464. <ClCompile Include="src\server\bap\encrypted\queuez\queuez_state_validation.cpp" />
  465. <ClCompile Include="src\server\bap\encrypted\queuez\staging\queuez_family_staging.cpp" />
  466. <ClCompile Include="src\server\bap\encrypted\queuez\staging\queuez_character_staging.cpp" />
  467. <ClCompile Include="src\server\bap\encrypted\queuez\queuez_deferred_push.cpp" />
  468. <ClCompile Include="src\server\bap\encrypted\queuez\queuez_outcome_staging.cpp" />
  469. <ClCompile Include="src\server\bap\encrypted\push\queuez\queuez_update_frame.cpp" />
  470. <ClCompile Include="src\server\bap\encrypted\push\queuez\queuez_subscription.cpp" />
  471. <ClCompile Include="src\server\bap\encrypted\push\queuez\queuez_change_character.cpp" />
  472. <ClCompile Include="src\server\bap\encrypted\push\queuez\queuez_select_character.cpp" />
  473. <ClCompile Include="src\server\bap\encrypted\push\activity\activity_message_push.cpp" />
  474. <ClCompile Include="src\server\bap\encrypted\push\activity\activity_roster_push.cpp" />
  475. <ClCompile Include="src\server\bap\encrypted\push\activity\activity_roster_snapshot.cpp" />
  476. <ClCompile Include="src\server\bap\encrypted\push\activity\activity_roster_report.cpp" />
  477. <ClCompile Include="src\server\bap\encrypted\push\activity\activity_keepalive_seed.cpp" />
  478. <ClCompile Include="src\server\bap\encrypted\bap_connection_publication.cpp" />
  479. <ClCompile Include="src\server\bap\encrypted\push\activity\activity_membership_push.cpp" />
  480. <ClCompile Include="src\server\bap\encrypted\push\activity\activity_global_state_push.cpp" />
  481. <ClCompile Include="src\server\bap\encrypted\push\activity\activity_keepalive_push.cpp" />
  482. <ClCompile Include="src\server\bap\encrypted\push\activity\activity_notification_frame.cpp" />
  483. <ClCompile Include="src\server\bap\encrypted\push\snapshot\snapshot_object_compressor.cpp" />
  484. <ClCompile Include="src\server\bap\encrypted\push\snapshot\family4_selection_resolver.cpp" />
  485. <ClCompile Include="src\server\bap\encrypted\push\snapshot\family4_snapshot_preparer.cpp" />
  486. <ClCompile Include="src\server\bap\encrypted\push\snapshot\family4_selection_move.cpp" />
  487. <ClCompile Include="src\server\bap\encrypted\push\snapshot\initial_snapshot.cpp" />
  488. <ClCompile Include="src\server\bap\encrypted\push\snapshot\banner_snapshot.cpp" />
  489. <ClCompile Include="src\server\bap\encrypted\push\snapshot\roster_snapshot.cpp" />
  490. <ClCompile Include="src\server\bap\encrypted\push\snapshot\snapshot_storage.cpp" />
  491. <ClCompile Include="src\server\web_service\opcode_routes.cpp" />
  492. <ClCompile Include="src\server\web_service\web_service_runtime.cpp" />
  493. <ClCompile Include="src\server\http\server_http.cpp" />
  494. <ClCompile Include="src\middleware\runtime\middleware_runtime.cpp" />
  495. <ClCompile Include="src\middleware\protobuf\protobuf_measure.cpp" />
  496. <ClCompile Include="src\middleware\protobuf\protobuf_reader.cpp" />
  497. <ClCompile Include="src\middleware\protobuf\protobuf_wire.cpp" />
  498. <ClCompile Include="src\middleware\protobuf\protobuf_writer.cpp" />
  499. <ClCompile Include="src\middleware\bap\bap_frame.cpp" />
  500. <ClCompile Include="src\middleware\bap\account_translation\account_translation_response.cpp" />
  501. <ClCompile Include="src\middleware\bap\activity_host\activity_host_response.cpp" />
  502. <ClCompile Include="src\middleware\bap\activity_host_manager\request\activity_manager_request.cpp" />
  503. <ClCompile Include="src\middleware\bap\activity_host_manager\request\selection\activity_manager_selection_descriptor.cpp" />
  504. <ClCompile Include="src\middleware\bap\activity_host_manager\request\selection\activity_manager_selection_parser.cpp" />
  505. <ClCompile Include="src\middleware\bap\activity_host_manager\request\selection\activity_manager_descriptor_parser.cpp" />
  506. <ClCompile Include="src\middleware\bap\activity_host_manager\request\selection\activity_manager_descriptor_reader.cpp" />
  507. <ClCompile Include="src\middleware\bap\activity_host_manager\response\activity_manager_response.cpp" />
  508. <ClCompile Include="src\middleware\bap\activity_message\activity_message_request_parser.cpp" />
  509. <ClCompile Include="src\middleware\bap\activity_message\activity_sensor_auth_encoder.cpp" />
  510. <ClCompile Include="src\middleware\bap\activity_message\activity_sensor_auth_blocks.cpp" />
  511. <ClCompile Include="src\middleware\bap\activity_message\activity_sensor_auth_bodies.cpp" />
  512. <ClCompile Include="src\middleware\bap\activity_message\activity_authoritative_data_parser.cpp" />
  513. <ClCompile Include="src\middleware\bap\activity_message\activity_authoritative_opaque_skip.cpp" />
  514. <ClCompile Include="src\middleware\bap\activity_message\activity_client_keepalive_validator.cpp" />
  515. <ClCompile Include="src\middleware\bap\activity_message\activity_high_water_validator.cpp" />
  516. <ClCompile Include="src\middleware\bap\activity_message\activity_join_request_parser.cpp" />
  517. <ClCompile Include="src\middleware\bap\activity_message\activity_client_identity_parser.cpp" />
  518. <ClCompile Include="src\middleware\bap\activity_message\activity_state_refresh_parser.cpp" />
  519. <ClCompile Include="src\middleware\bap\activity_message\activity_membership_acknowledgement_parser.cpp" />
  520. <ClCompile Include="src\middleware\bap\activity_message\activity_global_state_encoder.cpp" />
  521. <ClCompile Include="src\middleware\bap\activity_message\activity_patch_epoch_parser.cpp" />
  522. <ClCompile Include="src\middleware\bap\activity_message\activity_membership_member_writer.cpp" />
  523. <ClCompile Include="src\middleware\bap\activity_message\activity_membership_region_writer.cpp" />
  524. <ClCompile Include="src\middleware\bap\activity_message\activity_replicate_membership_encoder.cpp" />
  525. <ClCompile Include="src\middleware\bap\activity_message\activity_message_notification_encoder.cpp" />
  526. <ClCompile Include="src\middleware\bap\activity_message\activity_join_result_encoder.cpp" />
  527. <ClCompile Include="src\middleware\bap\activity_message\activity_entity_slot_request_parser.cpp" />
  528. <ClCompile Include="src\middleware\bap\activity_message\activity_entity_slots_decoder.cpp" />
  529. <ClCompile Include="src\middleware\bap\activity_message\activity_entity_authority_parser.cpp" />
  530. <ClCompile Include="src\middleware\bap\activity_message\activity_incident_parser.cpp" />
  531. <ClCompile Include="src\middleware\bap\activity_message\activity_entity_slots_encoder.cpp" />
  532. <ClCompile Include="src\middleware\bap\certificate.cpp" />
  533. <ClCompile Include="src\middleware\bap\client_config\client_config_response.cpp" />
  534. <ClCompile Include="src\middleware\bap\family_subscription.cpp" />
  535. <ClCompile Include="src\middleware\bap\family_unsubscription.cpp" />
  536. <ClCompile Include="src\middleware\bap\matchmaking\request\matchmaking_request_parser.cpp" />
  537. <ClCompile Include="src\middleware\bap\matchmaking\request\matchmaking_field_selection.cpp" />
  538. <ClCompile Include="src\middleware\bap\matchmaking\request\matchmaking_nested_selection.cpp" />
  539. <ClCompile Include="src\middleware\bap\matchmaking\response\matchmaking_response_encoder.cpp" />
  540. <ClCompile Include="src\middleware\bap\matchmaking\response\matchmaking_dynamic_response.cpp" />
  541. <ClCompile Include="src\middleware\bap\user_message\user_message_response.cpp" />
  542. <ClCompile Include="src\middleware\compression\oodle\oodle_runtime.cpp" />
  543. <ClCompile Include="src\middleware\compression\oodle\oodle_installed.cpp" />
  544. <ClCompile Include="src\middleware\datagen\family3\family3_roster.cpp" />
  545. <ClCompile Include="src\middleware\datagen\family4\account\account_encoder.cpp" />
  546. <ClCompile Include="src\middleware\datagen\family4\progression\progression_bank_keys.cpp" />
  547. <ClCompile Include="src\middleware\datagen\family4\account\preferences\preferences_encoder.cpp" />
  548. <ClCompile Include="src\middleware\datagen\family4\character\character_encoder.cpp" />
  549. <ClCompile Include="src\middleware\datagen\family4\character\equipment_summary_builder.cpp" />
  550. <ClCompile Include="src\middleware\datagen\family4\instance\instance_encoder.cpp" />
  551. <ClCompile Include="src\middleware\datagen\roster\queuez_roster.cpp" />
  552. <ClCompile Include="src\middleware\content\packages\named_tags\named_tag_parser.cpp" />
  553. <ClCompile Include="src\middleware\content\packages\named_tags\named_tag_file.cpp" />
  554. <ClCompile Include="src\middleware\content\packages\named_tags\named_tag_patch.cpp" />
  555. <ClCompile Include="src\middleware\content\packages\package_catalog.cpp" />
  556. <ClCompile Include="src\middleware\content\packages\reader\package_class_scan.cpp" />
  557. <ClCompile Include="src\middleware\content\packages\reader\package_parallel_read.cpp" />
  558. <ClCompile Include="src\middleware\content\packages\reader\package_entry_reader.cpp" />
  559. <ClCompile Include="src\middleware\content\packages\reader\package_header.cpp" />
  560. <ClCompile Include="src\middleware\content\packages\tables\bubble_state_reader.cpp" />
  561. <ClCompile Include="src\middleware\content\packages\tables\definition_index_table.cpp" />
  562. <ClCompile Include="src\middleware\content\packages\tables\item_definition_reader.cpp" />
  563. <ClCompile Include="src\middleware\content\packages\tables\region_reader.cpp" />
  564. <ClCompile Include="src\middleware\content\packages\tables\roster_intersection.cpp" />
  565. <ClCompile Include="src\middleware\content\packages\tables\scenario_reader.cpp" />
  566. <ClCompile Include="src\middleware\content\packages\tables\scenario_walk.cpp" />
  567. <ClCompile Include="src\middleware\content\packages\tables\slot_descriptor_reader.cpp" />
  568. <ClCompile Include="src\middleware\content\packages\tables\spawn_reader.cpp" />
  569. <ClCompile Include="src\middleware\content\packages\tables\component_container_reader.cpp" />
  570. <ClCompile Include="src\middleware\content\packages\tables\item_appearance_reader.cpp" />
  571. <ClCompile Include="src\middleware\content\packages\tables\ability_pool_reader.cpp" />
  572. <ClCompile Include="src\client\content\items\packages\package_item_build.cpp" />
  573. <ClCompile Include="src\client\content\items\packages\package_detail_build.cpp" />
  574. <ClCompile Include="src\client\content\items\packages\package_ability_build.cpp" />
  575. <ClCompile Include="src\client\content\items\packages\package_subclass_build.cpp" />
  576. <ClCompile Include="src\client\content\items\packages\package_progression_build.cpp" />
  577. <ClCompile Include="src\middleware\content\packages\reader\package_file_locator.cpp" />
  578. <ClCompile Include="src\middleware\crypto\aes_gcm_decrypt.cpp" />
  579. <ClCompile Include="src\middleware\content\manifest\content_manifest_encoder.cpp" />
  580. <ClCompile Include="src\middleware\content\manifest\manifest_entitlement_encoder.cpp" />
  581. <ClCompile Include="src\middleware\encoding\bit_writer.cpp" />
  582. <ClCompile Include="src\middleware\encoding\bit_reader.cpp" />
  583. <ClCompile Include="src\middleware\queuez\queuez_update.cpp" />
  584. <ClCompile Include="src\middleware\web_service\web_service_envelope.cpp" />
  585. <ClCompile Include="src\middleware\web_service\status_fields.cpp" />
  586. <ClCompile Include="src\middleware\web_service\messages\family5\family5_codec.cpp" />
  587. <ClCompile Include="src\middleware\web_service\messages\opcode205\opcode205_codec.cpp" />
  588. <ClCompile Include="src\middleware\web_service\messages\opcode503\opcode503_codec.cpp" />
  589. <ClCompile Include="src\middleware\web_service\messages\opcode206_codec.cpp" />
  590. <ClCompile Include="src\middleware\web_service\messages\opcode501_codec.cpp" />
  591. <ClCompile Include="src\middleware\web_service\messages\opcode505\opcode505_codec.cpp" />
  592. <ClCompile Include="src\middleware\web_service\messages\opcode601\opcode601_codec.cpp" />
  593. <ClCompile Include="src\core\settings\state_settings.cpp" />
  594. <ClCompile Include="src\middleware\secure_channel\envelope.cpp" />
  595. <ClCompile Include="src\middleware\secure_channel\encrypted_frame.cpp" />
  596. <ClCompile Include="src\middleware\signon\response.cpp" />
  597. <ClCompile Include="src\middleware\signon\extended\signon_extended_fields.cpp" />
  598. <ClCompile Include="src\middleware\signon\config\signon_config_blob.cpp" />
  599. <ClCompile Include="src\middleware\signon\ownership\signon_ownership_encoder.cpp" />
  600. <ClCompile Include="src\server\transport\bap_peer_session.cpp" />
  601. <ClCompile Include="src\client\hooks\queuez\family0\family0_source_seed.cpp" />
  602. <ClCompile Include="src\middleware\content\packages\reader\package_locator_cache.cpp" />
  603. <ClCompile Include="src\middleware\content\packages\reader\package_block_cache.cpp" />
  604. <ClCompile Include="src\middleware\content\packages\reader\package_handle_cache.cpp" />
  605. <ClCompile Include="src\middleware\content\packages\reader\package_table_cache.cpp" />
  606. <ClCompile Include="src\state\build_data\runtime\build_data_routing_catalogs.cpp" />
  607. <ClCompile Include="src\state\build_data\cache\records\cache_investment_records.cpp" />
  608. <ClCompile Include="src\server\bap\encrypted\push\snapshot\family4_object_staging.cpp" />
  609. <ClCompile Include="src\core\settings\state\account_rows_parser.cpp" />
  610. <ClCompile Include="src\server\bap\encrypted\push\queuez\queuez_banner_push.cpp" />
  611. <ClCompile Include="src\server\bap\encrypted\push\queuez\queuez_push_reporting.cpp" />
  612. <ClCompile Include="src\client\content\items\packages\package_container_location.cpp" />
  613. <ClCompile Include="src\client\content\items\packages\package_build_report.cpp" />
  614. <ClCompile Include="src\client\content\items\packages\package_root_tables.cpp" />
  615. <ClCompile Include="src\client\content\items\packages\package_item_rows.cpp" />
  616. <ClCompile Include="src\client\diagnostics\module_range.cpp" />
  617. <ClCompile Include="src\client\process\freeze\client_process_freeze.cpp" />
  618. <ClCompile Include="src\core\settings\address_text.cpp" />
  619. <ClCompile Include="src\core\settings\server\gameplay\gameplay_settings_validation.cpp" />
  620. <ClCompile Include="src\core\settings\server\gameplay\gameplay_settings_parser.cpp" />
  621. <ClCompile Include="src\middleware\crypto\random_bytes.cpp" />
  622. <ClCompile Include="src\middleware\crypto\sha256.cpp" />
  623. <ClCompile Include="src\middleware\crypto\ecc_p224.cpp" />
  624. <ClCompile Include="src\middleware\crypto\tiger192.cpp" />
  625. <ClCompile Include="src\middleware\crypto\aes_cbc.cpp" />
  626. <ClCompile Include="src\middleware\crypto\hmac.cpp" />
  627. <ClCompile Include="src\middleware\crypto\lookup3.cpp" />
  628. <ClCompile Include="src\middleware\crypto\murmur3.cpp" />
  629. <ClCompile Include="src\middleware\crypto\aes_gcm_encrypt.cpp" />
  630. <ClCompile Include="src\middleware\crypto\modular_1024.cpp" />
  631. <ClCompile Include="src\middleware\encoding\bit_raw.cpp" />
  632. <ClCompile Include="src\middleware\gameplay\association\srp_exchange.cpp" />
  633. <ClCompile Include="src\middleware\gameplay\association\control_packet.cpp" />
  634. <ClCompile Include="src\middleware\gameplay\association\protected_datagram.cpp" />
  635. <ClCompile Include="src\middleware\gameplay\peer\peer_container.cpp" />
  636. <ClCompile Include="src\middleware\gameplay\peer\connect_messages.cpp" />
  637. <ClCompile Include="src\middleware\gameplay\peer\established_packet.cpp" />
  638. <ClCompile Include="src\server\gameplay\gameplay_log.cpp" />
  639. <ClCompile Include="src\server\gameplay\gameplay_runtime.cpp" />
  640. <ClCompile Include="src\server\gameplay\endpoint\gameplay_endpoint.cpp" />
  641. <ClCompile Include="src\server\gameplay\association\association_host.cpp" />
  642. <ClCompile Include="src\server\gameplay\peer\peer_transport.cpp" />
  643. <ClCompile Include="src\middleware\gameplay\descriptor\join_descriptor.cpp" />
  644. <ClCompile Include="src\server\gameplay\gameplay_advertisement.cpp" />
  645. <ClCompile Include="src\middleware\web_service\messages\opcode901\opcode901_codec.cpp" />
  646. <ClCompile Include="src\middleware\gameplay\peer\reliable_assembly.cpp" />
  647. <ClCompile Include="src\middleware\gameplay\peer\join_messages.cpp" />
  648. <ClCompile Include="src\middleware\gameplay\group\session_messages.cpp" />
  649. <ClCompile Include="src\middleware\gameplay\group\session_state.cpp" />
  650. <ClCompile Include="src\middleware\gameplay\group\view_message.cpp" />
  651. <ClCompile Include="src\middleware\gameplay\group\parameter_messages.cpp" />
  652. <ClCompile Include="src\middleware\gameplay\group\parameter_registry.cpp" />
  653. <ClCompile Include="src\middleware\gameplay\group\member_messages.cpp" />
  654. <ClCompile Include="src\server\gameplay\group\group_host.cpp" />
  655. <ClCompile Include="src\server\gameplay\group\group_host_sessions.cpp" />
  656. <ClCompile Include="src\middleware\gameplay\nat\introduction.cpp" />
  657. <ClCompile Include="src\middleware\gameplay\dtls\dtls_messages.cpp" />
  658. <ClCompile Include="src\middleware\gameplay\dtls\association_keys.cpp" />
  659. <ClCompile Include="src\middleware\gameplay\dtls\record.cpp" />
  660. <ClCompile Include="src\server\gameplay\dtls\dtls_host.cpp" />
  661. </ItemGroup>
  662. <ItemGroup Condition="'$(SunriseRunClangTidy)'=='true'">
  663. <ClCompile Remove="vendor\detours\detours.cpp" />
  664. <ClCompile Remove="vendor\detours\disasm.cpp" />
  665. <ClCompile Remove="vendor\detours\modules.cpp" />
  666. <ClCompile Remove="vendor\imgui\imgui.cpp" />
  667. <ClCompile Remove="vendor\imgui\imgui_draw.cpp" />
  668. <ClCompile Remove="vendor\imgui\imgui_tables.cpp" />
  669. <ClCompile Remove="vendor\imgui\imgui_widgets.cpp" />
  670. <ClCompile Remove="vendor\imgui\backends\imgui_impl_win32.cpp" />
  671. <ClCompile Remove="vendor\imgui\backends\imgui_impl_dx11.cpp" />
  672. </ItemGroup>
  673. <ItemGroup>
  674. <ClInclude Include="resources\resource.h" />
  675. <ClInclude Include="src\core\logging\log.h" />
  676. <ClInclude Include="src\core\logging\snapshot\snapshot.h" />
  677. <ClInclude Include="src\core\logging\snapshot\internal.h" />
  678. <ClInclude Include="src\core\logging\view\log_snapshot_view.h" />
  679. <ClInclude Include="src\core\filesystem\path.h" />
  680. <ClInclude Include="src\core\filesystem\temporary_sibling.h" />
  681. <ClInclude Include="src\core\settings\settings.h" />
  682. <ClInclude Include="src\core\settings\parser.h" />
  683. <ClInclude Include="src\core\settings\client\definition.h" />
  684. <ClInclude Include="src\core\settings\server\definition.h" />
  685. <ClInclude Include="src\core\settings\steam\definition.h" />
  686. <ClInclude Include="src\core\runtime\core_runtime.h" />
  687. <ClInclude Include="src\core\runtime\host_environment.h" />
  688. <ClInclude Include="src\core\ui\imgui_user_config.h" />
  689. <ClInclude Include="src\core\ui\modules\ui_module_descriptor.h" />
  690. <ClInclude Include="src\core\ui\modules\registry\ui_module_registry.h" />
  691. <ClInclude Include="src\core\ui\modules\logs\logs.h" />
  692. <ClInclude Include="src\client\hooks\cursor\cursor_guard_replacements.h" />
  693. <ClInclude Include="src\client\hooks\cursor\runtime.h" />
  694. <ClInclude Include="src\client\hooks\polled_input\polled_input_replacements.h" />
  695. <ClInclude Include="src\client\hooks\polled_input\runtime.h" />
  696. <ClInclude Include="src\client\hooks\banner\banner_bind.h" />
  697. <ClInclude Include="src\client\hooks\banner\banner_hook_lifecycle.h" />
  698. <ClInclude Include="src\middleware\web_service\messages\opcode504.h" />
  699. <ClInclude Include="src\core\ui\busy\busy.h" />
  700. <ClInclude Include="src\core\ui\busy\ui_busy_state.h" />
  701. <ClInclude Include="src\core\ui\notice\ui_notice_overlay.h" />
  702. <ClInclude Include="src\core\ui\modules\logs\internal.h" />
  703. <ClInclude Include="src\core\ui\modules\logs\filters\logs_filter_controls.h" />
  704. <ClInclude Include="src\core\ui\runtime\ui_visibility_runtime.h" />
  705. <ClInclude Include="src\core\ui\runtime\settings.h" />
  706. <ClInclude Include="src\core\ui\memory\allocator.h" />
  707. <ClInclude Include="src\core\ui\memory\fixed\internal.h" />
  708. <ClInclude Include="src\core\ui\animation\animation.h" />
  709. <ClInclude Include="src\core\ui\animation\transition\ui_transition_animation.h" />
  710. <ClInclude Include="src\core\ui\components\components.h" />
  711. <ClInclude Include="src\core\ui\components\card\ui_card_component.h" />
  712. <ClInclude Include="src\core\ui\components\drawing\drawing.h" />
  713. <ClInclude Include="src\core\ui\components\filter\ui_filter_component.h" />
  714. <ClInclude Include="src\core\ui\components\picker\ui_picker_component.h" />
  715. <ClInclude Include="src\core\ui\components\navigation\ui_navigation_component.h" />
  716. <ClInclude Include="src\core\ui\components\section\ui_section_component.h" />
  717. <ClInclude Include="src\core\ui\components\toggle\ui_toggle_component.h" />
  718. <ClInclude Include="src\core\ui\fonts\fonts.h" />
  719. <ClInclude Include="src\core\ui\fonts\installed\ui_installed_font_reader.h" />
  720. <ClInclude Include="src\core\ui\fonts\runtime\ui_runtime_font_lifecycle.h" />
  721. <ClInclude Include="src\core\ui\scaling\scaling.h" />
  722. <ClInclude Include="src\core\ui\scaling\dpi\ui_dpi_scaling.h" />
  723. <ClInclude Include="src\core\ui\theme\sunrise_ui_theme.h" />
  724. <ClInclude Include="src\core\ui\layout\layout.h" />
  725. <ClInclude Include="src\core\ui\layout\ui_layout_lifecycle.h" />
  726. <ClInclude Include="src\core\ui\layout\navigation\ui_layout_navigation.h" />
  727. <ClInclude Include="src\core\ui\layout\credits\sunrise_credits_badge.h" />
  728. <ClInclude Include="src\client\runtime\runtime.h" />
  729. <ClInclude Include="src\client\movement\movement_settings_store.h" />
  730. <ClInclude Include="src\client\hooks\noclip\runtime.h" />
  731. <ClInclude Include="src\client\hooks\teleport\internal.h" />
  732. <ClInclude Include="src\client\hooks\teleport\runtime.h" />
  733. <ClInclude Include="src\client\ui\movement\movement_panel.h" />
  734. <ClInclude Include="src\client\runtime\internal.h" />
  735. <ClInclude Include="src\client\runtime\host\game_host_classification.h" />
  736. <ClInclude Include="src\client\hooks\graphics\graphics_hook_lifecycle.h" />
  737. <ClInclude Include="src\client\hooks\graphics\graphics_hook_replacements.h" />
  738. <ClInclude Include="src\client\hooks\graphics\input\input.h" />
  739. <ClInclude Include="src\client\hooks\graphics\renderer\renderer.h" />
  740. <ClInclude Include="src\client\hooks\graphics\renderer\state.h" />
  741. <ClInclude Include="src\client\hooks\graphics\renderer\graphics_renderer_report.h" />
  742. <ClInclude Include="src\client\ui\runtime\client_ui_module_runtime.h" />
  743. <ClInclude Include="src\client\memory\current_process_memory.h" />
  744. <ClInclude Include="src\client\content\handles\layout.h" />
  745. <ClInclude Include="src\client\content\handles\handle_resolver.h" />
  746. <ClInclude Include="src\client\content\activity\source.h" />
  747. <ClInclude Include="src\client\content\scenarios\scenario_build.h" />
  748. <ClInclude Include="src\client\content\scenarios\internal.h" />
  749. <ClInclude Include="src\client\content\spawn_sets\spawn_set_build.h" />
  750. <ClInclude Include="src\client\content\hash_names\hash_name_build.h" />
  751. <ClInclude Include="src\client\content\hash_names\hash_name_matcher.h" />
  752. <ClInclude Include="src\client\content\spawn_sets\spawn_set_catalog_builder.h" />
  753. <ClInclude Include="src\client\content\investment\layout.h" />
  754. <ClInclude Include="src\client\content\investment\internal.h" />
  755. <ClInclude Include="src\client\content\investment\source.h" />
  756. <ClInclude Include="src\client\content\investment\worker.h" />
  757. <ClInclude Include="src\client\content\items\layout.h" />
  758. <ClInclude Include="src\client\content\items\details\configured_item_detail_extractor.h" />
  759. <ClInclude Include="src\client\content\items\details\layout.h" />
  760. <ClInclude Include="src\client\content\items\details\memory.h" />
  761. <ClInclude Include="src\client\content\items\details\definition_detail_reader.h" />
  762. <ClInclude Include="src\client\content\items\details\relative.h" />
  763. <ClInclude Include="src\client\content\items\details\socket_detail_reader.h" />
  764. <ClInclude Include="src\client\network\consumer.h" />
  765. <ClInclude Include="src\client\hooking\detour.h" />
  766. <ClInclude Include="src\client\hooking\detour\transaction\detour_thread_transaction.h" />
  767. <ClInclude Include="src\client\executable\image.h" />
  768. <ClInclude Include="src\client\hooks\network\investment\investment_derived_rebuild.h" />
  769. <ClInclude Include="src\client\hooks\network\runtime.h" />
  770. <ClInclude Include="src\client\hooks\network\bubble_authority\bubble_authority_replacements.h" />
  771. <ClInclude Include="src\client\hooks\network\bubble_authority\scope\bubble_authority_scope.h" />
  772. <ClInclude Include="src\client\hooks\network\coordinator\network_call_coordinator.h" />
  773. <ClInclude Include="src\client\hooks\network\content_config\coordinator\content_config_call_coordinator.h" />
  774. <ClInclude Include="src\client\hooks\network\content_config\gate\content_config_signature_gate.h" />
  775. <ClInclude Include="src\client\hooks\network\content_config\internal.h" />
  776. <ClInclude Include="src\client\hooks\network\content_config\lifecycle\content_config_hook_storage.h" />
  777. <ClInclude Include="src\client\hooks\network\content_config\protocol.h" />
  778. <ClInclude Include="src\client\hooks\network\content_config\runtime.h" />
  779. <ClInclude Include="src\client\hooks\network\platform.h" />
  780. <ClInclude Include="src\client\hooks\network\network_call_quiescence.h" />
  781. <ClInclude Include="src\client\hooks\network\http\internal.h" />
  782. <ClInclude Include="src\client\hooks\network\lifecycle\network_hook_group.h" />
  783. <ClInclude Include="src\client\hooks\network\lifecycle\network_hook_entries.h" />
  784. <ClInclude Include="src\client\hooks\egress\dns\egress_dns_replacements.h" />
  785. <ClInclude Include="src\client\hooks\egress\extensions\egress_extension_replacements.h" />
  786. <ClInclude Include="src\client\hooks\egress\internal.h" />
  787. <ClInclude Include="src\client\hooks\egress\platform\abi.h" />
  788. <ClInclude Include="src\client\hooks\egress\platform\sdk.h" />
  789. <ClInclude Include="src\client\hooks\egress\policy\policy.h" />
  790. <ClInclude Include="src\client\hooks\egress\resolver\replacements.h" />
  791. <ClInclude Include="src\client\hooks\egress\runtime.h" />
  792. <ClInclude Include="src\client\hooks\egress\winsock\replacements.h" />
  793. <ClInclude Include="src\client\hooks\egress\winsock\connection\egress_connection_replacements.h" />
  794. <ClInclude Include="src\client\hooks\egress\winsock\control\egress_control_replacement.h" />
  795. <ClInclude Include="src\client\hooks\egress\winsock\discovery\egress_discovery_responder.h" />
  796. <ClInclude Include="src\client\hooks\egress\winsock\reception\egress_reception_replacements.h" />
  797. <ClInclude Include="src\client\hooks\egress\winsock\transmission\replacements.h" />
  798. <ClInclude Include="src\client\patterns\registry.h" />
  799. <ClInclude Include="src\client\patterns\signature_text.h" />
  800. <ClInclude Include="src\client\patterns\game.h" />
  801. <ClInclude Include="src\client\patterns\steam.h" />
  802. <ClInclude Include="src\client\targets\steam_targets.h" />
  803. <ClInclude Include="src\client\targets\game.h" />
  804. <ClInclude Include="src\client\targets\game\content.h" />
  805. <ClInclude Include="src\client\targets\game\network.h" />
  806. <ClInclude Include="src\client\targets\game\network\network_content_derivation.h" />
  807. <ClInclude Include="src\client\targets\game\relative.h" />
  808. <ClInclude Include="src\client\targets\game\resolution\internal.h" />
  809. <ClInclude Include="src\client\targets\game\resolution\game_target_resolution.h" />
  810. <ClInclude Include="src\steam\runtime\runtime.h" />
  811. <ClInclude Include="src\steam\runtime\callbacks\callback_registry.h" />
  812. <ClInclude Include="src\steam\runtime\internal.h" />
  813. <ClInclude Include="src\steam\interfaces\steam_interface_factory.h" />
  814. <ClInclude Include="src\steam\interfaces\internal.h" />
  815. <ClInclude Include="src\steam\interfaces\tables\internal.h" />
  816. <ClInclude Include="src\state\unlocks\definition.h" />
  817. <ClInclude Include="src\state\unlocks\unlocks_runtime.h" />
  818. <ClInclude Include="src\state\runtime\runtime.h" />
  819. <ClInclude Include="src\state\runtime\state.h" />
  820. <ClInclude Include="src\state\runtime\storage\internal.h" />
  821. <ClInclude Include="src\state\activity\definition.h" />
  822. <ClInclude Include="src\state\activity\defaults\definition.h" />
  823. <ClInclude Include="src\state\activity\defaults\activity_defaults_snapshot.h" />
  824. <ClInclude Include="src\state\activity\defaults\activity_defaults_validation.h" />
  825. <ClInclude Include="src\state\activity\destination\definition.h" />
  826. <ClInclude Include="src\state\activity\forced\definition.h" />
  827. <ClInclude Include="src\state\activity\forced\activity_forced_destination.h" />
  828. <ClInclude Include="src\state\activity\destination\activity_destination_snapshot.h" />
  829. <ClInclude Include="src\state\activity\destination\activity_destination_validation.h" />
  830. <ClInclude Include="src\state\activity\destination\activity_destination_spawn_binding.h" />
  831. <ClInclude Include="src\state\activity\entity_slots\definition.h" />
  832. <ClInclude Include="src\state\activity\entity_slots\runtime.h" />
  833. <ClInclude Include="src\state\activity\entity_slots\transactions\internal.h" />
  834. <ClInclude Include="src\state\activity\bubble_authority\definition.h" />
  835. <ClInclude Include="src\state\activity\bubble_authority\runtime.h" />
  836. <ClInclude Include="src\state\activity\bubble_authority\transactions\internal.h" />
  837. <ClInclude Include="src\state\activity\membership\definition.h" />
  838. <ClInclude Include="src\state\activity\membership\activity_membership_query.h" />
  839. <ClInclude Include="src\state\activity\membership\transactions\internal.h" />
  840. <ClInclude Include="src\state\activity\runtime.h" />
  841. <ClInclude Include="src\state\activity\transactions\internal.h" />
  842. <ClInclude Include="src\state\matchmaking\definition.h" />
  843. <ClInclude Include="src\state\matchmaking\matchmaking_state.h" />
  844. <ClInclude Include="src\state\matchmaking\transactions\internal.h" />
  845. <ClInclude Include="src\state\runtime\equipment\configured_equipment_identity.h" />
  846. <ClInclude Include="src\state\account\account_state.h" />
  847. <ClInclude Include="src\state\account\inventory\inventory_state.h" />
  848. <ClInclude Include="src\state\account\settings\settings_state.h" />
  849. <ClInclude Include="src\state\account\settings\key_bindings.h" />
  850. <ClInclude Include="src\state\equipment\light\definition.h" />
  851. <ClInclude Include="src\state\equipment\light\calculation\equipment_light_calculation.h" />
  852. <ClInclude Include="src\state\equipment\light\resolution\configured_equipment_light_resolver.h" />
  853. <ClInclude Include="src\state\investment\investment.h" />
  854. <ClInclude Include="src\state\content\content_catalog.h" />
  855. <ClInclude Include="src\state\content_manifest\cache\format.h" />
  856. <ClInclude Include="src\state\content_manifest\cache\internal.h" />
  857. <ClInclude Include="src\state\content_manifest\definition.h" />
  858. <ClInclude Include="src\state\content_manifest\fingerprint\content_manifest_fingerprint.h" />
  859. <ClInclude Include="src\state\content_manifest\content_manifest_state_runtime.h" />
  860. <ClInclude Include="src\state\content_manifest\scanner\internal.h" />
  861. <ClInclude Include="src\state\content_manifest\scanner\package\content_manifest_package_header.h" />
  862. <ClInclude Include="src\state\content_manifest\scanner\package\content_manifest_package_name.h" />
  863. <ClInclude Include="src\state\content_manifest\content_manifest_row_validation.h" />
  864. <ClInclude Include="src\state\build_data\definition.h" />
  865. <ClInclude Include="src\state\build_data\runtime.h" />
  866. <ClInclude Include="src\state\build_data\table.h" />
  867. <ClInclude Include="src\state\build_data\scenarios\scenario_catalog.h" />
  868. <ClInclude Include="src\state\build_data\spawn_sets\spawn_set_catalog.h" />
  869. <ClInclude Include="src\state\build_data\hash_names\hash_name_catalog.h" />
  870. <ClInclude Include="src\state\build_data\hash_names\definition.h" />
  871. <ClInclude Include="src\state\build_data\spawn_sets\definition.h" />
  872. <ClInclude Include="src\state\build_data\vendors\definition.h" />
  873. <ClInclude Include="src\state\build_data\vendors\vendor_catalog.h" />
  874. <ClInclude Include="src\state\build_data\vendors\vendor_expression.h" />
  875. <ClInclude Include="src\client\content\vendors\layout.h" />
  876. <ClInclude Include="src\client\content\vendors\vendor_build.h" />
  877. <ClInclude Include="src\state\build_data\scenarios\definition.h" />
  878. <ClInclude Include="src\state\build_data\runtime\persistence\build_data_persistence.h" />
  879. <ClInclude Include="src\state\build_data\runtime\persistence\publication_transaction.h" />
  880. <ClInclude Include="src\state\build_data\cache\internal.h" />
  881. <ClInclude Include="src\state\build_data\cache\read\cache_payload_reader.h" />
  882. <ClInclude Include="src\state\build_data\cache\records\codec.h" />
  883. <ClInclude Include="src\state\build_data\cache\records\domains.h" />
  884. <ClInclude Include="src\state\build_data\cache\records\format.h" />
  885. <ClInclude Include="src\state\build_data\cache\records\validation.h" />
  886. <ClInclude Include="src\state\build_data\cache\write\cache_payload_writer.h" />
  887. <ClInclude Include="src\state\build_data\cache\write\temporary\temporary_cache_file.h" />
  888. <ClInclude Include="src\state\build_data\cache\write\validation\cache_file_comparison.h" />
  889. <ClInclude Include="src\state\build_data\items\item_catalog.h" />
  890. <ClInclude Include="src\state\build_data\items\details\definition.h" />
  891. <ClInclude Include="src\state\build_data\items\details\item_detail_catalog.h" />
  892. <ClInclude Include="src\state\build_data\inventory\buckets\definition.h" />
  893. <ClInclude Include="src\state\build_data\inventory\buckets\inventory_bucket_catalog.h" />
  894. <ClInclude Include="src\state\build_data\socket_entry_lists\definition.h" />
  895. <ClInclude Include="src\state\build_data\socket_entry_lists\socket_entry_list_catalog.h" />
  896. <ClInclude Include="src\state\build_data\runtime\build_data_catalog_runtime.h" />
  897. <ClInclude Include="src\state\build_data\runtime\domain_markers.h" />
  898. <ClInclude Include="src\server\transport\bap_listener.h" />
  899. <ClInclude Include="src\server\runtime\server_runtime.h" />
  900. <ClInclude Include="src\server\ui\runtime\server_ui_module_runtime.h" />
  901. <ClInclude Include="src\server\ui\activity_override\activity_override_panel.h" />
  902. <ClInclude Include="src\server\ui\activity_override\activity_override_lists.h" />
  903. <ClInclude Include="src\server\bap\runtime.h" />
  904. <ClInclude Include="src\server\bap\internal.h" />
  905. <ClInclude Include="src\server\bap\encrypted\internal.h" />
  906. <ClInclude Include="src\server\bap\encrypted\activity_transaction\activity_transaction_notifications.h" />
  907. <ClInclude Include="src\server\bap\encrypted\activity_host_manager\activity_host_manager_route.h" />
  908. <ClInclude Include="src\server\bap\encrypted\activity_message\definition.h" />
  909. <ClInclude Include="src\server\bap\encrypted\activity_message\activity_message_route.h" />
  910. <ClInclude Include="src\server\bap\encrypted\activity_message\patch_epoch\activity_patch_epoch_route.h" />
  911. <ClInclude Include="src\server\bap\encrypted\activity_message\membership\activity_membership_route.h" />
  912. <ClInclude Include="src\server\bap\encrypted\matchmaking\matchmaking_route.h" />
  913. <ClInclude Include="src\server\bap\encrypted\transactions\definition.h" />
  914. <ClInclude Include="src\server\bap\encrypted\transactions\service_outcome_commit.h" />
  915. <ClInclude Include="src\server\bap\encrypted\queuez\definition.h" />
  916. <ClInclude Include="src\server\bap\encrypted\queuez\queuez_state_validation.h" />
  917. <ClInclude Include="src\server\bap\encrypted\queuez\queuez_outcome_staging.h" />
  918. <ClInclude Include="src\server\bap\encrypted\queuez\staging\queuez_family_staging.h" />
  919. <ClInclude Include="src\server\bap\encrypted\push\queuez\queuez_update_frame.h" />
  920. <ClInclude Include="src\server\bap\encrypted\push\activity\activity_message_push.h" />
  921. <ClInclude Include="src\server\bap\encrypted\push\activity\activity_roster_push.h" />
  922. <ClInclude Include="src\server\bap\encrypted\push\activity\activity_global_state_push.h" />
  923. <ClInclude Include="src\server\bap\encrypted\push\activity\activity_keepalive_push.h" />
  924. <ClInclude Include="src\server\bap\encrypted\bap_connection_publication.h" />
  925. <ClInclude Include="src\server\bap\encrypted\push\activity\activity_membership_push.h" />
  926. <ClInclude Include="src\server\bap\encrypted\push\activity\activity_notification_frame.h" />
  927. <ClInclude Include="src\server\bap\encrypted\push\activity\activity_arrival.h" />
  928. <ClInclude Include="src\server\bap\encrypted\push\activity\internal.h" />
  929. <ClInclude Include="src\server\bap\encrypted\push\snapshot\internal.h" />
  930. <ClInclude Include="src\server\bap\encrypted\push\snapshot\snapshot.h" />
  931. <ClInclude Include="src\server\bap\encrypted\push\snapshot\snapshot_storage.h" />
  932. <ClInclude Include="src\server\web_service\opcode_routes.h" />
  933. <ClInclude Include="src\server\web_service\web_service_runtime.h" />
  934. <ClInclude Include="src\server\http\server_http.h" />
  935. <ClInclude Include="src\middleware\runtime\middleware_runtime.h" />
  936. <ClInclude Include="src\middleware\protobuf\codec.h" />
  937. <ClInclude Include="src\middleware\protobuf\protobuf_wire.h" />
  938. <ClInclude Include="src\middleware\bap\frame.h" />
  939. <ClInclude Include="src\middleware\bap\account_translation\account_translation_response.h" />
  940. <ClInclude Include="src\middleware\bap\activity_host\activity_host_response.h" />
  941. <ClInclude Include="src\middleware\bap\activity_host_manager\definition.h" />
  942. <ClInclude Include="src\middleware\bap\activity_host_manager\request\activity_manager_request.h" />
  943. <ClInclude Include="src\middleware\bap\activity_host_manager\request\selection\definition.h" />
  944. <ClInclude Include="src\middleware\bap\activity_host_manager\request\selection\internal.h" />
  945. <ClInclude Include="src\middleware\bap\activity_host_manager\request\selection\activity_manager_selection_parser.h" />
  946. <ClInclude Include="src\middleware\bap\activity_host_manager\response\activity_manager_response.h" />
  947. <ClInclude Include="src\middleware\bap\activity_message\definition.h" />
  948. <ClInclude Include="src\middleware\bap\activity_message\activity_message_request_parser.h" />
  949. <ClInclude Include="src\middleware\bap\activity_message\sensor_auth_update.h" />
  950. <ClInclude Include="src\middleware\bap\activity_message\activity_global_state_encoder.h" />
  951. <ClInclude Include="src\middleware\bap\activity_message\client_authoritative_data.h" />
  952. <ClInclude Include="src\middleware\bap\activity_message\activity_client_keepalive_validator.h" />
  953. <ClInclude Include="src\middleware\bap\activity_message\activity_high_water_validator.h" />
  954. <ClInclude Include="src\middleware\bap\activity_message\activity_join_request_parser.h" />
  955. <ClInclude Include="src\middleware\bap\activity_message\activity_client_identity_parser.h" />
  956. <ClInclude Include="src\middleware\bap\activity_message\activity_state_refresh_parser.h" />
  957. <ClInclude Include="src\middleware\bap\activity_message\activity_membership_acknowledgement_parser.h" />
  958. <ClInclude Include="src\middleware\bap\activity_message\activity_patch_epoch_parser.h" />
  959. <ClInclude Include="src\middleware\bap\activity_message\replicate_membership.h" />
  960. <ClInclude Include="src\middleware\bap\activity_message\activity_message_notification_encoder.h" />
  961. <ClInclude Include="src\middleware\bap\activity_message\activity_join_result_encoder.h" />
  962. <ClInclude Include="src\middleware\bap\activity_message\activity_entity_slot_request_parser.h" />
  963. <ClInclude Include="src\middleware\bap\activity_message\entity_slots.h" />
  964. <ClInclude Include="src\middleware\bap\activity_message\entity_authority.h" />
  965. <ClInclude Include="src\middleware\bap\activity_message\incident.h" />
  966. <ClInclude Include="src\middleware\bap\certificate.h" />
  967. <ClInclude Include="src\middleware\bap\client_config\client_config_response.h" />
  968. <ClInclude Include="src\middleware\bap\family_subscription.h" />
  969. <ClInclude Include="src\middleware\bap\family_unsubscription.h" />
  970. <ClInclude Include="src\middleware\bap\matchmaking\definition.h" />
  971. <ClInclude Include="src\middleware\bap\matchmaking\request\matchmaking_request_parser.h" />
  972. <ClInclude Include="src\middleware\bap\matchmaking\request\field_selection.h" />
  973. <ClInclude Include="src\middleware\bap\matchmaking\response\matchmaking_response_encoder.h" />
  974. <ClInclude Include="src\middleware\bap\matchmaking\response\matchmaking_dynamic_response.h" />
  975. <ClInclude Include="src\middleware\bap\user_message\user_message_response.h" />
  976. <ClInclude Include="src\middleware\queuez\subscription.h" />
  977. <ClInclude Include="src\middleware\compression\oodle\runtime.h" />
  978. <ClInclude Include="src\middleware\datagen\character_record\layout.h" />
  979. <ClInclude Include="src\middleware\datagen\character_record\character_record_encoder.h" />
  980. <ClInclude Include="src\middleware\datagen\family3\family3_roster.h" />
  981. <ClInclude Include="src\middleware\datagen\family4\account\account_encoder.h" />
  982. <ClInclude Include="src\middleware\datagen\family4\account\layout.h" />
  983. <ClInclude Include="src\middleware\datagen\family4\account\preferences\layout.h" />
  984. <ClInclude Include="src\middleware\datagen\family4\account\preferences\native_key_binding_map.h" />
  985. <ClInclude Include="src\middleware\datagen\family4\account\preferences\preferences_encoder.h" />
  986. <ClInclude Include="src\middleware\datagen\family4\character\abi.h" />
  987. <ClInclude Include="src\middleware\datagen\family4\loadout\definition.h" />
  988. <ClInclude Include="src\middleware\datagen\family4\loadout\loadout_resolver.h" />
  989. <ClInclude Include="src\middleware\datagen\family4\loadout\loadout_item_resolver.h" />
  990. <ClInclude Include="src\middleware\datagen\family4\loadout\subclass_socket_selection.h" />
  991. <ClInclude Include="src\middleware\datagen\family4\character\character_encoder.h" />
  992. <ClInclude Include="src\middleware\datagen\family4\character\equipment_summary_builder.h" />
  993. <ClInclude Include="src\middleware\datagen\family4\character\layout.h" />
  994. <ClInclude Include="src\middleware\datagen\family4\instance\abi.h" />
  995. <ClInclude Include="src\middleware\datagen\family4\instance\instance_encoder.h" />
  996. <ClInclude Include="src\middleware\datagen\family4\instance\layout.h" />
  997. <ClInclude Include="src\middleware\datagen\family4\inventory\layout.h" />
  998. <ClInclude Include="src\middleware\datagen\family4\progression\layout.h" />
  999. <ClInclude Include="src\middleware\datagen\roster\queuez_roster.h" />
  1000. <ClInclude Include="src\middleware\content\packages\named_tags.h" />
  1001. <ClInclude Include="src\middleware\content\packages\named_tags\internal.h" />
  1002. <ClInclude Include="src\middleware\content\packages\package_catalog.h" />
  1003. <ClInclude Include="src\middleware\content\manifest\encoder.h" />
  1004. <ClInclude Include="src\middleware\encoding\bit_writer.h" />
  1005. <ClInclude Include="src\middleware\encoding\bit_reader.h" />
  1006. <ClInclude Include="src\middleware\encoding\byte_order.h" />
  1007. <ClInclude Include="src\middleware\queuez\queuez_update.h" />
  1008. <ClInclude Include="src\middleware\web_service\web_service_envelope.h" />
  1009. <ClInclude Include="src\middleware\web_service\status_fields.h" />
  1010. <ClInclude Include="src\middleware\web_service\messages\family5\family5_codec.h" />
  1011. <ClInclude Include="src\middleware\web_service\messages\opcode205.h" />
  1012. <ClInclude Include="src\middleware\web_service\messages\opcode503.h" />
  1013. <ClInclude Include="src\middleware\web_service\messages\opcode206.h" />
  1014. <ClInclude Include="src\middleware\web_service\messages\opcode501_codec.h" />
  1015. <ClInclude Include="src\middleware\web_service\messages\opcode505\opcode505_codec.h" />
  1016. <ClInclude Include="src\middleware\web_service\messages\opcode601\opcode601_codec.h" />
  1017. <ClInclude Include="src\middleware\datagen\family4\account\selection_patch\account_selection_patch_encoder.h" />
  1018. <ClInclude Include="src\middleware\secure_channel\runtime.h" />
  1019. <ClInclude Include="src\middleware\signon\response.h" />
  1020. <ClInclude Include="vendor\detours\detours.h" />
  1021. <ClInclude Include="vendor\imgui\imconfig.h" />
  1022. <ClInclude Include="vendor\imgui\imgui.h" />
  1023. <ClInclude Include="vendor\imgui\imgui_internal.h" />
  1024. <ClInclude Include="vendor\imgui\imstb_rectpack.h" />
  1025. <ClInclude Include="vendor\imgui\imstb_textedit.h" />
  1026. <ClInclude Include="vendor\imgui\imstb_truetype.h" />
  1027. <ClInclude Include="vendor\imgui\backends\imgui_impl_win32.h" />
  1028. <ClInclude Include="vendor\imgui\backends\imgui_impl_dx11.h" />
  1029. <ClInclude Include="src\client\targets\game\retail_log.h" />
  1030. <ClInclude Include="src\client\patterns\game\retail_log\retail_log_signature_bytes.h" />
  1031. <ClInclude Include="src\client\hooks\retail_log\retail_log_enqueue_observer.h" />
  1032. <ClInclude Include="src\client\hooks\retail_log\retail_log_lifecycle.h" />
  1033. <ClInclude Include="src\client\hooks\egress\resolver\redirect.h" />
  1034. <ClInclude Include="src\core\settings\client\external\definition.h" />
  1035. <ClInclude Include="src\client\hooks\external_server\internal.h" />
  1036. <ClInclude Include="src\client\hooks\external_server\route.h" />
  1037. <ClInclude Include="src\client\content\bootstrap\bootstrap_token_publish.h" />
  1038. <ClInclude Include="src\steam\runtime\context\steam_context_state.h" />
  1039. <ClInclude Include="src\client\content\diagnostics\content_readiness_report.h" />
  1040. <ClInclude Include="src\client\content\investment\runtime.h" />
  1041. <ClInclude Include="src\client\content\items\packages\build.h" />
  1042. <ClInclude Include="src\client\content\items\packages\internal.h" />
  1043. <ClInclude Include="src\client\hooks\assert_handler\assert_handler_observer.h" />
  1044. <ClInclude Include="src\client\hooks\assert_handler\assert_handler_lifecycle.h" />
  1045. <ClInclude Include="src\client\hooks\bitmap\bitmap_ref_guard.h" />
  1046. <ClInclude Include="src\client\hooks\bitmap\bitmap_hook_lifecycle.h" />
  1047. <ClInclude Include="src\client\hooks\bootflow\internal.h" />
  1048. <ClInclude Include="src\client\hooks\bootflow\bootflow_hook_lifecycle.h" />
  1049. <ClInclude Include="src\client\hooks\bootflow\spawn\spawn_gate_record_dump.h" />
  1050. <ClInclude Include="src\client\hooks\bootflow\spawn\probe.h" />
  1051. <ClInclude Include="src\client\hooks\config_getter\config_getter_answers.h" />
  1052. <ClInclude Include="src\client\hooks\config_getter\config_getter_lifecycle.h" />
  1053. <ClInclude Include="src\client\hooks\egress\lifecycle\internal.h" />
  1054. <ClInclude Include="src\client\hooks\egress\policy\egress_policy_logging.h" />
  1055. <ClInclude Include="src\client\hooks\network\investment\internal.h" />
  1056. <ClInclude Include="src\client\hooks\queuez\internal.h" />
  1057. <ClInclude Include="src\client\hooks\queuez\queuez_hook_lifecycle.h" />
  1058. <ClInclude Include="src\client\patterns\game\assert_handler\assert_signature_bytes.h" />
  1059. <ClInclude Include="src\client\patterns\game\config_getter\config_getter_signature_bytes.h" />
  1060. <ClInclude Include="src\client\patterns\game\packages\package_key_signature_bytes.h" />
  1061. <ClInclude Include="src\client\patterns\game\signon\signon_readiness_signature_bytes.h" />
  1062. <ClInclude Include="src\client\graphics\wine_compat.h" />
  1063. <ClInclude Include="src\middleware\content\packages\tables\spawn_reader.h" />
  1064. <ClInclude Include="src\middleware\content\packages\tables\component_container_reader.h" />
  1065. <ClInclude Include="src\client\patterns\image_scan.h" />
  1066. <ClInclude Include="src\client\targets\game\assert_handler\game_assert_targets.h" />
  1067. <ClInclude Include="src\client\targets\game\assert_handler.h" />
  1068. <ClInclude Include="src\client\targets\game\config_getter\game_config_getter_targets.h" />
  1069. <ClInclude Include="src\client\targets\game\config_getter.h" />
  1070. <ClInclude Include="src\client\targets\game\packages\game_package_targets.h" />
  1071. <ClInclude Include="src\client\targets\game\packages.h" />
  1072. <ClInclude Include="src\middleware\content\packages\reader\internal.h" />
  1073. <ClInclude Include="src\middleware\content\packages\reader\layout.h" />
  1074. <ClInclude Include="src\middleware\content\packages\reader\reader.h" />
  1075. <ClInclude Include="src\middleware\content\packages\reader\parallel.h" />
  1076. <ClInclude Include="src\middleware\content\packages\reader\block_cache.h" />
  1077. <ClInclude Include="src\middleware\content\packages\reader\handle_cache.h" />
  1078. <ClInclude Include="src\middleware\content\packages\reader\package_table_cache.h" />
  1079. <ClInclude Include="src\middleware\content\packages\tables\ability_pool_reader.h" />
  1080. <ClInclude Include="src\middleware\content\packages\tables\bubble_state_reader.h" />
  1081. <ClInclude Include="src\middleware\content\packages\tables\internal.h" />
  1082. <ClInclude Include="src\middleware\content\packages\tables\items.h" />
  1083. <ClInclude Include="src\middleware\content\packages\tables\region_reader.h" />
  1084. <ClInclude Include="src\middleware\content\packages\tables\roster_intersection.h" />
  1085. <ClInclude Include="src\middleware\content\packages\tables\scenario_reader.h" />
  1086. <ClInclude Include="src\middleware\content\packages\tables\slot_descriptor_reader.h" />
  1087. <ClInclude Include="src\middleware\content\packages\tables\definition_index_table.h" />
  1088. <ClInclude Include="src\middleware\content\packages\tables\scenario_walk.h" />
  1089. <ClInclude Include="src\middleware\crypto\aes_gcm_decrypt.h" />
  1090. <ClInclude Include="src\middleware\datagen\character_record\appearance\internal.h" />
  1091. <ClInclude Include="src\middleware\datagen\definitions.h" />
  1092. <ClInclude Include="src\middleware\datagen\family4\progression\progression_bank_keys.h" />
  1093. <ClInclude Include="src\middleware\signon\config\signon_config_blob.h" />
  1094. <ClInclude Include="src\middleware\signon\extended\signon_extended_fields.h" />
  1095. <ClInclude Include="src\middleware\signon\internal.h" />
  1096. <ClInclude Include="src\middleware\signon\ownership\signon_ownership_encoder.h" />
  1097. <ClInclude Include="src\state\build_data\abilities\ability_bucket_catalog.h" />
  1098. <ClInclude Include="src\state\build_data\abilities\definition.h" />
  1099. <ClInclude Include="src\state\build_data\constants\investment_constant_catalog.h" />
  1100. <ClInclude Include="src\state\build_data\constants\definition.h" />
  1101. <ClInclude Include="src\state\build_data\progressions\progression_catalog.h" />
  1102. <ClInclude Include="src\state\build_data\progressions\definition.h" />
  1103. <ClInclude Include="src\state\entitlements\definition.h" />
  1104. <ClInclude Include="src\state\entitlements\entitlement_runtime.h" />
  1105. <ClInclude Include="src\state\entitlements\validation.h" />
  1106. <ClInclude Include="src\server\transport\internal.h" />
  1107. <ClInclude Include="src\client\hooks\queuez\family0\family0_source_seed.h" />
  1108. <ClInclude Include="src\middleware\content\packages\reader\locator_cache.h" />
  1109. <ClInclude Include="src\server\bap\encrypted\push\queuez\queuez_push_reporting.h" />
  1110. <ClInclude Include="src\client\diagnostics\module_range.h" />
  1111. <ClInclude Include="src\client\process\freeze\client_process_freeze.h" />
  1112. <ClInclude Include="src\core\settings\address_text.h" />
  1113. <ClInclude Include="src\core\settings\server\gameplay\definition.h" />
  1114. <ClInclude Include="src\middleware\crypto\random_bytes.h" />
  1115. <ClInclude Include="src\middleware\crypto\sha256.h" />
  1116. <ClInclude Include="src\middleware\crypto\ecc_p224.h" />
  1117. <ClInclude Include="src\middleware\crypto\tiger192.h" />
  1118. <ClInclude Include="src\middleware\crypto\aes_cbc.h" />
  1119. <ClInclude Include="src\middleware\crypto\hmac.h" />
  1120. <ClInclude Include="src\middleware\crypto\lookup3.h" />
  1121. <ClInclude Include="src\middleware\crypto\murmur3.h" />
  1122. <ClInclude Include="src\middleware\crypto\aes_gcm_encrypt.h" />
  1123. <ClInclude Include="src\middleware\crypto\modular_1024.h" />
  1124. <ClInclude Include="src\middleware\encoding\bit_raw.h" />
  1125. <ClInclude Include="src\middleware\gameplay\association\srp_exchange.h" />
  1126. <ClInclude Include="src\middleware\gameplay\association\control_packet.h" />
  1127. <ClInclude Include="src\middleware\gameplay\association\protected_datagram.h" />
  1128. <ClInclude Include="src\middleware\gameplay\peer\peer_container.h" />
  1129. <ClInclude Include="src\middleware\gameplay\peer\connect_messages.h" />
  1130. <ClInclude Include="src\middleware\gameplay\peer\established_packet.h" />
  1131. <ClInclude Include="src\state\gameplay\definition.h" />
  1132. <ClInclude Include="src\server\gameplay\gameplay_log.h" />
  1133. <ClInclude Include="src\server\gameplay\gameplay_runtime.h" />
  1134. <ClInclude Include="src\server\gameplay\endpoint\gameplay_endpoint.h" />
  1135. <ClInclude Include="src\server\gameplay\association\association_host.h" />
  1136. <ClInclude Include="src\server\gameplay\peer\peer_transport.h" />
  1137. <ClInclude Include="src\middleware\gameplay\descriptor\join_descriptor.h" />
  1138. <ClInclude Include="src\server\gameplay\gameplay_advertisement.h" />
  1139. <ClInclude Include="src\middleware\web_service\messages\opcode901\opcode901_codec.h" />
  1140. <ClInclude Include="src\middleware\gameplay\peer\reliable_assembly.h" />
  1141. <ClInclude Include="src\middleware\gameplay\peer\join_messages.h" />
  1142. <ClInclude Include="src\middleware\gameplay\group\session_messages.h" />
  1143. <ClInclude Include="src\middleware\gameplay\group\session_state.h" />
  1144. <ClInclude Include="src\middleware\gameplay\group\view_message.h" />
  1145. <ClInclude Include="src\middleware\gameplay\group\parameter_messages.h" />
  1146. <ClInclude Include="src\middleware\gameplay\group\parameter_registry.h" />
  1147. <ClInclude Include="src\middleware\gameplay\group\member_messages.h" />
  1148. <ClInclude Include="src\server\gameplay\group\group_host.h" />
  1149. <ClInclude Include="src\server\gameplay\group\group_host_sessions.h" />
  1150. <ClInclude Include="src\middleware\gameplay\nat\introduction.h" />
  1151. <ClInclude Include="src\middleware\gameplay\dtls\dtls_messages.h" />
  1152. <ClInclude Include="src\middleware\gameplay\dtls\association_keys.h" />
  1153. <ClInclude Include="src\middleware\gameplay\dtls\record.h" />
  1154. <ClInclude Include="src\server\gameplay\dtls\dtls_host.h" />
  1155. </ItemGroup>
  1156. <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
  1157. </Project>