mirror of
https://git.proxmox.com/git/fwupd
synced 2025-07-10 09:48:38 +00:00
26 lines
577 B
C
26 lines
577 B
C
/*
|
|
* Copyright (C) 2018 Richard Hughes <richard@hughsie.com>
|
|
*
|
|
* SPDX-License-Identifier: LGPL-2.1+
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <fwupdplugin.h>
|
|
|
|
#define FU_TYPE_WAC_DEVICE (fu_wac_device_get_type())
|
|
G_DECLARE_FINAL_TYPE(FuWacDevice, fu_wac_device, FU, WAC_DEVICE, FuHidDevice)
|
|
|
|
gboolean
|
|
fu_wac_device_get_feature_report(FuWacDevice *self,
|
|
guint8 *buf,
|
|
gsize bufsz,
|
|
FuHidDeviceFlags flags,
|
|
GError **error);
|
|
gboolean
|
|
fu_wac_device_set_feature_report(FuWacDevice *self,
|
|
guint8 *buf,
|
|
gsize bufsz,
|
|
FuHidDeviceFlags flags,
|
|
GError **error);
|