mirror of
https://git.proxmox.com/git/fwupd
synced 2025-05-14 23:31:32 +00:00

Rather than wrapping every sync D-Bus call with a GTask helper (hundreds of additional lines of code and dozens of new entrypoints in libfwupd) I think it is best for client software wanting async operation just uses the D-Bus interface. I consider it part of the API as much as the shared library and I don't see it changing in a non-compatible way any time soon. Exposing these already-exported symbols allows client software to use the demarshalling functionality and to operate on the GObjects directly from an existing GDBus async return value.
22 lines
385 B
C
22 lines
385 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
|
|
|