MochaPayload/source/ios_mcp/source/main.c
2023-02-16 20:04:17 +01:00

13 lines
206 B
C

#include "ipc.h"
static int threadsStarted = 0;
int _startMainThread(void) {
if (threadsStarted == 0) {
threadsStarted = 1;
wupserver_init();
ipc_init();
}
return 0;
}