summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/core/hle/service/btm/btm.cpp30
1 files changed, 30 insertions, 0 deletions
diff --git a/src/core/hle/service/btm/btm.cpp b/src/core/hle/service/btm/btm.cpp
index d337fd317..cc268d877 100644
--- a/src/core/hle/service/btm/btm.cpp
+++ b/src/core/hle/service/btm/btm.cpp
@@ -201,6 +201,22 @@ public:
201 {62, nullptr, "Unknown62"}, 201 {62, nullptr, "Unknown62"},
202 {63, nullptr, "Unknown63"}, 202 {63, nullptr, "Unknown63"},
203 {64, nullptr, "Unknown64"}, 203 {64, nullptr, "Unknown64"},
204 {65, nullptr, "Unknown65"},
205 {66, nullptr, "Unknown66"},
206 {67, nullptr, "Unknown67"},
207 {68, nullptr, "Unknown68"},
208 {69, nullptr, "Unknown69"},
209 {70, nullptr, "Unknown70"},
210 {71, nullptr, "Unknown71"},
211 {72, nullptr, "Unknown72"},
212 {73, nullptr, "Unknown73"},
213 {74, nullptr, "Unknown74"},
214 {75, nullptr, "Unknown75"},
215 {76, nullptr, "Unknown76"},
216 {100, nullptr, "Unknown100"},
217 {101, nullptr, "Unknown101"},
218 {110, nullptr, "Unknown102"},
219 {111, nullptr, "Unknown103"},
204 }; 220 };
205 // clang-format on 221 // clang-format on
206 222
@@ -249,6 +265,20 @@ public:
249 {7, nullptr, "AcquireRadioEvent"}, 265 {7, nullptr, "AcquireRadioEvent"},
250 {8, nullptr, "AcquireGamepadPairingEvent"}, 266 {8, nullptr, "AcquireGamepadPairingEvent"},
251 {9, nullptr, "IsGamepadPairingStarted"}, 267 {9, nullptr, "IsGamepadPairingStarted"},
268 {10, nullptr, "StartAudioDeviceDiscovery"},
269 {11, nullptr, "StopAudioDeviceDiscovery"},
270 {12, nullptr, "IsDiscoveryingAudioDevice"},
271 {13, nullptr, "GetDiscoveredAudioDevice"},
272 {14, nullptr, "AcquireAudioDeviceConnectionEvent"},
273 {15, nullptr, "ConnectAudioDevice"},
274 {16, nullptr, "IsConnectingAudioDevice"},
275 {17, nullptr, "GetConnectedAudioDevices"},
276 {18, nullptr, "DisconnectAudioDevice"},
277 {19, nullptr, "AcquirePairedAudioDeviceInfoChangedEvent"},
278 {20, nullptr, "GetPairedAudioDevices"},
279 {21, nullptr, "RemoveAudioDevicePairing"},
280 {22, nullptr, "RequestAudioDeviceConnectionRejection"},
281 {23, nullptr, "CancelAudioDeviceConnectionRejection"}
252 }; 282 };
253 // clang-format on 283 // clang-format on
254 284