mirror of
https://github.com/zeldaret/ss
synced 2026-05-30 00:46:41 -04:00
27 lines
523 B
C++
27 lines
523 B
C++
#ifndef NW4R_SND_TASKTHREAD_H
|
|
#define NW4R_SND_TASKTHREAD_H
|
|
#include "types_nw4r.h"
|
|
#include <rvl/OS/OSThread.h>
|
|
|
|
namespace nw4r {
|
|
namespace snd {
|
|
namespace detail {
|
|
struct TaskThread {
|
|
static void *ThreadFunc(void *);
|
|
|
|
TaskThread();
|
|
~TaskThread();
|
|
bool Create(s32, void *, u32);
|
|
void Destroy();
|
|
|
|
OSThread mThread; // at 0x0
|
|
void *mStackEnd; // at 0x318
|
|
bool mIsExiting; // at 0x31C
|
|
bool mIsAlive; // at 0x31D
|
|
};
|
|
} // namespace detail
|
|
} // namespace snd
|
|
} // namespace nw4r
|
|
|
|
#endif
|