mirror of
https://github.com/WarmUpTill/SceneSwitcher.git
synced 2026-03-22 01:44:49 -05:00
11 lines
201 B
C++
11 lines
201 B
C++
#pragma once
|
|
#include <QComboBox>
|
|
|
|
namespace advss {
|
|
|
|
void PopulateMonitorTypeSelection(QComboBox *list);
|
|
float DecibelToPercent(float db);
|
|
float PercentToDecibel(float percent);
|
|
|
|
} // namespace advss
|