blob: 11ca4fd355db9eedc339d8396dcdf83f2fa8ca36 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#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
|