mirror of
https://github.com/SatDump/SatDump
synced 2026-08-13 17:47:30 -04:00
17 lines
757 B
C++
17 lines
757 B
C++
#define SATDUMP_DLL_EXPORT 1
|
|
#include "backend.h"
|
|
|
|
namespace backend
|
|
{
|
|
SATDUMP_DLL float device_scale;
|
|
|
|
SATDUMP_DLL std::function<void()> rebuildFonts;
|
|
SATDUMP_DLL std::function<void(int, int)> setMousePos;
|
|
SATDUMP_DLL std::function<std::pair<int, int>()> beginFrame;
|
|
SATDUMP_DLL std::function<void()> endFrame;
|
|
SATDUMP_DLL std::function<void(uint8_t *, int, int)> setIcon;
|
|
|
|
SATDUMP_DLL std::function<std::string(std::string)> selectFolderDialog;
|
|
SATDUMP_DLL std::function<std::string(std::vector<std::pair<std::string, std::string>>, std::string)> selectFileDialog;
|
|
SATDUMP_DLL std::function<std::string(std::vector<std::pair<std::string, std::string>>, std::string, std::string)> saveFileDialog;
|
|
} // namespace backend
|