mirror of
				https://git.proxmox.com/git/fwupd
				synced 2025-11-04 15:10:22 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			21 lines
		
	
	
		
			480 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			480 B
		
	
	
	
		
			C
		
	
	
	
	
	
/*
 | 
						|
 * Copyright (C) 2015-2016 Richard Hughes <richard@hughsie.com>
 | 
						|
 *
 | 
						|
 * SPDX-License-Identifier: LGPL-2.1+
 | 
						|
 */
 | 
						|
 | 
						|
#pragma once
 | 
						|
 | 
						|
#include <glib-object.h>
 | 
						|
#include <gio/gio.h>
 | 
						|
 | 
						|
#include "dfu-firmware.h"
 | 
						|
 | 
						|
DfuFirmwareFormat	 dfu_firmware_detect_dfu	(GBytes		*bytes);
 | 
						|
GBytes			*dfu_firmware_to_dfu		(DfuFirmware	*firmware,
 | 
						|
							GError		**error);
 | 
						|
gboolean		 dfu_firmware_from_dfu		(DfuFirmware	*firmware,
 | 
						|
							GBytes		*bytes,
 | 
						|
							FwupdInstallFlags flags,
 | 
						|
							GError		**error);
 |