de7b750728
Takes a GVariant returned by the daemon's various "PkgDiff" methods.
61 lines
2.3 KiB
C
61 lines
2.3 KiB
C
/* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*-
|
|
*
|
|
* 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 of the licence 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, write to the
|
|
* Free Software Foundation, Inc., 59 Temple Place, Suite 330,
|
|
* Boston, MA 02111-1307, USA.
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <glib-unix.h>
|
|
#include <gio/gio.h>
|
|
|
|
#include "rpm-ostreed-generated.h"
|
|
|
|
#include <stdint.h>
|
|
#include <string.h>
|
|
#include <ostree.h>
|
|
|
|
#define BUS_NAME "org.projectatomic.rpmostree1"
|
|
|
|
void
|
|
rpmostree_cleanup_peer (void);
|
|
|
|
gboolean
|
|
rpmostree_load_sysroot (gchar *sysroot,
|
|
gboolean force_peer,
|
|
GCancellable *cancellable,
|
|
RPMOSTreeSysroot **out_sysroot_proxy,
|
|
GError **error);
|
|
|
|
gboolean
|
|
rpmostree_load_os_proxy (RPMOSTreeSysroot *sysroot_proxy,
|
|
gchar *opt_osname,
|
|
GCancellable *cancellable,
|
|
RPMOSTreeOS **out_os_proxy,
|
|
GError **error);
|
|
|
|
gboolean
|
|
rpmostree_transaction_get_response_sync (RPMOSTreeSysroot *sysroot_proxy,
|
|
const char *transaction_address,
|
|
GCancellable *cancellable,
|
|
GError **error);
|
|
|
|
void
|
|
rpmostree_print_signatures (GVariant *variant,
|
|
const gchar *sep);
|
|
|
|
void
|
|
rpmostree_print_package_diffs (GVariant *variant);
|