mirror of
				https://git.proxmox.com/git/fwupd
				synced 2025-11-04 08:59:20 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			24 lines
		
	
	
		
			663 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			663 B
		
	
	
	
		
			C
		
	
	
	
	
	
/*
 | 
						|
 * Copyright (C) 2017 Richard Hughes <richard@hughsie.com>
 | 
						|
 *
 | 
						|
 * SPDX-License-Identifier: LGPL-2.1+
 | 
						|
 */
 | 
						|
 | 
						|
#pragma once
 | 
						|
 | 
						|
G_BEGIN_DECLS
 | 
						|
 | 
						|
#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);
 | 
						|
 | 
						|
G_END_DECLS
 |