fwupd/libfwupdplugin/fu-dfuse-firmware.h
Richard Hughes 98972f4a34 libfwupdplugin: Promote DfuFirmware to FuDfuseFirmware
Port the DFU plugin to use the new objects to make it act the same as all the
other plugins.
2021-02-01 19:34:28 +00:00

20 lines
428 B
C

/*
* Copyright (C) 2015 Richard Hughes <richard@hughsie.com>
*
* SPDX-License-Identifier: LGPL-2.1+
*/
#pragma once
#include "fu-dfu-firmware.h"
#define FU_TYPE_DFUSE_FIRMWARE (fu_dfuse_firmware_get_type ())
G_DECLARE_DERIVABLE_TYPE (FuDfuseFirmware, fu_dfuse_firmware, FU, DFUSE_FIRMWARE, FuDfuFirmware)
struct _FuDfuseFirmwareClass
{
FuDfuFirmwareClass parent_class;
};
FuFirmware *fu_dfuse_firmware_new (void);