mirror of
https://github.com/wiiu-env/MochaPayload.git
synced 2024-11-15 04:35:08 +01:00
14 lines
229 B
C
14 lines
229 B
C
#include "ipc.h"
|
|
#include "wupserver.h"
|
|
|
|
static int threadsStarted = 0;
|
|
|
|
int _startMainThread(void) {
|
|
if (threadsStarted == 0) {
|
|
threadsStarted = 1;
|
|
|
|
wupserver_init();
|
|
ipc_init();
|
|
}
|
|
return 0;
|
|
} |