Files
ss/include/nw4r/snd/snd_TaskThread.h
T
elijah-thomas774 fa9a9ce949 lyt_common match
2024-05-12 20:23:22 -04:00

27 lines
519 B
C++

#ifndef NW4R_SND_TASKTHREAD_H
#define NW4R_SND_TASKTHREAD_H
#include "common.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