aboutsummaryrefslogtreecommitdiff
path: root/lib/constants.h
blob: ee558f3a9ce0e245c61d077d158751913be17b1d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#ifndef CONSTANTS_H
#define CONSTANTS_H

#ifdef Q_OS_UNIX
#include "config.h"
#endif

#define VERSION "0.2.0"

#ifndef LIB_DIR
#define LIB_DIR "/lib"
#endif

const unsigned int historySize      = 100;
const unsigned int globalBlockSize  = 2 * 1024;    //2*1024
const unsigned int globalBufferSize = globalBlockSize * 32;
const unsigned int groupOpenTimeout = 750;

#endif // CONSTANTS_H