mirror of
https://git.proxmox.com/git/fwupd
synced 2025-05-15 14:14:13 +00:00

If we need to export the EFI symbols into libfwupdplugin for other plugins we can do that when we need them.
26 lines
600 B
C
26 lines
600 B
C
/*
|
|
* Copyright (C) 2021 Richard Hughes <richard@hughsie.com>
|
|
*
|
|
* SPDX-License-Identifier: LGPL-2.1+
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "fu-firmware.h"
|
|
#include "fu-ifd-common.h"
|
|
|
|
#define FU_TYPE_IFD_IMAGE (fu_ifd_image_get_type ())
|
|
G_DECLARE_DERIVABLE_TYPE (FuIfdImage, fu_ifd_image, FU, IFD_IMAGE, FuFirmware)
|
|
|
|
struct _FuIfdImageClass
|
|
{
|
|
FuFirmwareClass parent_class;
|
|
};
|
|
|
|
FuFirmware *fu_ifd_image_new (void);
|
|
void fu_ifd_image_set_access (FuIfdImage *self,
|
|
FuIfdRegion region,
|
|
FuIfdAccess access);
|
|
FuIfdAccess fu_ifd_image_get_access (FuIfdImage *self,
|
|
FuIfdRegion region);
|