Files
flatpak/common/flatpak.h
Alexander Larsson efb92704fe Merge lib/* into common
This moves all the files from lib into common, and it also adds all the libflatpak
sources into libflatpak-common, making libflatpak just a wrapper around the common
helper library.

This move allows the CLI to use all the code from libflatpak. We were already doing
this with a few things like flatpak-error*.[ch], and we want to do it even more
when sharing FlatpakTransaction. This also allows use to slowly move
the CLI to using the libflatpak apis for some things.

Closes: #1706
Approved by: alexlarsson
2018-05-24 11:59:52 +00:00

42 lines
1.2 KiB
C

/*
* Copyright © 2015 Red Hat, Inc
*
* This program 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.1 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/>.
*
* Authors:
* Alexander Larsson <alexl@redhat.com>
*/
#ifndef __FLATPAK_H__
#define __FLATPAK_H__
#define __FLATPAK_H_INSIDE__
#include <gio/gio.h>
#include <flatpak-version-macros.h>
#include <flatpak-enum-types.h>
#include <flatpak-error.h>
#include <flatpak-ref.h>
#include <flatpak-installed-ref.h>
#include <flatpak-remote-ref.h>
#include <flatpak-related-ref.h>
#include <flatpak-bundle-ref.h>
#include <flatpak-remote.h>
#include <flatpak-installation.h>
#undef __FLATPAK_H_INSIDE__
#endif /* __FLATPAK_H__ */