diskio.h
上传用户:szhypcb168
上传日期:2007-01-06
资源大小:2187k
文件大小:1k
源码类别:

语音压缩

开发平台:

Unix_Linux

  1. /*
  2.               HEADER FILE FOR DISK_READ & DISK_WRITE ROUTINES
  3.      This file contains definitions that programs using disk_read and
  4. disk_write might find useful to know.
  5. */
  6. #define MAX_CHANNELS  16   /* max # of channels open for reading */
  7. #define MAX_FILES  10   /* max # of files open for writing */
  8. #define MAX_VARS_PER_BLK  36   /* max # of variables per block */
  9. #define MAX_VALUES_PER_VAR     4096   /* max # of values per block variable */
  10. #define MAX_VARNAME_LENG  16   /* max # of characters in a variable name,
  11.                                          not including null termination */
  12. #define MAX_FILENAME_LENG  80   /* max # of characters in a file name,
  13.                                          not including null termination */
  14. #define SHORT 1 /* definition of short data type */
  15. #define INT 2 /* definition of   int data type */
  16. #define FLOAT 3 /* definition of float data type */
  17. #define DISK_IO_EOF   -5  /* function return value for EOF error */