mirror of
https://github.com/TwilitRealm/dusklight
synced 2026-05-24 15:00:55 -04:00
011b4b33b2
* some JAudio work * audio cleanup checkpoint * checkpoint more audio cleanup * fix symbols * more z2 cleanup * fix regression * fix build * some fixes
21 lines
376 B
C++
21 lines
376 B
C++
#ifndef JASDVDTHREAD_H
|
|
#define JASDVDTHREAD_H
|
|
|
|
#include "dolphin/types.h"
|
|
|
|
class JASTaskThread;
|
|
|
|
/**
|
|
* @ingroup jsystem-jaudio
|
|
*
|
|
*/
|
|
class JASDvd {
|
|
public:
|
|
/* 8028FEFC */ static JASTaskThread* getThreadPointer();
|
|
/* 8028FF04 */ static bool createThread(s32 priority, int msgCount, u32 stackSize);
|
|
|
|
static JASTaskThread* sThread;
|
|
};
|
|
|
|
#endif /* JASDVDTHREAD_H */
|