3dphotoshoot

annotate libs/libjpeg/jinclude.h @ 17:aef7f51f6397

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