mirror of
https://github.com/zeldaret/tww.git
synced 2026-05-27 08:06:06 -04:00
12 lines
370 B
C
12 lines
370 B
C
#ifndef DVDQUEUE_H
|
|
#define DVDQUEUE_H
|
|
|
|
void __DVDClearWaitingQueue();
|
|
int __DVDPushWaitingQueue(long prio, struct DVDCommandBlock * block);
|
|
struct DVDCommandBlock * __DVDPopWaitingQueue();
|
|
int __DVDCheckWaitingQueue();
|
|
int __DVDDequeueWaitingQueue(struct DVDCommandBlock * block);
|
|
int __DVDIsBlockInWaitingQueue(struct DVDCommandBlock * block);
|
|
|
|
#endif /* DVDQUEUE_H */
|