mirror of
https://git.proxmox.com/git/fwupd
synced 2025-06-12 21:10:02 +00:00
22 lines
427 B
C
22 lines
427 B
C
/*
|
|
* SPDX-License-Identifier: LGPL-2.1+
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <fwupdplugin.h>
|
|
|
|
#include "fu-redfish-backend.h"
|
|
#include "fu-redfish-device.h"
|
|
|
|
#define FU_TYPE_REDFISH_SMC_DEVICE (fu_redfish_smc_device_get_type())
|
|
G_DECLARE_FINAL_TYPE(FuRedfishSmcDevice,
|
|
fu_redfish_smc_device,
|
|
FU,
|
|
REDFISH_SMC_DEVICE,
|
|
FuRedfishDevice)
|
|
|
|
struct _FuRedfishSmcDeviceClass {
|
|
FuRedfishDeviceClass parent_class;
|
|
};
|