mirror of
https://git.proxmox.com/git/fwupd
synced 2025-05-02 21:01:53 +00:00
21 lines
411 B
C
21 lines
411 B
C
/*
|
|
* Copyright (C) 2016 Richard Hughes <richard@hughsie.com>
|
|
*
|
|
* SPDX-License-Identifier: LGPL-2.1+
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <fwupdplugin.h>
|
|
|
|
#define FU_TYPE_STEELSERIES_DEVICE (fu_steelseries_device_get_type())
|
|
G_DECLARE_DERIVABLE_TYPE(FuSteelseriesDevice,
|
|
fu_steelseries_device,
|
|
FU,
|
|
STEELSERIES_DEVICE,
|
|
FuUsbDevice)
|
|
|
|
struct _FuSteelseriesDeviceClass {
|
|
FuUsbDeviceClass parent_class;
|
|
};
|