bufio.h
上传用户:lctgjx
上传日期:2022-06-04
资源大小:8887k
文件大小:3k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /* $Xorg: bufio.h,v 1.4 2001/02/09 02:04:04 xorgcvs Exp $ */
  2. /*
  3. Copyright 1993, 1998  The Open Group
  4. Permission to use, copy, modify, distribute, and sell this software and its
  5. documentation for any purpose is hereby granted without fee, provided that
  6. the above copyright notice appear in all copies and that both that
  7. copyright notice and this permission notice appear in supporting
  8. documentation.
  9. The above copyright notice and this permission notice shall be included
  10. in all copies or substantial portions of the Software.
  11. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
  12. OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  13. MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
  14. IN NO EVENT SHALL THE OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR
  15. OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
  16. ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
  17. OTHER DEALINGS IN THE SOFTWARE.
  18. Except as contained in this notice, the name of The Open Group shall
  19. not be used in advertising or otherwise to promote the sale, use or
  20. other dealings in this Software without prior written authorization
  21. from The Open Group.
  22. */
  23. /* $XFree86: xc/lib/font/include/bufio.h,v 1.6 2001/07/31 16:44:55 alanh Exp $ */
  24. #ifndef ___BUFIO_H___
  25. #define ___BUFIO_H___ 1
  26. #include <X11/Xfuncproto.h>
  27. #ifdef TEST
  28. #define xalloc(s)   malloc(s)
  29. #define xfree(s)    free(s)
  30. #endif
  31. #define BUFFILESIZE 8192
  32. #define BUFFILEEOF -1
  33. typedef unsigned char BufChar;
  34. typedef struct _buffile *BufFilePtr;
  35. typedef struct _buffile {
  36.     BufChar *bufp;
  37.     int     left;
  38.     int     eof;
  39.     BufChar buffer[BUFFILESIZE];
  40.     int     (*input)( BufFilePtr /* f */);
  41.     int     (*output)( int /* c */, BufFilePtr /* f */);
  42.     int     (*skip)( BufFilePtr /* f */, int /* count */);
  43.     int     (*close)( BufFilePtr /* f */, int /* doClose */);
  44.     char    *private;
  45. } BufFileRec;
  46. extern BufFilePtr BufFileCreate (
  47.     char*,
  48.     int (*)(BufFilePtr),
  49.     int (*)(int, BufFilePtr),
  50.     int (*)(BufFilePtr, int),
  51.     int (*)(BufFilePtr, int));
  52. extern BufFilePtr BufFileOpenRead ( int );
  53. extern BufFilePtr BufFileOpenWrite ( int );
  54. extern BufFilePtr BufFilePushCompressed ( BufFilePtr );
  55. #ifdef X_GZIP_FONT_COMPRESSION
  56. extern BufFilePtr BufFilePushZIP ( BufFilePtr );
  57. #endif
  58. #ifdef X_BZIP2_FONT_COMPRESSION
  59. extern BufFilePtr BufFilePushBZIP2 ( BufFilePtr );
  60. #endif
  61. extern int BufFileClose ( BufFilePtr, int );
  62. extern int BufFileRead ( BufFilePtr, char*, int );
  63. extern int BufFileWrite ( BufFilePtr, char*, int );
  64. #define BufFileGet(f) ((f)->left-- ? *(f)->bufp++ : ((f)->eof = (*(f)->input) (f)))
  65. #define BufFilePut(c,f) (--(f)->left ? *(f)->bufp++ = ((unsigned char)(c)) : (*(f)->output) ((unsigned char)(c),f))
  66. #define BufFileSkip(f,c)    ((f)->eof = (*(f)->skip) (f, c))
  67. #ifndef TRUE
  68. #define TRUE 1
  69. #endif
  70. #ifndef FALSE
  71. #define FALSE 0
  72. #endif
  73. #endif /* ___BUFIO_H___ */