| 88 | } |
| 89 | |
| 90 | Result NDMU_UnlockState(void) |
| 91 | { |
| 92 | u32* cmdbuf=getThreadCommandBuffer(); |
| 93 | |
| 94 | cmdbuf[0]=IPC_MakeHeader(0x5,0,2); // 0x50002 |
| 95 | cmdbuf[1]=IPC_Desc_CurProcessId(); |
| 96 | |
| 97 | Result ret=0; |
| 98 | if(R_FAILED(ret=svcSendSyncRequest(ndmuHandle)))return ret; |
| 99 | |
| 100 | return (Result)cmdbuf[1]; |
| 101 | } |
| 102 | |
| 103 | Result NDMU_SuspendDaemons(ndmDaemonMask mask) |
| 104 | { |
nothing calls this directly
no test coverage detected