Blame src/goabackend/goaewsclient.h

Packit Service c6b9b0
/* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */
Packit Service c6b9b0
/*
Packit Service c6b9b0
 * Copyright © 2012 – 2017 Red Hat, Inc.
Packit Service c6b9b0
 *
Packit Service c6b9b0
 * This library is free software; you can redistribute it and/or
Packit Service c6b9b0
 * modify it under the terms of the GNU Lesser General Public
Packit Service c6b9b0
 * License as published by the Free Software Foundation; either
Packit Service c6b9b0
 * version 2 of the License, or (at your option) any later version.
Packit Service c6b9b0
 *
Packit Service c6b9b0
 * This library is distributed in the hope that it will be useful,
Packit Service c6b9b0
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit Service c6b9b0
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Packit Service c6b9b0
 * Lesser General Public License for more details.
Packit Service c6b9b0
 *
Packit Service c6b9b0
 * You should have received a copy of the GNU Lesser General
Packit Service c6b9b0
 * Public License along with this library; if not, see <http://www.gnu.org/licenses/>.
Packit Service c6b9b0
 */
Packit Service c6b9b0
Packit Service c6b9b0
#if !defined (__GOA_BACKEND_INSIDE_GOA_BACKEND_H__) && !defined (GOA_BACKEND_COMPILATION)
Packit Service c6b9b0
#error "Only <goabackend/goabackend.h> can be included directly."
Packit Service c6b9b0
#endif
Packit Service c6b9b0
Packit Service c6b9b0
#ifndef __GOA_EWS_CLIENT_H__
Packit Service c6b9b0
#define __GOA_EWS_CLIENT_H__
Packit Service c6b9b0
Packit Service c6b9b0
#include <gio/gio.h>
Packit Service c6b9b0
#include <glib.h>
Packit Service c6b9b0
#include <glib-object.h>
Packit Service c6b9b0
Packit Service c6b9b0
G_BEGIN_DECLS
Packit Service c6b9b0
Packit Service c6b9b0
#define GOA_TYPE_EWS_CLIENT (goa_ews_client_get_type ())
Packit Service c6b9b0
G_DECLARE_FINAL_TYPE (GoaEwsClient, goa_ews_client, GOA, EWS_CLIENT, GObject);
Packit Service c6b9b0
Packit Service c6b9b0
GoaEwsClient   *goa_ews_client_new                 (void);
Packit Service c6b9b0
void            goa_ews_client_autodiscover        (GoaEwsClient        *self,
Packit Service c6b9b0
                                                    const gchar         *email,
Packit Service c6b9b0
                                                    const gchar         *password,
Packit Service c6b9b0
                                                    const gchar         *username,
Packit Service c6b9b0
                                                    const gchar         *server,
Packit Service c6b9b0
                                                    gboolean             accept_ssl_errors,
Packit Service c6b9b0
                                                    GCancellable        *cancellable,
Packit Service c6b9b0
                                                    GAsyncReadyCallback  callback,
Packit Service c6b9b0
                                                    gpointer             gpointer);
Packit Service c6b9b0
gboolean        goa_ews_client_autodiscover_finish (GoaEwsClient        *self,
Packit Service c6b9b0
                                                    GAsyncResult        *res,
Packit Service c6b9b0
                                                    GError             **error);
Packit Service c6b9b0
gboolean        goa_ews_client_autodiscover_sync   (GoaEwsClient        *self,
Packit Service c6b9b0
                                                    const gchar         *email,
Packit Service c6b9b0
                                                    const gchar         *password,
Packit Service c6b9b0
                                                    const gchar         *username,
Packit Service c6b9b0
                                                    const gchar         *server,
Packit Service c6b9b0
                                                    gboolean             accept_ssl_errors,
Packit Service c6b9b0
                                                    GCancellable        *cancellable,
Packit Service c6b9b0
                                                    GError             **error);
Packit Service c6b9b0
Packit Service c6b9b0
G_END_DECLS
Packit Service c6b9b0
Packit Service c6b9b0
#endif /* __GOA_EWS_CLIENT_H__ */