[IR:USER] Add empty service

This commit is contained in:
wheremyfoodat 2023-07-08 19:35:59 +03:00
parent 46207a3995
commit 1c08912a59
7 changed files with 47 additions and 2 deletions

View file

@ -21,6 +21,7 @@ namespace KernelHandles {
DLP_SRVR, // Download Play: Server. Used for network play.
DSP, // DSP service (Used for audio decoding and output)
HID, // HID service (Handles everything input-related including gyro)
IR_USER, // One of 3 infrared communication services
FRD, // Friend service (Miiverse friend service)
FS, // Filesystem service
GPU, // GPU service
@ -68,6 +69,7 @@ namespace KernelHandles {
case DSP: return "DSP";
case DLP_SRVR: return "DLP::SRVR";
case HID: return "HID";
case IR_USER: return "IR:USER";
case FRD: return "FRD";
case FS: return "FS";
case GPU: return "GSP::GPU";