LibAudio: Explicitly ignore IPC postprocessing requests

We don't need to do any IPC postprocessing in LibAudio (yet.)
This is the mechanism used by LibGUI to do repaint coalescing etc.
This commit is contained in:
Andreas Kling 2019-08-02 19:56:41 +02:00
commit 33b0c4cfaf
Notes: sideshowbarker 2024-07-19 12:56:05 +09:00

View file

@ -13,6 +13,8 @@ public:
virtual void handshake() override;
void enqueue(const ABuffer&);
virtual void postprocess_bundles(Vector<IncomingMessageBundle>&) override {}
int get_main_mix_volume();
void set_main_mix_volume(int);
};