mirror of
https://git.proxmox.com/git/fwupd
synced 2025-04-29 03:05:06 +00:00
21 lines
561 B
C
21 lines
561 B
C
/*
|
|
* Copyright (C) 2020 Richard Hughes <richard@hughsie.com>
|
|
*
|
|
* SPDX-License-Identifier: LGPL-2.1+
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <libfwupd/fwupd-security-attr.h>
|
|
|
|
#define FU_TYPE_SECURITY_ATTRS (fu_security_attrs_get_type())
|
|
|
|
G_DECLARE_FINAL_TYPE(FuSecurityAttrs, fu_security_attrs, FU, SECURITY_ATTRS, GObject)
|
|
|
|
void
|
|
fu_security_attrs_append(FuSecurityAttrs *self, FwupdSecurityAttr *attr);
|
|
void
|
|
fu_security_attrs_remove_all(FuSecurityAttrs *self);
|
|
FwupdSecurityAttr *
|
|
fu_security_attrs_get_by_appstream_id(FuSecurityAttrs *self, const gchar *appstream_id);
|