mirror of
https://github.com/zeldaret/ss
synced 2026-05-24 07:10:53 -04:00
26af4db82d
* update from dtk-template and start work towards using clangd * include <a> -> "a" * Update build.yml * remove/add non-trivial class in union warning
31 lines
601 B
C
31 lines
601 B
C
#ifndef RVL_SDK_DVD_QUEUE_H
|
|
#define RVL_SDK_DVD_QUEUE_H
|
|
#include "common.h"
|
|
#include "rvl/DVD/dvd.h"
|
|
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
typedef enum {
|
|
DVD_PRIO_HIGHEST,
|
|
DVD_PRIO_HIGH,
|
|
DVD_PRIO_MEDIUM,
|
|
DVD_PRIO_LOW,
|
|
|
|
DVD_PRIO_MAX,
|
|
} DVDQueuePriority;
|
|
|
|
void __DVDClearWaitingQueue(void);
|
|
BOOL __DVDPushWaitingQueue(s32 prio, DVDCommandBlock *block);
|
|
DVDCommandBlock *__DVDPopWaitingQueue(void);
|
|
BOOL __DVDCheckWaitingQueue(void);
|
|
DVDCommandBlock *__DVDGetNextWaitingQueue(void);
|
|
BOOL __DVDDequeueWaitingQueue(const DVDCommandBlock *block);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
#endif
|