mirror of
https://github.com/zeldaret/ss
synced 2026-05-23 15:01:38 -04:00
15 lines
200 B
C++
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
|