mirror of
https://git.proxmox.com/git/fwupd
synced 2025-05-18 03:09:07 +00:00

Until now, the unifying plugin was a 'special snowflake' and did things in very different ways to the other plugins. Refactor each object to derive from either FuUsbDevice or FuUdevDevice, and then remove LuDevice and the LuContext layers.
20 lines
525 B
C
20 lines
525 B
C
/*
|
|
* Copyright (C) 2016-2018 Richard Hughes <richard@hughsie.com>
|
|
*
|
|
* SPDX-License-Identifier: LGPL-2.1+
|
|
*/
|
|
|
|
#ifndef __FU_UNIFYING_BOOTLOADER_TEXAS_H
|
|
#define __FU_UNIFYING_BOOTLOADER_TEXAS_H
|
|
|
|
#include "fu-unifying-bootloader.h"
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
#define FU_TYPE_UNIFYING_BOOTLOADER_TEXAS (fu_unifying_bootloader_texas_get_type ())
|
|
G_DECLARE_FINAL_TYPE (FuUnifyingBootloaderTexas, fu_unifying_bootloader_texas, FU, UNIFYING_BOOTLOADER_TEXAS, FuUnifyingBootloader)
|
|
|
|
G_END_DECLS
|
|
|
|
#endif /* __FU_UNIFYING_BOOTLOADER_TEXAS_H */
|