Doxygen Source Code Documentation
win32cfg.h File Reference
#include <stddef.h>
Go to the source code of this file.
Defines | |
#define | PACKAGE "gifsicle" |
#define | VERSION "1.25 (Windows)" |
#define | RANDOM rand |
#define | PATHNAME_SEPARATOR '\\' |
#define | popen _popen |
#define | pclose _pclose |
#define | inline __inline |
#define | X_DISPLAY_MISSING 1 |
#define | HAVE_STRERROR 1 |
#define | HAVE_STRTOUL 1 |
#define | xmalloc(s) fail_die_malloc((s),__FILE__,__LINE__) |
#define | xrealloc(p, s) fail_die_realloc((p),(s),__FILE__,__LINE__) |
#define | xfree free |
Typedefs | |
typedef unsigned __int16 | u_int16_t |
typedef unsigned __int32 | u_int32_t |
typedef signed __int16 | int16_t |
typedef signed __int32 | int32_t |
Functions | |
void * | fail_die_malloc (size_t, const char *, int) |
void * | fail_die_realloc (void *, size_t, const char *, int) |
Define Documentation
|
Definition at line 48 of file win32cfg.h. |
|
Definition at line 51 of file win32cfg.h. |
|
Definition at line 41 of file win32cfg.h. |
|
Definition at line 7 of file win32cfg.h. |
|
Definition at line 26 of file win32cfg.h. |
|
Definition at line 33 of file win32cfg.h. Referenced by AFNI_misc_CB(), COMPRESS_fclose(), ISQ_save_jpeg(), ISQ_saver_CB(), JPEG_matrix_gray(), main(), mri_read_stuff(), mri_write_angif(), mri_write_jpg(), pipe_color_transformer(), proc_finalize_shm_volumes(), ps_closepl(), qhull_wrap(), RT_acquire_info(), RT_get_3T_info(), SUMA_qhull_wrap(), and THD_write_minc(). |
|
Definition at line 32 of file win32cfg.h. Referenced by AFNI_misc_CB(), COMPRESS_fopen_read(), COMPRESS_fopen_write(), ISQ_save_jpeg(), ISQ_saver_CB(), JPEG_matrix_gray(), main(), mri_read_stuff(), mri_write_angif(), mri_write_jpg(), pipe_color_transformer(), proc_finalize_shm_volumes(), ps_openpl(), qhull_wrap(), RT_acquire_info(), RT_get_3T_info(), SUMA_qhull_wrap(), and THD_write_minc(). |
|
Definition at line 14 of file win32cfg.h. |
|
Definition at line 8 of file win32cfg.h. |
|
Definition at line 45 of file win32cfg.h. |
|
Definition at line 70 of file win32cfg.h. |
|
Definition at line 68 of file win32cfg.h. |
|
Definition at line 69 of file win32cfg.h. |
Typedef Documentation
|
Definition at line 22 of file win32cfg.h. |
|
Definition at line 23 of file win32cfg.h. |
|
|
Function Documentation
|
Definition at line 20 of file fmalloc.c. References fail_die_malloc_die(), file, malloc, and p. Referenced by fail_die_realloc().
|
|
Definition at line 29 of file fmalloc.c. References fail_die_malloc(), fail_die_malloc_die(), file, p, and realloc.
00030 { 00031 if (!p) 00032 return fail_die_malloc(size, file, line); 00033 p = realloc(p, size); 00034 if (!p && size) 00035 fail_die_malloc_die(size, file, line); 00036 return p; 00037 } |