mirror of
https://git.proxmox.com/git/fwupd
synced 2025-05-14 11:01:35 +00:00
21 lines
474 B
C
21 lines
474 B
C
/*
|
|
* Copyright (C) 2019 Richard Hughes <richard@hughsie.com>
|
|
*
|
|
* SPDX-License-Identifier: LGPL-2.1+
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "fu-firmware.h"
|
|
|
|
#define FU_TYPE_IHEX_FIRMWARE (fu_ihex_firmware_get_type ())
|
|
G_DECLARE_FINAL_TYPE (FuIhexFirmware, fu_ihex_firmware, FU, IHEX_FIRMWARE, FuFirmware)
|
|
|
|
typedef struct {
|
|
guint ln;
|
|
GString *buf;
|
|
} FuIhexFirmwareRecord;
|
|
|
|
FuFirmware *fu_ihex_firmware_new (void);
|
|
GPtrArray *fu_ihex_firmware_get_records (FuIhexFirmware *self);
|