fs.mitm: Get Title ID on fsp-srv init, Add worker to handle subinterfaces.

This commit is contained in:
Michael Scire
2018-06-10 03:06:50 -06:00
parent ec78fa5977
commit 3cbdf0b2b9
7 changed files with 160 additions and 2 deletions

View File

@@ -0,0 +1,11 @@
#pragma once
#include <switch.h>
#include <stratosphere.hpp>
class FsMitmWorker {
private:
static Result AddWaitableInternal(Handle *handles, size_t num_handles, u64 timeout);
public:
static void Main(void *arg);
static void AddWaitable(IWaitable *waitable);
};