Blame libsoup/soup-request-file.h

rpm-build 4f3c61
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
rpm-build 4f3c61
/*
rpm-build 4f3c61
 * Copyright (C) 2009, 2010 Red Hat, Inc.
rpm-build 4f3c61
 * Copyright (C) 2010 Igalia, S.L.
rpm-build 4f3c61
 *
rpm-build 4f3c61
 * This library is free software; you can redistribute it and/or
rpm-build 4f3c61
 * modify it under the terms of the GNU Library General Public
rpm-build 4f3c61
 * License as published by the Free Software Foundation; either
rpm-build 4f3c61
 * version 2 of the License, or (at your option) any later version.
rpm-build 4f3c61
 *
rpm-build 4f3c61
 * This library is distributed in the hope that it will be useful,
rpm-build 4f3c61
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
rpm-build 4f3c61
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
rpm-build 4f3c61
 * Library General Public License for more details.
rpm-build 4f3c61
 *
rpm-build 4f3c61
 * You should have received a copy of the GNU Library General Public License
rpm-build 4f3c61
 * along with this library; see the file COPYING.LIB.  If not, write to
rpm-build 4f3c61
 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
rpm-build 4f3c61
 * Boston, MA 02110-1301, USA.
rpm-build 4f3c61
 */
rpm-build 4f3c61
rpm-build 4f3c61
#ifndef SOUP_REQUEST_FILE_H
rpm-build 4f3c61
#define SOUP_REQUEST_FILE_H 1
rpm-build 4f3c61
rpm-build 4f3c61
#include "soup-request.h"
rpm-build 4f3c61
rpm-build 4f3c61
G_BEGIN_DECLS
rpm-build 4f3c61
rpm-build 4f3c61
#define SOUP_TYPE_REQUEST_FILE            (soup_request_file_get_type ())
rpm-build 4f3c61
#define SOUP_REQUEST_FILE(object)         (G_TYPE_CHECK_INSTANCE_CAST ((object), SOUP_TYPE_REQUEST_FILE, SoupRequestFile))
rpm-build 4f3c61
#define SOUP_REQUEST_FILE_CLASS(klass)    (G_TYPE_CHECK_CLASS_CAST ((klass), SOUP_TYPE_REQUEST_FILE, SoupRequestFileClass))
rpm-build 4f3c61
#define SOUP_IS_REQUEST_FILE(object)      (G_TYPE_CHECK_INSTANCE_TYPE ((object), SOUP_TYPE_REQUEST_FILE))
rpm-build 4f3c61
#define SOUP_IS_REQUEST_FILE_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), SOUP_TYPE_REQUEST_FILE))
rpm-build 4f3c61
#define SOUP_REQUEST_FILE_GET_CLASS(obj)  (G_TYPE_INSTANCE_GET_CLASS ((obj), SOUP_TYPE_REQUEST_FILE, SoupRequestFileClass))
rpm-build 4f3c61
rpm-build 4f3c61
typedef struct _SoupRequestFilePrivate SoupRequestFilePrivate;
rpm-build 4f3c61
rpm-build 4f3c61
typedef struct {
rpm-build 4f3c61
	SoupRequest parent;
rpm-build 4f3c61
rpm-build 4f3c61
	SoupRequestFilePrivate *priv;
rpm-build 4f3c61
} SoupRequestFile;
rpm-build 4f3c61
rpm-build 4f3c61
typedef struct {
rpm-build 4f3c61
	SoupRequestClass parent;
rpm-build 4f3c61
} SoupRequestFileClass;
rpm-build 4f3c61
rpm-build 4f3c61
SOUP_AVAILABLE_IN_2_34
rpm-build 4f3c61
GType  soup_request_file_get_type (void);
rpm-build 4f3c61
rpm-build 4f3c61
SOUP_AVAILABLE_IN_2_34
rpm-build 4f3c61
GFile *soup_request_file_get_file (SoupRequestFile *file);
rpm-build 4f3c61
rpm-build 4f3c61
G_END_DECLS
rpm-build 4f3c61
rpm-build 4f3c61
#endif /* SOUP_REQUEST_FILE_H */