mirror of
https://github.com/AlexandreRouma/SDRPlusPlus.git
synced 2024-11-15 23:12:52 +01:00
9 lines
347 B
C
9 lines
347 B
C
#pragma once
|
|
#include "imgui.h"
|
|
|
|
#define WINDOW_FLAGS ImGuiWindowFlags_NoMove | ImGuiWindowFlags_NoCollapse | ImGuiWindowFlags_NoBringToFrontOnFocus | ImGuiWindowFlags_NoTitleBar | ImGuiWindowFlags_NoResize | ImGuiWindowFlags_NoBackground
|
|
|
|
void windowInit();
|
|
void drawWindow();
|
|
void setViewBandwidthSlider(float bandwidth);
|
|
bool sdrIsRunning(); |