#include #include #include extern "C" void entry(QIPC& ipc) { open("lol", 0); ipc.send("Lol"); std::string test = "Dynamic "; test += "memory"; ipc.send(test.c_str()); ipc.send_raw(size_t(1234567890)); }