File: minc_config.h

package info (click to toggle)
minc 2.2.00-6
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 8,624 kB
  • ctags: 8,493
  • sloc: ansic: 84,952; sh: 10,666; yacc: 1,187; makefile: 635; perl: 555; lex: 319; cpp: 69
file content (16 lines) | stat: -rw-r--r-- 491 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef _MINC_CONFIG_H_
#define _MINC_CONFIG_H_

#define MICFG_FORCE_V2 "MINC_FORCE_V2"
#define MICFG_COMPRESS "MINC_COMPRESS"
#define MICFG_CHUNKING "MINC_CHUNKING"
#define MICFG_LOGFILE  "MINC_LOGFILE"
#define MICFG_LOGLEVEL "MINC_LOGLEVEL"
#define MICFG_MAXBUF   "MINC_MAX_FILE_BUFFER_KB"
#define MICFG_MAXMEM   "MINC_MAX_MEMORY_KB"

extern int miget_cfg_bool(const char *);
extern int miget_cfg_int(const char *);
extern char * miget_cfg_str(const char *);

#endif /* _MINC_CONFIG_H_ */