s3-printing: Added a printer list database.
[Samba.git] / source3 / printing / printer_list.h
blob5772fbaaa33dac08ccf0c74be705293350881ffa
1 /*
2 Unix SMB/CIFS implementation.
3 Share Database of available printers.
4 Copyright (C) Simo Sorce 2010
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 3 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program. If not, see <http://www.gnu.org/licenses/>.
20 #ifndef _PRINTER_LIST_H_
21 #define _PRINTER_LIST_H_
23 bool printer_list_parent_init(void);
25 NTSTATUS printer_list_get_printer(TALLOC_CTX *mem_ctx,
26 const char *name,
27 const char **comment,
28 time_t *last_refresh);
30 NTSTATUS printer_list_set_printer(TALLOC_CTX *mem_ctx,
31 const char *name,
32 const char *comment,
33 time_t last_refresh);
35 NTSTATUS printer_list_get_last_refresh(time_t *last_refresh);
36 NTSTATUS printer_list_mark_reload(void);
37 NTSTATUS printer_list_clean_old(void);
39 NTSTATUS printer_list_run_fn(void (*fn)(const char *, const char *, void *),
40 void *private_data);
42 #endif /* _PRINTER_LIST_H_ */