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