mirror of
https://github.com/zeldaret/tp
synced 2026-05-23 15:01:53 -04:00
a6e76c0841
* some wii OS fixes * remove old dol2asm comments * remove dol2asm.h * remove function address comments * normalize ATTRIBUTE_ALIGN usage * DECL_WEAK macro * fix gcc attribute weak macro * wrap more mwcc specific things in ifdefs * fixes * fix revo sdk version flags * fixes
21 lines
346 B
C++
21 lines
346 B
C++
#ifndef JASDVDTHREAD_H
|
|
#define JASDVDTHREAD_H
|
|
|
|
#include "dolphin/types.h"
|
|
|
|
class JASTaskThread;
|
|
|
|
/**
|
|
* @ingroup jsystem-jaudio
|
|
*
|
|
*/
|
|
class JASDvd {
|
|
public:
|
|
static JASTaskThread* getThreadPointer();
|
|
static bool createThread(s32 priority, int msgCount, u32 stackSize);
|
|
|
|
static JASTaskThread* sThread;
|
|
};
|
|
|
|
#endif /* JASDVDTHREAD_H */
|