mirror of
https://git.proxmox.com/git/fwupd
synced 2025-05-18 00:31:54 +00:00

This feature is turned on with the new fwupdtool option `--enable-json-state` The intended use case is for ChromeOS to be able to save information about devices on the system when `fwupdtool update` was run to display in the UX at a later time.
23 lines
445 B
C
23 lines
445 B
C
/*
|
|
* Copyright (C) 2017 Richard Hughes <richard@hughsie.com>
|
|
*
|
|
* SPDX-License-Identifier: LGPL-2.1+
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <glib-object.h>
|
|
#include <json-glib/json-glib.h>
|
|
|
|
#include "fwupd-release.h"
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
FwupdRelease *fwupd_release_from_variant (GVariant *data);
|
|
GVariant *fwupd_release_to_variant (FwupdRelease *release);
|
|
void fwupd_release_to_json (FwupdRelease *release,
|
|
JsonBuilder *builder);
|
|
|
|
G_END_DECLS
|
|
|