JINCLUDE.h
上传用户:cjw5120
上传日期:2022-05-11
资源大小:5032k
文件大小:4k
源码类别:

网络截获/分析

开发平台:

Visual C++

  1. ////////////////////////////////////////////////////////////////////////
  2. //
  3. // Note : this file is included as part of the Smaller Animals Software
  4. // JpegFile package. Though this file has not been modified from it's 
  5. // original IJG 6a form, it is not the responsibility on the Independent
  6. // JPEG Group to answer questions regarding this code.
  7. //
  8. // Any questions you have about this code should be addressed to :
  9. //
  10. // CHRISDL@PAGESZ.NET - the distributor of this package.
  11. //
  12. // Remember, by including this code in the JpegFile package, Smaller 
  13. // Animals Software assumes all responsibilities for answering questions
  14. // about it. If we (SA Software) can't answer your questions ourselves, we 
  15. // will direct you to people who can.
  16. //
  17. // Thanks, CDL.
  18. //
  19. ////////////////////////////////////////////////////////////////////////
  20. /*
  21.  * jinclude.h
  22.  *
  23.  * Copyright (C) 1991-1994, Thomas G. Lane.
  24.  * This file is part of the Independent JPEG Group's software.
  25.  * For conditions of distribution and use, see the accompanying README file.
  26.  *
  27.  * This file exists to provide a single place to fix any problems with
  28.  * including the wrong system include files.  (Common problems are taken
  29.  * care of by the standard jconfig symbols, but on really weird systems
  30.  * you may have to edit this file.)
  31.  *
  32.  * NOTE: this file is NOT intended to be included by applications using the
  33.  * JPEG library.  Most applications need only include jpeglib.h.
  34.  */
  35. /* Include auto-config file to find out which system include files we need. */
  36. #include "jconfig.h" /* auto configuration options */
  37. #define JCONFIG_INCLUDED /* so that jpeglib.h doesn't do it again */
  38. /*
  39.  * We need the NULL macro and size_t typedef.
  40.  * On an ANSI-conforming system it is sufficient to include <stddef.h>.
  41.  * Otherwise, we get them from <stdlib.h> or <stdio.h>; we may have to
  42.  * pull in <sys/types.h> as well.
  43.  * Note that the core JPEG library does not require <stdio.h>;
  44.  * only the default error handler and data source/destination modules do.
  45.  * But we must pull it in because of the references to FILE in jpeglib.h.
  46.  * You can remove those references if you want to compile without <stdio.h>.
  47.  */
  48. #ifdef HAVE_STDDEF_H
  49. #include <stddef.h>
  50. #endif
  51. #ifdef HAVE_STDLIB_H
  52. #include <stdlib.h>
  53. #endif
  54. #ifdef NEED_SYS_TYPES_H
  55. #include <sys/types.h>
  56. #endif
  57. #include <stdio.h>
  58. /*
  59.  * We need memory copying and zeroing functions, plus strncpy().
  60.  * ANSI and System V implementations declare these in <string.h>.
  61.  * BSD doesn't have the mem() functions, but it does have bcopy()/bzero().
  62.  * Some systems may declare memset and memcpy in <memory.h>.
  63.  *
  64.  * NOTE: we assume the size parameters to these functions are of type size_t.
  65.  * Change the casts in these macros if not!
  66.  */
  67. #ifdef NEED_BSD_STRINGS
  68. #include <strings.h>
  69. #define MEMZERO(target,size) bzero((void *)(target), (size_t)(size))
  70. #define MEMCOPY(dest,src,size) bcopy((const void *)(src), (void *)(dest), (size_t)(size))
  71. #else /* not BSD, assume ANSI/SysV string lib */
  72. #include <string.h>
  73. #define MEMZERO(target,size) memset((void *)(target), 0, (size_t)(size))
  74. #define MEMCOPY(dest,src,size) memcpy((void *)(dest), (const void *)(src), (size_t)(size))
  75. #endif
  76. /*
  77.  * In ANSI C, and indeed any rational implementation, size_t is also the
  78.  * type returned by sizeof().  However, it seems there are some irrational
  79.  * implementations out there, in which sizeof() returns an int even though
  80.  * size_t is defined as long or unsigned long.  To ensure consistent results
  81.  * we always use this SIZEOF() macro in place of using sizeof() directly.
  82.  */
  83. #define SIZEOF(object) ((size_t) sizeof(object))
  84. /*
  85.  * The modules that use fread() and fwrite() always invoke them through
  86.  * these macros.  On some systems you may need to twiddle the argument casts.
  87.  * CAUTION: argument order is different from underlying functions!
  88.  */
  89. #define JFREAD(file,buf,sizeofbuf)  
  90.   ((size_t) fread((void *) (buf), (size_t) 1, (size_t) (sizeofbuf), (file)))
  91. #define JFWRITE(file,buf,sizeofbuf)  
  92.   ((size_t) fwrite((const void *) (buf), (size_t) 1, (size_t) (sizeofbuf), (file)))