mirror of
https://git.proxmox.com/git/fwupd
synced 2025-05-29 20:28:11 +00:00
70 lines
2.3 KiB
C
70 lines
2.3 KiB
C
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*-
|
|
*
|
|
* Copyright (C) 2015-2018 Richard Hughes <richard@hughsie.com>
|
|
*
|
|
* Licensed under the GNU General Public License Version 2
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
*/
|
|
|
|
#ifndef __FU_HISTORY_H
|
|
#define __FU_HISTORY_H
|
|
|
|
#include <glib-object.h>
|
|
|
|
#include "fu-device.h"
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
#define FU_TYPE_PENDING (fu_history_get_type ())
|
|
G_DECLARE_FINAL_TYPE (FuHistory, fu_history, FU, HISTORY, GObject)
|
|
|
|
FuHistory *fu_history_new (void);
|
|
|
|
gboolean fu_history_add_device (FuHistory *self,
|
|
FuDevice *device,
|
|
FwupdRelease *release,
|
|
GError **error);
|
|
gboolean fu_history_set_device_state (FuHistory *self,
|
|
const gchar *device_id,
|
|
FwupdUpdateState update_state,
|
|
GError **error);
|
|
gboolean fu_history_set_device_flags (FuHistory *self,
|
|
const gchar *device_id,
|
|
FwupdDeviceFlags device_flags,
|
|
GError **error);
|
|
gboolean fu_history_set_device_error (FuHistory *self,
|
|
const gchar *device_id,
|
|
const gchar *error_msg,
|
|
GError **error);
|
|
gboolean fu_history_remove_device (FuHistory *self,
|
|
const gchar *device_id,
|
|
GError **error);
|
|
gboolean fu_history_remove_all (FuHistory *self,
|
|
GError **error);
|
|
gboolean fu_history_remove_all_with_state (FuHistory *self,
|
|
FwupdUpdateState update_state,
|
|
GError **error);
|
|
FuDevice *fu_history_get_device_by_id (FuHistory *self,
|
|
const gchar *device_id,
|
|
GError **error);
|
|
GPtrArray *fu_history_get_devices (FuHistory *self,
|
|
GError **error);
|
|
|
|
G_END_DECLS
|
|
|
|
#endif /* __FU_HISTORY_H */
|
|
|