mirror of
https://git.proxmox.com/git/fwupd
synced 2025-05-22 12:08:09 +00:00

Actually trying to instantiate the object leads to: Specified class size for type 'FuWacomEmrDevice' is smaller than the parent type's 'FuWacomDevice' class size. Fixes https://github.com/fwupd/fwupd/issues/1456
15 lines
389 B
C
15 lines
389 B
C
/*
|
|
* Copyright (C) 2018-2019 Richard Hughes <richard@hughsie.com>
|
|
*
|
|
* SPDX-License-Identifier: LGPL-2.1+
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "fu-wacom-device.h"
|
|
|
|
#define FU_TYPE_WACOM_EMR_DEVICE (fu_wacom_emr_device_get_type ())
|
|
G_DECLARE_FINAL_TYPE (FuWacomEmrDevice, fu_wacom_emr_device, FU, WACOM_EMR_DEVICE, FuWacomDevice)
|
|
|
|
FuWacomEmrDevice *fu_wacom_emr_device_new (FuUdevDevice *device);
|