mirror of
https://git.proxmox.com/git/fwupd
synced 2025-05-25 21:05:42 +00:00

We can use these in the future elantp plugin, and I'm sure we'll need them again in the future for an *actual* CFU plugin.
20 lines
391 B
C
20 lines
391 B
C
/*
|
|
* Copyright (C) 2021 Richard Hughes <richard@hughsie.com>
|
|
*
|
|
* SPDX-License-Identifier: LGPL-2.1+
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "fu-firmware.h"
|
|
|
|
#define FU_TYPE_CFU_PAYLOAD (fu_cfu_payload_get_type())
|
|
G_DECLARE_DERIVABLE_TYPE(FuCfuPayload, fu_cfu_payload, FU, CFU_PAYLOAD, FuFirmware)
|
|
|
|
struct _FuCfuPayloadClass {
|
|
FuFirmwareClass parent_class;
|
|
};
|
|
|
|
FuFirmware *
|
|
fu_cfu_payload_new(void);
|