mirror of
https://git.proxmox.com/git/fwupd
synced 2025-05-29 09:59:01 +00:00
18 lines
423 B
C
18 lines
423 B
C
/*
|
|
* Copyright (C) 2018 Richard Hughes <richard@hughsie.com>
|
|
*
|
|
* SPDX-License-Identifier: LGPL-2.1+
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <fwupdplugin.h>
|
|
|
|
#define FU_TYPE_NVME_DEVICE (fu_nvme_device_get_type ())
|
|
G_DECLARE_FINAL_TYPE (FuNvmeDevice, fu_nvme_device, FU, NVME_DEVICE, FuUdevDevice)
|
|
|
|
FuNvmeDevice *fu_nvme_device_new_from_blob (FuContext *ctx,
|
|
const guint8 *buf,
|
|
gsize sz,
|
|
GError **error);
|