| 1275 | } |
| 1276 | |
| 1277 | Result APT_CancelParameter(NS_APPID source, NS_APPID dest, bool* success) |
| 1278 | { |
| 1279 | u32 cmdbuf[16]; |
| 1280 | |
| 1281 | cmdbuf[0] = IPC_MakeHeader(0xF,4,0); // 0xF0100 |
| 1282 | cmdbuf[1] = source != APPID_NONE; |
| 1283 | cmdbuf[2] = source; |
| 1284 | cmdbuf[3] = dest != APPID_NONE; |
| 1285 | cmdbuf[4] = dest; |
| 1286 | |
| 1287 | Result ret = aptSendCommand(cmdbuf); |
| 1288 | if (R_SUCCEEDED(ret) && success) |
| 1289 | *success = cmdbuf[2] & 0xFF; |
| 1290 | |
| 1291 | return ret; |
| 1292 | } |
| 1293 | |
| 1294 | Result APT_SendCaptureBufferInfo(const aptCaptureBufInfo* captureBuf) |
| 1295 | { |
no test coverage detected