mirror of
https://github.com/wiiu-env/MochaPayload.git
synced 2024-11-17 21:49:17 +01:00
13 lines
206 B
C
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;
|
|
} |