mirror of
https://git.proxmox.com/git/fwupd
synced 2025-05-02 13:38:32 +00:00

Based on a patch by Ilias Apalodimas <ilias.apalodimas@linaro.org>, many thanks. Fixes https://github.com/fwupd/fwupd/issues/2900
19 lines
402 B
C
19 lines
402 B
C
/*
|
|
* Copyright (C) 2019 Richard Hughes <richard@hughsie.com>
|
|
*
|
|
* SPDX-License-Identifier: LGPL-2.1+
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <fwupdplugin.h>
|
|
|
|
#include "fu-uefi-device.h"
|
|
|
|
#define FU_TYPE_UEFI_COD_DEVICE (fu_uefi_cod_device_get_type())
|
|
G_DECLARE_FINAL_TYPE(FuUefiCodDevice, fu_uefi_cod_device, FU, UEFI_COD_DEVICE, FuUefiDevice)
|
|
|
|
struct _FuUefiCodDeviceClass {
|
|
FuUefiDeviceClass parent_class;
|
|
};
|