1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
|
/*
* Printing backend for the build farm
*
* Copyright (C) Volker Lendecke 2006
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, see <http://www.gnu.org/licenses/>.
*/
#include "includes.h"
#include "printing.h"
#if defined(DEVELOPER) || defined(ENABLE_BUILD_FARM_HACKS)
static int test_queue_get(const char *printer_name,
enum printing_types printing_type,
char *lpq_command,
print_queue_struct **q,
print_status_struct *status)
{
return -1;
}
static int test_queue_pause(int snum)
{
return -1;
}
static int test_queue_resume(int snum)
{
return -1;
}
static int test_job_delete(const char *sharename, const char *lprm_command,
struct printjob *pjob)
{
return -1;
}
static int test_job_pause(int snum, struct printjob *pjob)
{
return -1;
}
static int test_job_resume(int snum, struct printjob *pjob)
{
return -1;
}
static int test_job_submit(int snum, struct printjob *pjob)
{
return -1;
};
struct printif test_printif =
{
PRINT_TEST,
test_queue_get,
test_queue_pause,
test_queue_resume,
test_job_delete,
test_job_pause,
test_job_resume,
test_job_submit,
};
#else
/* this keeps fussy compilers happy */
void print_test_dummy(void);
void print_test_dummy(void) {}
#endif /* DEVELOPER||ENABLE_BUILD_FARM_HACKS */
|