gBar/src/AudioFlyin.h
scorpion-26 3c8c93d774 Add Microphone support
This commit adds a new widget for the bar: A Microphone widget. It is
disabled by default and can can
be enabled with AudioInput: true.
Implements a flyin as well.

https://github.com/scorpion-26/gBar/issues/5 for the ping
2023-02-22 17:13:14 +01:00

13 lines
209 B
C++

#pragma once
#include "Widget.h"
#include "Window.h"
namespace AudioFlyin
{
enum class Type
{
Speaker,
Microphone
};
void Create(Window& window, int32_t monitor, Type type);
}