mirror of
https://github.com/Atmosphere-NX/Atmosphere
synced 2024-11-10 15:16:34 +00:00
11 lines
294 B
C++
11 lines
294 B
C++
|
#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);
|
||
|
};
|