mirror of
https://git.proxmox.com/git/fwupd
synced 2025-05-25 22:40:50 +00:00
16 lines
373 B
C
16 lines
373 B
C
/*
|
|
* Copyright (C) 2021 Xiaotian Cui <xtcui@analogixsemi.com>
|
|
*
|
|
* SPDX-License-Identifier: LGPL-2.1+
|
|
*/
|
|
#pragma once
|
|
|
|
#include <fwupdplugin.h>
|
|
|
|
#define FU_TYPE_ANALOGIX_DEVICE (fu_analogix_device_get_type())
|
|
G_DECLARE_FINAL_TYPE(FuAnalogixDevice, fu_analogix_device, FU, ANALOGIX_DEVICE, FuUsbDevice)
|
|
|
|
struct _FuAnalogixDeviceClass {
|
|
FuUsbDeviceClass parent_class;
|
|
};
|