mirror of
https://git.proxmox.com/git/fwupd
synced 2025-08-17 14:32:02 +00:00
18 lines
440 B
C
18 lines
440 B
C
/*
|
|
* Copyright (C) 2022 Shihwei Huang <shihwei.huang@focaltech-electronics.com>
|
|
*
|
|
* SPDX-License-Identifier: LGPL-2.1+
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <fwupdplugin.h>
|
|
|
|
#define FU_TYPE_FOCALFP_FIRMWARE (fu_focalfp_firmware_get_type())
|
|
G_DECLARE_FINAL_TYPE(FuFocalfpFirmware, fu_focalfp_firmware, FU, FOCALFP_FIRMWARE, FuFirmware)
|
|
|
|
FuFirmware *
|
|
fu_focalfp_firmware_new(void);
|
|
guint32
|
|
fu_focalfp_firmware_get_checksum(FuFocalfpFirmware *self);
|