mirror of
https://github.com/Next-Flip/Momentum-Firmware.git
synced 2026-06-06 18:51:53 -07:00
ffafb6ce69
* [BLE Remote] Add Rename Option Adds an option to rename the advertised Bluetooth device. Closes #410. * Fix formatting * Revert changes to firmware Copies some of the firmware code to modify it, rather than directly modifying it in the firmware. * Fix compile error for USB transport * Similar concept for BadKB too * Save to setting file, polish the edges a bit * Fix LSP warning * Update changelog --------- Co-authored-by: WillyJL <me@willyjl.dev>
15 lines
371 B
C
15 lines
371 B
C
#pragma once
|
|
|
|
#include <gui/view.h>
|
|
|
|
typedef struct Hid Hid;
|
|
typedef struct HidMusicMacos HidMusicMacos;
|
|
|
|
HidMusicMacos* hid_music_macos_alloc(Hid* hid);
|
|
|
|
void hid_music_macos_free(HidMusicMacos* hid_music_macos);
|
|
|
|
View* hid_music_macos_get_view(HidMusicMacos* hid_music_macos);
|
|
|
|
void hid_music_macos_set_connected_status(HidMusicMacos* hid_music_macos, bool connected);
|