fwupd/libfwupdplugin/fu-efi-firmware-section.h
Richard Hughes 488f2e1f37 Export the EFI and IFD parsers
We'll need to use this from another plugin soon.
2021-07-12 10:33:38 +01:00

20 lines
458 B
C

/*
* Copyright (C) 2020 Richard Hughes <richard@hughsie.com>
*
* SPDX-License-Identifier: LGPL-2.1+
*/
#pragma once
#include <fwupdplugin.h>
#define FU_TYPE_EFI_FIRMWARE_SECTION (fu_efi_firmware_section_get_type ())
G_DECLARE_DERIVABLE_TYPE (FuEfiFirmwareSection, fu_efi_firmware_section, FU, EFI_FIRMWARE_SECTION, FuFirmware)
struct _FuEfiFirmwareSectionClass
{
FuFirmwareClass parent_class;
};
FuFirmware *fu_efi_firmware_section_new (void);