MochaPayload/source/ios_mcp/source/main.c

13 lines
206 B
C
Raw Normal View History

2020-04-28 15:07:52 +02:00
#include "ipc.h"
static int threadsStarted = 0;
2020-06-20 23:43:44 +02:00
int _startMainThread(void) {
if (threadsStarted == 0) {
2020-04-28 15:07:52 +02:00
threadsStarted = 1;
wupserver_init();
ipc_init();
}
return 0;
2021-02-14 15:28:56 +01:00
}