blob: f2de51c7513c91c1b97e9aff1f320dc7b05af9e4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#ifndef PRINTQDS_H_INCLUDED
/** Protection against multiple inclusion. */
#define PRINTQDS_H_INCLUDED 1
/** Maximum request length.
*/
#define PQD_INPUT_BUFFER_SIZE 512
/** Maximum response length.
*/
#define PQD_OUTPUT_BUFFER_SIZE 128
/** Size of configuration file line.
*/
#define PQD_CONFIG_BUFFER_SIZE (DK3_MAX_PATH + PQD_INPUT_BUFFER_SIZE)
#endif
|