mirror of
https://github.com/zeldaret/tww.git
synced 2026-05-23 15:01:33 -04:00
14 lines
379 B
C
14 lines
379 B
C
#ifndef DVDQUEUE_H
|
|
#define DVDQUEUE_H
|
|
|
|
#include "dolphin/dvd/dvd.h"
|
|
|
|
void __DVDClearWaitingQueue();
|
|
int __DVDPushWaitingQueue(long prio, DVDCommandBlock * block);
|
|
struct DVDCommandBlock * __DVDPopWaitingQueue();
|
|
int __DVDCheckWaitingQueue();
|
|
int __DVDDequeueWaitingQueue(DVDCommandBlock * block);
|
|
int __DVDIsBlockInWaitingQueue(DVDCommandBlock * block);
|
|
|
|
#endif /* DVDQUEUE_H */
|