fwupd/libfwupdplugin/fu-bluez-device.h
2021-08-24 11:18:40 -05:00

29 lines
868 B
C

/*
* Copyright (C) 2021 Ricardo Cañuelo <ricardo.canuelo@collabora.com>
*
* SPDX-License-Identifier: LGPL-2.1+
*/
#pragma once
#include "fu-device.h"
#define FU_TYPE_BLUEZ_DEVICE (fu_bluez_device_get_type())
G_DECLARE_DERIVABLE_TYPE(FuBluezDevice, fu_bluez_device, FU, BLUEZ_DEVICE, FuDevice)
struct _FuBluezDeviceClass {
FuDeviceClass parent_class;
gpointer __reserved[31];
};
GByteArray *
fu_bluez_device_read(FuBluezDevice *self, const gchar *uuid, GError **error);
gchar *
fu_bluez_device_read_string(FuBluezDevice *self, const gchar *uuid, GError **error);
gboolean
fu_bluez_device_write(FuBluezDevice *self, const gchar *uuid, GByteArray *buf, GError **error);
gboolean
fu_bluez_device_notify_start(FuBluezDevice *self, const gchar *uuid, GError **error);
gboolean
fu_bluez_device_notify_stop(FuBluezDevice *self, const gchar *uuid, GError **error);