windows fix v2

This commit is contained in:
camila314 2022-11-30 11:35:17 -06:00
parent 25d4f2e5c0
commit 655154518a

View file

@ -49,7 +49,7 @@ void ipcPipeThread(HANDLE pipe) {
if (ReadFile(pipe, buffer, sizeof(buffer) - 1, &read, nullptr)) {
buffer[read] = '\0';
std::string reply = InternalLoader::processRawIPC(buffer);
std::string reply = InternalLoader::processRawIPC((void*)pipe, buffer);
DWORD written;
WriteFile(pipe, reply.c_str(), reply.size(), &written, nullptr);