]> git.ipfire.org Git - thirdparty/cups.git/blame - cups/adminutil.h
Update ipp documentation to reflect the behavior of configuring WiFi on IPP USB printers.
[thirdparty/cups.git] / cups / adminutil.h
CommitLineData
757d2cad 1/*
503b54c9 2 * Administration utility API definitions for CUPS.
757d2cad 3 *
e7a78c92 4 * Copyright 2007-2016 by Apple Inc.
503b54c9 5 * Copyright 2001-2007 by Easy Software Products.
757d2cad 6 *
e3101897 7 * Licensed under Apache License v2.0. See the file "LICENSE" for more information.
757d2cad 8 */
9
10#ifndef _CUPS_ADMINUTIL_H_
11# define _CUPS_ADMINUTIL_H_
12
13/*
14 * Include necessary headers...
15 */
16
aaf19ab0 17# include <stdio.h>
757d2cad 18# include "cups.h"
19
20
21/*
22 * C++ magic...
23 */
24
25# ifdef __cplusplus
26extern "C" {
27# endif /* __cplusplus */
28
29
30/*
31 * Constants...
32 */
33
34# define CUPS_SERVER_DEBUG_LOGGING "_debug_logging"
35# define CUPS_SERVER_REMOTE_ADMIN "_remote_admin"
f7deaa1a 36# define CUPS_SERVER_REMOTE_ANY "_remote_any"
757d2cad 37# define CUPS_SERVER_SHARE_PRINTERS "_share_printers"
38# define CUPS_SERVER_USER_CANCEL_ANY "_user_cancel_any"
39
40
e7a78c92
MS
41/*
42 * Types and structures...
43 */
44
45typedef void (*cups_device_cb_t)(const char *device_class,
46 const char *device_id, const char *device_info,
47 const char *device_make_and_model,
48 const char *device_uri,
49 const char *device_location, void *user_data);
50 /* Device callback
8072030b 51 * @since CUPS 1.4/macOS 10.6@ */
e7a78c92
MS
52
53
757d2cad 54/*
55 * Functions...
56 */
57
58extern int cupsAdminExportSamba(const char *dest, const char *ppd,
59 const char *samba_server,
60 const char *samba_user,
61 const char *samba_password,
5a9febac 62 FILE *logfile) _CUPS_DEPRECATED;
757d2cad 63extern char *cupsAdminCreateWindowsPPD(http_t *http, const char *dest,
5a9febac
MS
64 char *buffer, int bufsize)
65 _CUPS_DEPRECATED;
757d2cad 66
f899b121 67extern int cupsAdminGetServerSettings(http_t *http,
68 int *num_settings,
5a9febac
MS
69 cups_option_t **settings)
70 _CUPS_API_1_3;
f899b121 71extern int cupsAdminSetServerSettings(http_t *http,
72 int num_settings,
5a9febac
MS
73 cups_option_t *settings)
74 _CUPS_API_1_3;
757d2cad 75
e7a78c92
MS
76extern ipp_status_t cupsGetDevices(http_t *http, int timeout,
77 const char *include_schemes,
78 const char *exclude_schemes,
79 cups_device_cb_t callback,
06a5a4d3 80 void *user_data) _CUPS_DEPRECATED;
e7a78c92 81
757d2cad 82
83# ifdef __cplusplus
84}
85# endif /* __cplusplus */
86
87#endif /* !_CUPS_ADMINUTIL_H_ */