1
0
mirror of synced 2025-01-11 22:02:17 +01:00

24 lines
544 B
C++
Raw Normal View History

#if defined(OS_LINUX)
2023-11-10 20:47:08 +01:00
#include <stdexcept>
#include <hex/helpers/logger.hpp>
#include "messaging.hpp"
namespace hex::messaging {
void sendToOtherInstance(const std::string &eventName, const std::vector<u8> &args) {
std::ignore = eventName;
std::ignore = args;
log::error("Unimplemented function 'sendToOtherInstance()' called");
}
// Not implemented, so lets say we are the main instance every time so events are forwarded to ourselves
bool setupNative() {
return true;
}
}
#endif