blob: 2d49ffda62651220dbcb10df3d00272a04cefd89 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#ifndef CONSTANTS_H_
#define CONSTANTS_H_
#define APP_NAME "Hinata"
#define MAX_VALUE 100
#define MAX_THREAD 6
#define MAX_THREAD_SIZE 10485760
#define CEIL_DIV(a, b) (((a) + (b)-1) / (b))
#define MAX(x, y) ((x) > (y)) ? (x) : (y)
#ifdef _WIN32
#define SPLITTER_CHAR '\\'
#define SPLITTER_STR "\\"
#else
#define SPLITTER_CHAR '/'
#define SPLITTER_STR "/"
#endif
#endif
|