Mercurial > hg > minc-tools
annotate libsrc/minc_config.h @ 2679:c0a572a11ab9 default tip develop
Silence some warnings
author | Jordi Gutiérrez Hermoso <jordigh@octave.org> |
---|---|
date | Mon, 14 May 2012 17:37:56 -0400 |
parents | 8793cdffd21c |
children |
rev | line source |
---|---|
1751 | 1 #ifndef _MINC_CONFIG_H_ |
2 #define _MINC_CONFIG_H_ | |
3 | |
4 #define MICFG_FORCE_V2 "MINC_FORCE_V2" | |
5 #define MICFG_COMPRESS "MINC_COMPRESS" | |
6 #define MICFG_CHUNKING "MINC_CHUNKING" | |
7 #define MICFG_LOGFILE "MINC_LOGFILE" | |
8 #define MICFG_LOGLEVEL "MINC_LOGLEVEL" | |
2544
8793cdffd21c
* added new globals and ENV vars for more efficient memory use in voxel_loop
Andrew L Janke <a.janke@gmail.com>
parents:
2543
diff
changeset
|
9 #define MICFG_MAXBUF "MINC_MAX_FILE_BUFFER_KB" |
8793cdffd21c
* added new globals and ENV vars for more efficient memory use in voxel_loop
Andrew L Janke <a.janke@gmail.com>
parents:
2543
diff
changeset
|
10 #define MICFG_MAXMEM "MINC_MAX_MEMORY_KB" |
1751 | 11 |
12 extern int miget_cfg_bool(const char *); | |
13 extern int miget_cfg_int(const char *); | |
14 extern char * miget_cfg_str(const char *); | |
15 | |
16 #endif /* _MINC_CONFIG_H_ */ |