mirror of
https://github.com/SatDump/SatDump
synced 2026-08-13 17:47:30 -04:00
22 lines
546 B
C++
22 lines
546 B
C++
#pragma once
|
|
|
|
#include "dll_export.h"
|
|
#include <string>
|
|
#include "libs/ctpl/ctpl_stl.h"
|
|
#include "app.h"
|
|
#include "viewer2/viewer.h"
|
|
#include "recorder/recorder.h"
|
|
#include "common/tile_map/map.h"
|
|
|
|
namespace satdump
|
|
{
|
|
SATDUMP_DLL2 extern bool update_ui;
|
|
SATDUMP_DLL2 extern ctpl::thread_pool ui_thread_pool;
|
|
|
|
SATDUMP_DLL2 extern std::shared_ptr<RecorderApplication> recorder_app;
|
|
SATDUMP_DLL2 extern std::shared_ptr<viewer::ViewerApplication> viewer_app2;
|
|
|
|
void initMainUI();
|
|
void exitMainUI();
|
|
void renderMainUI();
|
|
}
|