MochaPayload/source/ios_mcp/source/main.c
2021-02-14 15:28:56 +01:00

20 lines
365 B
C

#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include "wupserver.h"
#include "ipc.h"
#include "svc.h"
#include "text.h"
#include "../../common/kernel_commands.h"
static int threadsStarted = 0;
int _startMainThread(void) {
if (threadsStarted == 0) {
threadsStarted = 1;
wupserver_init();
ipc_init();
}
return 0;
}