fwupd/libfwupdplugin/fu-chunk.h
Richard Hughes 5c9b1fcc81 Only include the start year in the copyright header
The end year is legally and functionally redundant, and more importantly causes
cherry-pick conflicts when trying to maintain old branches. Use git for history.
2021-01-07 14:48:16 +00:00

37 lines
834 B
C

/*
* Copyright (C) 2017 Richard Hughes <richard@hughsie.com>
*
* SPDX-License-Identifier: LGPL-2.1+
*/
#pragma once
#include <glib.h>
#include <gusb.h>
typedef struct {
guint32 idx;
guint32 page;
guint32 address;
const guint8 *data;
guint32 data_sz;
} FuChunk;
FuChunk *fu_chunk_new (guint32 idx,
guint32 page,
guint32 address,
const guint8 *data,
guint32 data_sz);
gchar *fu_chunk_to_string (FuChunk *item);
gchar *fu_chunk_array_to_string (GPtrArray *chunks);
GPtrArray *fu_chunk_array_new (const guint8 *data,
guint32 data_sz,
guint32 addr_start,
guint32 page_sz,
guint32 packet_sz);
GPtrArray *fu_chunk_array_new_from_bytes (GBytes *blob,
guint32 addr_start,
guint32 page_sz,
guint32 packet_sz);