Implement stub for QueryApplicationPlayStatisticsByUid
This commit is contained in:
		
							parent
							
								
									8714d40a77
								
							
						
					
					
						commit
						b0b0786493
					
				| @ -1077,6 +1077,7 @@ IApplicationFunctions::IApplicationFunctions(Core::System& system_) | |||||||
|         {101, &IApplicationFunctions::SetApplicationCopyrightImage, "SetApplicationCopyrightImage"}, |         {101, &IApplicationFunctions::SetApplicationCopyrightImage, "SetApplicationCopyrightImage"}, | ||||||
|         {102, &IApplicationFunctions::SetApplicationCopyrightVisibility, "SetApplicationCopyrightVisibility"}, |         {102, &IApplicationFunctions::SetApplicationCopyrightVisibility, "SetApplicationCopyrightVisibility"}, | ||||||
|         {110, nullptr, "QueryApplicationPlayStatistics"}, |         {110, nullptr, "QueryApplicationPlayStatistics"}, | ||||||
|  |         {111, &IApplicationFunctions::QueryApplicationPlayStatisticsByUid, "QueryApplicationPlayStatisticsByUid"}, | ||||||
|         {120, nullptr, "ExecuteProgram"}, |         {120, nullptr, "ExecuteProgram"}, | ||||||
|         {121, nullptr, "ClearUserChannel"}, |         {121, nullptr, "ClearUserChannel"}, | ||||||
|         {122, nullptr, "UnpopToUserChannel"}, |         {122, nullptr, "UnpopToUserChannel"}, | ||||||
| @ -1384,6 +1385,14 @@ void IApplicationFunctions::GetGpuErrorDetectedSystemEvent(Kernel::HLERequestCon | |||||||
|     rb.PushCopyObjects(gpu_error_detected_event.readable); |     rb.PushCopyObjects(gpu_error_detected_event.readable); | ||||||
| } | } | ||||||
| 
 | 
 | ||||||
|  | void IApplicationFunctions::QueryApplicationPlayStatisticsByUid(Kernel::HLERequestContext& ctx) { | ||||||
|  |     LOG_WARNING(Service_AM, "(STUBBED) called"); | ||||||
|  | 
 | ||||||
|  |     IPC::ResponseBuilder rb{ctx, 3}; | ||||||
|  |     rb.Push(RESULT_SUCCESS); | ||||||
|  |     rb.Push<u32>(0); | ||||||
|  | } | ||||||
|  | 
 | ||||||
| void InstallInterfaces(SM::ServiceManager& service_manager, | void InstallInterfaces(SM::ServiceManager& service_manager, | ||||||
|                        std::shared_ptr<NVFlinger::NVFlinger> nvflinger, Core::System& system) { |                        std::shared_ptr<NVFlinger::NVFlinger> nvflinger, Core::System& system) { | ||||||
|     auto message_queue = std::make_shared<AppletMessageQueue>(system.Kernel()); |     auto message_queue = std::make_shared<AppletMessageQueue>(system.Kernel()); | ||||||
|  | |||||||
| @ -256,6 +256,7 @@ private: | |||||||
|     void SetApplicationCopyrightImage(Kernel::HLERequestContext& ctx); |     void SetApplicationCopyrightImage(Kernel::HLERequestContext& ctx); | ||||||
|     void SetApplicationCopyrightVisibility(Kernel::HLERequestContext& ctx); |     void SetApplicationCopyrightVisibility(Kernel::HLERequestContext& ctx); | ||||||
|     void GetGpuErrorDetectedSystemEvent(Kernel::HLERequestContext& ctx); |     void GetGpuErrorDetectedSystemEvent(Kernel::HLERequestContext& ctx); | ||||||
|  |     void QueryApplicationPlayStatisticsByUid(Kernel::HLERequestContext& ctx); | ||||||
| 
 | 
 | ||||||
|     bool launch_popped_application_specific = false; |     bool launch_popped_application_specific = false; | ||||||
|     bool launch_popped_account_preselect = false; |     bool launch_popped_account_preselect = false; | ||||||
|  | |||||||
		Loading…
	
		Reference in New Issue
	
	Block a user
	 Michael Scire
						Michael Scire