/
githubmirror
/
fwupd
Обзор
Документация
Войти
/
githubmirror
/
fwupd
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
libfwupdplugin/fu-processor-device.h
30 строк
879 B
Richard Hughes
trivial: Ensure all internal symbols are exported in C ABI
07 авг 2026, 14:27
07 авг 2026, 14:27
78975ad
Код
Авторство
О чём код?
/* * Copyright 2020 Mario Limonciello <mario.limonciello@dell.com> * * SPDX-License-Identifier: LGPL-2.1-or-later */ #pragma once #include "fu-device.h" #include "fu-processor-struct.h" G_BEGIN_DECLS #define FU_TYPE_PROCESSOR_DEVICE (fu_processor_device_get_type()) G_DECLARE_FINAL_TYPE(FuProcessorDevice, fu_processor_device, FU, PROCESSOR_DEVICE, FuDevice) FuProcessorDevice * fu_processor_device_new(FuContext *ctx); FuProcessorKind fu_processor_device_get_kind(FuProcessorDevice *self) G_GNUC_NON_NULL(1); gboolean fu_processor_device_needs_mitigation(FuProcessorDevice *self, FuProcessorMitigationFlags mitigation_flag) G_GNUC_NON_NULL(1); guint32 fu_processor_device_get_sinkclose_microcode_ver(FuProcessorDevice *self) G_GNUC_NON_NULL(1); const gchar * fu_processor_device_get_entrysign_psp_ver(FuProcessorDevice *self) G_GNUC_NON_NULL(1); G_END_DECLS