mirror of
https://git.proxmox.com/git/fwupd
synced 2025-05-13 09:04:03 +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.
26 lines
555 B
C
26 lines
555 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-device.h"
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
GVariant *fwupd_device_to_variant (FwupdDevice *device);
|
|
GVariant *fwupd_device_to_variant_full (FwupdDevice *device,
|
|
FwupdDeviceFlags flags);
|
|
void fwupd_device_incorporate (FwupdDevice *self,
|
|
FwupdDevice *donor);
|
|
void fwupd_device_to_json (FwupdDevice *device,
|
|
JsonBuilder *builder);
|
|
|
|
G_END_DECLS
|
|
|