mirror of
https://git.proxmox.com/git/fwupd
synced 2025-05-16 06:09:14 +00:00

If we need to export the EFI symbols into libfwupdplugin for other plugins we can do that when we need them.
20 lines
450 B
C
20 lines
450 B
C
/*
|
|
* Copyright (C) 2021 Richard Hughes <richard@hughsie.com>
|
|
*
|
|
* SPDX-License-Identifier: LGPL-2.1+
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "fu-firmware.h"
|
|
|
|
#define FU_TYPE_EFI_FIRMWARE_VOLUME (fu_efi_firmware_volume_get_type ())
|
|
G_DECLARE_DERIVABLE_TYPE (FuEfiFirmwareVolume, fu_efi_firmware_volume, FU, EFI_FIRMWARE_VOLUME, FuFirmware)
|
|
|
|
struct _FuEfiFirmwareVolumeClass
|
|
{
|
|
FuFirmwareClass parent_class;
|
|
};
|
|
|
|
FuFirmware *fu_efi_firmware_volume_new (void);
|