satdump/src-interface/error.h

13 lines
207 B
C
Raw Normal View History

2022-03-10 19:56:37 +01:00
#pragma once
#include <string>
namespace satdump
{
namespace error
{
extern bool hasError;
void set_error(std::string title, std::string description);
void render();
}
}