mirror of
				https://github.com/PabloMK7/citra.git
				synced 2025-10-30 21:30:04 +00:00 
			
		
		
		
	service/cecd: Addressed comment about PopEnum
This commit is contained in:
		
							parent
							
								
									413f1651b7
								
							
						
					
					
						commit
						e27c1bd1f5
					
				
					 1 changed files with 7 additions and 7 deletions
				
			
		|  | @ -27,7 +27,7 @@ using CecSystemInfoType = Module::CecSystemInfoType; | ||||||
| void Module::Interface::OpenRawFile(Kernel::HLERequestContext& ctx) { | void Module::Interface::OpenRawFile(Kernel::HLERequestContext& ctx) { | ||||||
|     IPC::RequestParser rp(ctx, 0x01, 3, 2); |     IPC::RequestParser rp(ctx, 0x01, 3, 2); | ||||||
|     const u32 ncch_program_id = rp.Pop<u32>(); |     const u32 ncch_program_id = rp.Pop<u32>(); | ||||||
|     const auto path_type = static_cast<CecDataPathType>(rp.Pop<u32>()); |     const CecDataPathType path_type = rp.PopEnum<CecDataPathType>(); | ||||||
|     CecOpenMode open_mode; |     CecOpenMode open_mode; | ||||||
|     open_mode.raw = rp.Pop<u32>(); |     open_mode.raw = rp.Pop<u32>(); | ||||||
|     rp.PopPID(); |     rp.PopPID(); | ||||||
|  | @ -243,7 +243,7 @@ void Module::Interface::WriteMessageWithHMAC(Kernel::HLERequestContext& ctx) { | ||||||
| void Module::Interface::Delete(Kernel::HLERequestContext& ctx) { | void Module::Interface::Delete(Kernel::HLERequestContext& ctx) { | ||||||
|     IPC::RequestParser rp(ctx, 0x08, 4, 2); |     IPC::RequestParser rp(ctx, 0x08, 4, 2); | ||||||
|     const u32 ncch_program_id = rp.Pop<u32>(); |     const u32 ncch_program_id = rp.Pop<u32>(); | ||||||
|     const auto path_type = static_cast<CecDataPathType>(rp.Pop<u32>()); |     const CecDataPathType path_type = rp.PopEnum<CecDataPathType>(); | ||||||
|     const bool is_outbox = rp.Pop<bool>(); |     const bool is_outbox = rp.Pop<bool>(); | ||||||
|     const u32 message_id_size = rp.Pop<u32>(); |     const u32 message_id_size = rp.Pop<u32>(); | ||||||
|     auto& message_id_buffer = rp.PopMappedBuffer(); |     auto& message_id_buffer = rp.PopMappedBuffer(); | ||||||
|  | @ -276,7 +276,7 @@ void Module::Interface::Cecd_0x000900C2(Kernel::HLERequestContext& ctx) { | ||||||
| void Module::Interface::GetSystemInfo(Kernel::HLERequestContext& ctx) { | void Module::Interface::GetSystemInfo(Kernel::HLERequestContext& ctx) { | ||||||
|     IPC::RequestParser rp(ctx, 0x0A, 3, 4); |     IPC::RequestParser rp(ctx, 0x0A, 3, 4); | ||||||
|     const u32 dest_buffer_size = rp.Pop<u32>(); |     const u32 dest_buffer_size = rp.Pop<u32>(); | ||||||
|     const CecSystemInfoType info_type = static_cast<CecSystemInfoType>(rp.Pop<u32>()); |     const CecSystemInfoType info_type = rp.PopEnum<CecSystemInfoType>(); | ||||||
|     const u32 param_buffer_size = rp.Pop<u32>(); |     const u32 param_buffer_size = rp.Pop<u32>(); | ||||||
|     auto& param_buffer = rp.PopMappedBuffer(); |     auto& param_buffer = rp.PopMappedBuffer(); | ||||||
|     auto& dest_buffer = rp.PopMappedBuffer(); |     auto& dest_buffer = rp.PopMappedBuffer(); | ||||||
|  | @ -313,7 +313,7 @@ void Module::Interface::GetSystemInfo(Kernel::HLERequestContext& ctx) { | ||||||
| 
 | 
 | ||||||
| void Module::Interface::RunCommand(Kernel::HLERequestContext& ctx) { | void Module::Interface::RunCommand(Kernel::HLERequestContext& ctx) { | ||||||
|     IPC::RequestParser rp(ctx, 0x0B, 1, 0); |     IPC::RequestParser rp(ctx, 0x0B, 1, 0); | ||||||
|     const auto command = static_cast<CecCommand>(rp.Pop<u32>()); |     const CecCommand command = rp.PopEnum<CecCommand>(); | ||||||
| 
 | 
 | ||||||
|     IPC::RequestBuilder rb = rp.MakeBuilder(1, 0); |     IPC::RequestBuilder rb = rp.MakeBuilder(1, 0); | ||||||
|     rb.Push(RESULT_SUCCESS); |     rb.Push(RESULT_SUCCESS); | ||||||
|  | @ -323,7 +323,7 @@ void Module::Interface::RunCommand(Kernel::HLERequestContext& ctx) { | ||||||
| 
 | 
 | ||||||
| void Module::Interface::RunCommandAlt(Kernel::HLERequestContext& ctx) { | void Module::Interface::RunCommandAlt(Kernel::HLERequestContext& ctx) { | ||||||
|     IPC::RequestParser rp(ctx, 0x0C, 1, 0); |     IPC::RequestParser rp(ctx, 0x0C, 1, 0); | ||||||
|     const auto command = static_cast<CecCommand>(rp.Pop<u32>()); |     const CecCommand command = rp.PopEnum<CecCommand>(); | ||||||
| 
 | 
 | ||||||
|     IPC::RequestBuilder rb = rp.MakeBuilder(1, 0); |     IPC::RequestBuilder rb = rp.MakeBuilder(1, 0); | ||||||
|     rb.Push(RESULT_SUCCESS); |     rb.Push(RESULT_SUCCESS); | ||||||
|  | @ -365,7 +365,7 @@ void Module::Interface::OpenAndWrite(Kernel::HLERequestContext& ctx) { | ||||||
|     IPC::RequestParser rp(ctx, 0x11, 4, 4); |     IPC::RequestParser rp(ctx, 0x11, 4, 4); | ||||||
|     const u32 buffer_size = rp.Pop<u32>(); |     const u32 buffer_size = rp.Pop<u32>(); | ||||||
|     const u32 ncch_program_id = rp.Pop<u32>(); |     const u32 ncch_program_id = rp.Pop<u32>(); | ||||||
|     const auto path_type = static_cast<CecDataPathType>(rp.Pop<u32>()); |     const CecDataPathType path_type = rp.PopEnum<CecDataPathType>(); | ||||||
|     CecOpenMode open_mode; |     CecOpenMode open_mode; | ||||||
|     open_mode.raw = rp.Pop<u32>(); |     open_mode.raw = rp.Pop<u32>(); | ||||||
|     rp.PopPID(); |     rp.PopPID(); | ||||||
|  | @ -415,7 +415,7 @@ void Module::Interface::OpenAndRead(Kernel::HLERequestContext& ctx) { | ||||||
|     IPC::RequestParser rp(ctx, 0x12, 4, 4); |     IPC::RequestParser rp(ctx, 0x12, 4, 4); | ||||||
|     const u32 buffer_size = rp.Pop<u32>(); |     const u32 buffer_size = rp.Pop<u32>(); | ||||||
|     const u32 ncch_program_id = rp.Pop<u32>(); |     const u32 ncch_program_id = rp.Pop<u32>(); | ||||||
|     const auto path_type = static_cast<CecDataPathType>(rp.Pop<u32>()); |     const CecDataPathType path_type = rp.PopEnum<CecDataPathType>(); | ||||||
|     CecOpenMode open_mode; |     CecOpenMode open_mode; | ||||||
|     open_mode.raw = rp.Pop<u32>(); |     open_mode.raw = rp.Pop<u32>(); | ||||||
|     rp.PopPID(); |     rp.PopPID(); | ||||||
|  |  | ||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue