satdump/src-core/core/backend.cpp

14 lines
381 B
C++
Raw Permalink Normal View History

2023-12-20 14:11:57 -05:00
#define SATDUMP_DLL_EXPORT 1
#include "backend.h"
namespace backend
{
SATDUMP_DLL float device_scale;
SATDUMP_DLL std::function<void()> rebuildFonts;
2023-12-20 14:11:57 -05:00
SATDUMP_DLL std::function<void(int, int)> setMousePos;
2023-12-31 11:11:36 -05:00
SATDUMP_DLL std::function<std::pair<int, int>()> beginFrame;
SATDUMP_DLL std::function<void()> endFrame;
2023-12-31 11:46:40 -05:00
SATDUMP_DLL std::function<void(uint8_t*, int, int)> setIcon;
}