mirror of
https://git.proxmox.com/git/fwupd
synced 2025-05-04 15:51:39 +00:00

When this is done, include: * Including the hash * Including anything that is not ABI stable in plugins yet Suggested-by: Simon McVittie <smcv@debian.org>
19 lines
495 B
C
19 lines
495 B
C
/*
|
|
* Copyright (C) 2020 Richard Hughes <richard@hughsie.com>
|
|
*
|
|
* SPDX-License-Identifier: LGPL-2.1+
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <glib-object.h>
|
|
#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);
|