mirror of
https://github.com/WinampDesktop/winamp.git
synced 2025-06-19 03:35:46 -04:00
CommonHostInterface: Extract ff/turbo hotkeys to functions
This commit is contained in:
@ -222,6 +222,14 @@ public:
|
||||
/// This is the APK for Android builds, or the program directory for standalone builds.
|
||||
virtual std::unique_ptr<ByteStream> OpenPackageFile(const char* path, u32 flags) override;
|
||||
|
||||
/// Toggles fast forward state.
|
||||
bool IsFastForwardEnabled() const { return m_fast_forward_enabled; }
|
||||
void SetFastForwardEnabled(bool enabled);
|
||||
|
||||
/// Toggles turbo state.
|
||||
bool IsTurboEnabled() const { return m_turbo_enabled; }
|
||||
void SetTurboEnabled(bool enabled);
|
||||
|
||||
protected:
|
||||
enum : u32
|
||||
{
|
||||
|
Reference in New Issue
Block a user