| 72 | } |
| 73 | |
| 74 | Result XboxOneController::Initialize() |
| 75 | { |
| 76 | Result rc; |
| 77 | |
| 78 | rc = OpenInterfaces(); |
| 79 | if (R_FAILED(rc)) |
| 80 | return rc; |
| 81 | |
| 82 | rc = SendInitBytes(); |
| 83 | if (R_FAILED(rc)) |
| 84 | return rc; |
| 85 | return rc; |
| 86 | } |
| 87 | void XboxOneController::Exit() |
| 88 | { |
| 89 | CloseInterfaces(); |
nothing calls this directly
no outgoing calls
no test coverage detected