mirror of
https://git.proxmox.com/git/fwupd
synced 2025-05-11 04:47:32 +00:00
21 lines
384 B
C
21 lines
384 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
|
|
|
|
GVariant *fwupd_release_to_variant (FwupdRelease *release);
|
|
void fwupd_release_to_json (FwupdRelease *release,
|
|
JsonBuilder *builder);
|
|
|
|
G_END_DECLS
|