mirror of
				https://git.suyu.dev/suyu/suyu
				synced 2025-11-04 00:49:02 -06:00 
			
		
		
		
	Service/NIFM: stub cancel function
This commit is contained in:
		@@ -32,7 +32,7 @@ public:
 | 
			
		||||
            {0, &IRequest::GetRequestState, "GetRequestState"},
 | 
			
		||||
            {1, &IRequest::GetResult, "GetResult"},
 | 
			
		||||
            {2, &IRequest::GetSystemEventReadableHandles, "GetSystemEventReadableHandles"},
 | 
			
		||||
            {3, nullptr, "Cancel"},
 | 
			
		||||
            {3, &IRequest::Cancel, "Cancel"},
 | 
			
		||||
            {4, nullptr, "Submit"},
 | 
			
		||||
            {5, nullptr, "SetRequirement"},
 | 
			
		||||
            {6, nullptr, "SetRequirementPreset"},
 | 
			
		||||
@@ -80,6 +80,11 @@ private:
 | 
			
		||||
        rb.Push(RESULT_SUCCESS);
 | 
			
		||||
        rb.PushCopyObjects(event1, event2);
 | 
			
		||||
    }
 | 
			
		||||
    void Cancel(Kernel::HLERequestContext& ctx) {
 | 
			
		||||
        LOG_WARNING(Service_NIFM, "(STUBBED) called");
 | 
			
		||||
        IPC::ResponseBuilder rb{ctx, 2};
 | 
			
		||||
        rb.Push(RESULT_SUCCESS);
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    Kernel::SharedPtr<Kernel::Event> event1, event2;
 | 
			
		||||
};
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user