mirror of
https://git.proxmox.com/git/fwupd
synced 2025-05-21 09:27:55 +00:00

Find the interface and endpoint used for firmware updates. Note: this change now requires libgusb 0.3.3 or later.
18 lines
385 B
C
18 lines
385 B
C
/*
|
|
* Copyright (C) 2020 Benson Leung <bleung@chromium.org>
|
|
*
|
|
* SPDX-License-Identifier: LGPL-2.1+
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "fu-plugin.h"
|
|
|
|
#define FU_TYPE_CROS_EC_USB_DEVICE (fu_cros_ec_usb_device_get_type ())
|
|
G_DECLARE_FINAL_TYPE (FuCrosEcUsbDevice, fu_cros_ec_usb_device, FU, CROS_EC_USB_DEVICE, FuUsbDevice)
|
|
|
|
struct _FuCrosEcUsbDeviceClass
|
|
{
|
|
FuUsbDeviceClass parent_class;
|
|
};
|