Files
ss/include/nw4r/snd/snd_TaskThread.h
T
2023-12-24 11:35:03 -05:00

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