fwupd/libfwupdplugin/fu-security-attrs.h
Mario Limonciello 75835b4a0b Use FWUPD_COMPILATION define to indicate an in tree build
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>
2021-01-22 14:01:25 -06:00

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);