nestopia/source/fltkui/uiadapter.h
HWXLR8 5e065f55af FLTK: Add option to mute audio
Adds a mute-on-startup entry in settings, a --mute (-m) command line
parameter, 'm' hotkey to mute on the fly, and a corresponding menubar
entry.
2025-01-01 21:24:37 -05:00

18 lines
306 B
C++

#pragma once
class UiAdapter {
public:
UiAdapter() {}
~UiAdapter() {}
static void fullscreen();
static void fastforward(bool ff);
static void pause();
static void mute();
static void screenshot();
static void quit();
static void show_inputmsg(int show);
private:
};