blob: ee558f3a9ce0e245c61d077d158751913be17b1d (
plain) (
tree)
|
|
#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
|