Ring.h
上传用户:tuheem
上传日期:2007-05-01
资源大小:21889k
文件大小:0k
源码类别:

多媒体编程

开发平台:

Visual C++

  1. #ifndef _RING_H
  2. #define _RING_H
  3. #include <stdio.h>
  4. #include <stdlib.h>
  5. #include <string.h>
  6. void ring_init();
  7. void ring_write(char *data, int size);
  8. void ring_read(char *data, int size);
  9. int  ring_full(int size);
  10. #endif