Files
ss/include/m/m_thread.h
T
2026-04-14 14:49:29 +01:00

15 lines
200 B
C++

#ifndef M_THREAD_H
#define M_THREAD_H
// This file is a complete guess
struct OSThread;
namespace mThread {
void registerThread(OSThread *thread, void *threadArg);
} // namespace mThread
#endif