Queue.h
资源名称:PSParse.rar [点击查看]
上传用户:thjx518
上传日期:2022-03-16
资源大小:179k
文件大小:0k
源码类别:
mpeg/mp3
开发平台:
Visual C++
- // Queue.h: interface for the CQueue class.
- //
- //////////////////////////////////////////////////////////////////////
- #ifndef _QUEUE_H__
- #define _QUEUE_H__
- #include"Afxmt.h"
- class CQueue
- {
- public:
- void SetFilter(USHORT*filter,int count);
- bool Pop(void*);
- void Push(UCHAR*buf);
- CQueue(int size=200);
- virtual ~CQueue();
- private:
- int FilterCount;
- USHORT* Filter;
- CCriticalSection lock;
- int Size;
- unsigned char* Data;
- int pRead,pWrite;
- };
- #endif