1
0
mirror of synced 2024-11-15 11:33:23 +01:00
ImHex/main/gui/source/messaging/macos.cpp
2023-11-10 20:47:08 +01:00

25 lines
576 B
C++

#if defined(OS_MACOS)
#include <stdexcept>
#include <hex/helpers/intrinsics.hpp>
#include <hex/helpers/logger.hpp>
#include "messaging.hpp"
namespace hex::messaging {
void sendToOtherInstance(const std::string &eventName, const std::vector<u8> &args) {
hex::unused(eventName);
hex::unused(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