blob: 8780d1dd78d67474b8c4027bb8831fcb7e7e65e6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#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 */
|