diff options
| author | Lioncash <mathew1800@gmail.com> | 2022-01-21 15:59:41 -0500 | 
|---|---|---|
| committer | Lioncash <mathew1800@gmail.com> | 2022-01-21 15:59:41 -0500 | 
| commit | 3da43ad2a920dafb749cb1d21540413c1bae8bda (patch) | |
| tree | 6ac5273e508f9f4ac95a156f1c4f2fad9351ad62 /src/core/hle/service | |
| parent | 0f7337c5220b26ba54c586be23094255566b7c30 (diff) | |
service/btm: Update function tables
Diffstat (limited to 'src/core/hle/service')
| -rw-r--r-- | src/core/hle/service/btm/btm.cpp | 30 | 
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:              {62, nullptr, "Unknown62"},              {63, nullptr, "Unknown63"},              {64, nullptr, "Unknown64"}, +            {65, nullptr, "Unknown65"}, +            {66, nullptr, "Unknown66"}, +            {67, nullptr, "Unknown67"}, +            {68, nullptr, "Unknown68"}, +            {69, nullptr, "Unknown69"}, +            {70, nullptr, "Unknown70"}, +            {71, nullptr, "Unknown71"}, +            {72, nullptr, "Unknown72"}, +            {73, nullptr, "Unknown73"}, +            {74, nullptr, "Unknown74"}, +            {75, nullptr, "Unknown75"}, +            {76, nullptr, "Unknown76"}, +            {100, nullptr, "Unknown100"}, +            {101, nullptr, "Unknown101"}, +            {110, nullptr, "Unknown102"}, +            {111, nullptr, "Unknown103"},          };          // clang-format on @@ -249,6 +265,20 @@ public:              {7, nullptr, "AcquireRadioEvent"},              {8, nullptr, "AcquireGamepadPairingEvent"},              {9, nullptr, "IsGamepadPairingStarted"}, +            {10, nullptr, "StartAudioDeviceDiscovery"}, +            {11, nullptr, "StopAudioDeviceDiscovery"}, +            {12, nullptr, "IsDiscoveryingAudioDevice"}, +            {13, nullptr, "GetDiscoveredAudioDevice"}, +            {14, nullptr, "AcquireAudioDeviceConnectionEvent"}, +            {15, nullptr, "ConnectAudioDevice"}, +            {16, nullptr, "IsConnectingAudioDevice"}, +            {17, nullptr, "GetConnectedAudioDevices"}, +            {18, nullptr, "DisconnectAudioDevice"}, +            {19, nullptr, "AcquirePairedAudioDeviceInfoChangedEvent"}, +            {20, nullptr, "GetPairedAudioDevices"}, +            {21, nullptr, "RemoveAudioDevicePairing"}, +            {22, nullptr, "RequestAudioDeviceConnectionRejection"}, +            {23, nullptr, "CancelAudioDeviceConnectionRejection"}          };          // clang-format on  | 
