fwupd/plugins/intel-spi/fu-efi-firmware-filesystem.h
Richard Hughes 276baf12f9 trivial: Rename spi to intel-spi as it's all Intel specific
If we need to export the EFI symbols into libfwupdplugin for other plugins we
can do that when we need them.
2021-03-20 12:24:27 +00:00

20 lines
480 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_FILESYSTEM (fu_efi_firmware_filesystem_get_type ())
G_DECLARE_DERIVABLE_TYPE (FuEfiFirmwareFilesystem, fu_efi_firmware_filesystem, FU, EFI_FIRMWARE_FILESYSTEM, FuFirmware)
struct _FuEfiFirmwareFilesystemClass
{
FuFirmwareClass parent_class;
};
FuFirmware *fu_efi_firmware_filesystem_new (void);