summaryrefslogtreecommitdiff
path: root/modules/printbackends/gtkcupssecretsutils.h
blob: e8fb07b143a42763e20e1b52e17e5ac46c50c343 (plain)
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
/* gtkcupssecretsutils.h: Helper to use a secrets service for printer passwords
 * Copyright (C) 2014 Intevation GmbH
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2 of the License, or (at your option) any later version.
 *
 * This library 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
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library. If not, see <http://www.gnu.org/licenses/>.
 */
#ifndef __GTK_SECRETS_UTILS_H__
#define __GTK_SECRETS_UTILS_H__

#include <glib.h>

#include "gtkcupsutils.h"

G_BEGIN_DECLS

void  gtk_cups_secrets_service_query_task (gpointer                   source_object,
                                           GCancellable              *cancellable,
                                           GAsyncReadyCallback        callback,
                                           gpointer                   user_data,
                                           const char                *printer_uri,
                                           char                     **auth_info_required);
guint gtk_cups_secrets_service_watch      (GBusNameAppearedCallback   appeared,
                                           GBusNameVanishedCallback   vanished,
                                           gpointer                   user_data);
void  gtk_cups_secrets_service_store      (char                     **auth_info,
                                           char                     **auth_info_labels,
                                           const char                *printer_uri);

G_END_DECLS

#endif /* __GTK_SECRETS_UTILS_H__ */