| 44 | } |
| 45 | |
| 46 | static Result CSND_Shutdown() |
| 47 | { |
| 48 | Result ret=0; |
| 49 | u32 *cmdbuf = getThreadCommandBuffer(); |
| 50 | |
| 51 | cmdbuf[0] = IPC_MakeHeader(0x2,0,0); // 0x20000 |
| 52 | |
| 53 | if(R_FAILED(ret = svcSendSyncRequest(csndHandle)))return ret; |
| 54 | |
| 55 | return (Result)cmdbuf[1]; |
| 56 | } |
| 57 | |
| 58 | static Result CSND_ExecuteCommands(u32 offset) |
| 59 | { |
no test coverage detected