mirror of
https://github.com/zeldaret/tww.git
synced 2026-05-23 15:01:33 -04:00
19 lines
384 B
C++
19 lines
384 B
C++
#ifndef JASCHALLOCQUEUE_H
|
|
#define JASCHALLOCQUEUE_H
|
|
|
|
#include "JSystem/JSupport/JSUList.h"
|
|
|
|
namespace JASystem {
|
|
class TChannel;
|
|
namespace TDSPQueue {
|
|
void deQueue();
|
|
void enQueue(JASystem::TChannel*);
|
|
int deleteQueue(JASystem::TChannel*);
|
|
void checkQueue();
|
|
}
|
|
|
|
extern JSUList<TChannel> sDspQueueList;
|
|
}
|
|
|
|
#endif /* JASCHALLOCQUEUE_H */
|