mirror of
https://git.proxmox.com/git/fwupd
synced 2025-06-06 02:19:36 +00:00

We can implement firmware->build and firmware->write and then use the shared firmware.builder.xml functionality.
15 lines
393 B
C
15 lines
393 B
C
/*
|
|
* Copyright (C) 2019 Richard Hughes <richard@hughsie.com>
|
|
*
|
|
* SPDX-License-Identifier: LGPL-2.1+
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "fu-firmware.h"
|
|
|
|
#define FU_TYPE_SYNAPTICS_RMI_FIRMWARE (fu_synaptics_rmi_firmware_get_type ())
|
|
G_DECLARE_FINAL_TYPE (FuSynapticsRmiFirmware, fu_synaptics_rmi_firmware, FU, SYNAPTICS_RMI_FIRMWARE, FuFirmware)
|
|
|
|
FuFirmware *fu_synaptics_rmi_firmware_new (void);
|