mirror of
https://git.proxmox.com/git/fwupd
synced 2025-05-23 15:21:34 +00:00
20 lines
502 B
C
20 lines
502 B
C
/*
|
|
* Copyright (C) 2019-2020 Richard Hughes <richard@hughsie.com>
|
|
*
|
|
* SPDX-License-Identifier: LGPL-2.1+
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "fu-plugin.h"
|
|
|
|
#define FU_TYPE_VLI_USBHUB_RTD21XX_DEVICE (fu_vli_usbhub_rtd21xx_device_get_type ())
|
|
G_DECLARE_FINAL_TYPE (FuVliUsbhubRtd21xxDevice, fu_vli_usbhub_rtd21xx_device, FU, VLI_USBHUB_RTD21XX_DEVICE, FuDevice)
|
|
|
|
struct _FuVliUsbhubRtd21xxDeviceClass
|
|
{
|
|
FuDeviceClass parent_class;
|
|
};
|
|
|
|
FuDevice *fu_vli_usbhub_rtd21xx_device_new (FuVliUsbhubDevice *parent);
|