mirror of
https://github.com/zeldaret/tww.git
synced 2026-05-23 06:54:16 -04:00
20 lines
385 B
C++
20 lines
385 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 */
|