mirror of
https://git.proxmox.com/git/fwupd
synced 2025-05-02 14:51:45 +00:00
26 lines
606 B
C
26 lines
606 B
C
/*
|
|
* Copyright (C) 2017 Richard Hughes <richard@hughsie.com>
|
|
*
|
|
* SPDX-License-Identifier: LGPL-2.1+
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#define FU_TYPE_UEFI_BGRT (fu_uefi_bgrt_get_type())
|
|
G_DECLARE_FINAL_TYPE(FuUefiBgrt, fu_uefi_bgrt, FU, UEFI_BGRT, GObject)
|
|
|
|
FuUefiBgrt *
|
|
fu_uefi_bgrt_new(void);
|
|
gboolean
|
|
fu_uefi_bgrt_setup(FuUefiBgrt *self, GError **error);
|
|
gboolean
|
|
fu_uefi_bgrt_get_supported(FuUefiBgrt *self);
|
|
guint32
|
|
fu_uefi_bgrt_get_xoffset(FuUefiBgrt *self);
|
|
guint32
|
|
fu_uefi_bgrt_get_yoffset(FuUefiBgrt *self);
|
|
guint32
|
|
fu_uefi_bgrt_get_width(FuUefiBgrt *self);
|
|
guint32
|
|
fu_uefi_bgrt_get_height(FuUefiBgrt *self);
|