Skip to content

AFNI/NIfTI Server

Sections
Personal tools
You are here: Home » AFNI » Documentation

Doxygen Source Code Documentation


Main Page   Alphabetical List   Data Structures   File List   Data Fields   Globals   Search  

win32cfg.h

Go to the documentation of this file.
00001 /* Hand-edited file based on config.h.in */
00002 /* config.h.in.  Generated automatically from configure.in by autoheader.  */
00003 #ifndef CONFIG_H
00004 #define CONFIG_H
00005 
00006 /* Package and version. */
00007 #define PACKAGE "gifsicle"
00008 #define VERSION "1.25 (Windows)"
00009 
00010 /* Define when using the debugging malloc library. */
00011 /* #undef DMALLOC */
00012 
00013 /* Define to a function that returns a random number. */
00014 #define RANDOM rand
00015 
00016 /* Define to the number of arguments to gettimeofday. (gifview only) */
00017 /* #undef GETTIMEOFDAY_PROTO */
00018 
00019 /* Get the [u_]int*_t typedefs. */
00020 typedef unsigned __int16 u_int16_t;
00021 typedef unsigned __int32 u_int32_t;
00022 typedef signed __int16 int16_t;
00023 typedef signed __int32 int32_t;
00024 
00025 /* Pathname separator character ('/' on Unix). */
00026 #define PATHNAME_SEPARATOR '\\'
00027 
00028 /* Define this to write GIFs to stdout even when stdout is a terminal. */
00029 /* #undef OUTPUT_GIF_TO_TERMINAL */
00030 
00031 /* Windows doesn't have popen, but it does have _popen. */
00032 #define popen _popen
00033 #define pclose _pclose
00034 
00035 
00036 /* Define to empty if the keyword does not work.  */
00037 /* #undef const */
00038 
00039 /* Define as __inline if that's what the C compiler calls it.  */
00040 #ifndef inline
00041 # define inline __inline
00042 #endif
00043 
00044 /* Define if the X Window System is missing or not being used.  */
00045 #define X_DISPLAY_MISSING 1
00046 
00047 /* Define if you have the strerror function.  */
00048 #define HAVE_STRERROR 1
00049 
00050 /* Define if you have the strtoul function.  */
00051 #define HAVE_STRTOUL 1
00052 
00053 /* Define if you have the <sys/select.h> header file.  */
00054 /* #undef HAVE_SYS_SELECT_H */
00055 
00056 #ifdef __cplusplus
00057 extern "C" {
00058 #endif
00059 
00060 /* Use either the clean-failing malloc library in fmalloc.c, or the debugging
00061    malloc library in dmalloc.c. */
00062 #ifdef DMALLOC
00063 # include "dmalloc.h"
00064 # define Gif_DeleteFunc         (&debug_free)
00065 # define Gif_DeleteArrayFunc    (&debug_free)
00066 #else
00067 # include <stddef.h>
00068 # define xmalloc(s)             fail_die_malloc((s),__FILE__,__LINE__)
00069 # define xrealloc(p,s)          fail_die_realloc((p),(s),__FILE__,__LINE__)
00070 # define xfree                  free
00071 void *fail_die_malloc(size_t, const char *, int);
00072 void *fail_die_realloc(void *, size_t, const char *, int);
00073 #endif
00074 
00075 /* Prototype strerror if we don't have it. */
00076 #ifndef HAVE_STRERROR
00077 char *strerror(int errno);
00078 #endif
00079 
00080 #ifdef __cplusplus
00081 }
00082 /* Get rid of a possible inline macro under C++. */
00083 # undef inline
00084 #endif
00085 #endif
 

Powered by Plone

This site conforms to the following standards: