fwupd/plugins/flashrom/fu-flashrom-internal-device.h
Daniel Campello f37dcd4fab flashrom: make fu-flashrom-device a derivable type
This change allows other device types to derive from common flashrom
code in the flashrom-device type.

Change-Id: Ic963fd586e0a73153c54889fce50055753a1bf5c
2021-04-08 15:40:41 +01:00

16 lines
427 B
C

/*
* Copyright (C) 2021 Daniel Campello <campello@chromium.org>
*
* SPDX-License-Identifier: LGPL-2.1+
*/
#pragma once
#include "fu-flashrom-device.h"
#define FU_TYPE_FLASHROM_INTERNAL_DEVICE (fu_flashrom_internal_device_get_type ())
G_DECLARE_FINAL_TYPE (FuFlashromInternalDevice, fu_flashrom_internal_device, FU,
FLASHROM_INTERNAL_DEVICE, FuFlashromDevice)
FuDevice *fu_flashrom_internal_device_new (void);