mirror of
https://git.proxmox.com/git/fwupd
synced 2025-05-15 16:19:52 +00:00

If we need to export the EFI symbols into libfwupdplugin for other plugins we can do that when we need them.
17 lines
373 B
C
17 lines
373 B
C
/*
|
|
* Copyright (C) 2021 Richard Hughes <richard@hughsie.com>
|
|
*
|
|
* SPDX-License-Identifier: LGPL-2.1+
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "fu-firmware.h"
|
|
|
|
gboolean fu_efi_firmware_parse_sections (FuFirmware *firmware,
|
|
GBytes *fw,
|
|
FwupdInstallFlags flags,
|
|
GError **error);
|
|
GBytes *fu_efi_firmware_decompress_lzma (GBytes *fw,
|
|
GError **error);
|