1
0
Fork 0
mirror of https://github.com/Atmosphere-NX/Atmosphere.git synced 2024-09-23 15:33:27 +01:00
Atmosphere/stratosphere/fs_mitm/source/fsmitm_worker.hpp

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);
};