mirror of
https://github.com/AlexandreRouma/SDRPlusPlus.git
synced 2026-04-18 22:32:44 +00:00
10 lines
188 B
C++
10 lines
188 B
C++
#pragma once
|
|
#include <thread>
|
|
#include <string>
|
|
#include <mutex>
|
|
#include <GLFW/glfw3.h>
|
|
|
|
namespace LoadingScreen {
|
|
void setWindow(GLFWwindow* win);
|
|
void show(std::string msg);
|
|
}; |