/
githubmirror
/
fwupd
Обзор
Документация
Войти
/
githubmirror
/
fwupd
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
libfwupdplugin/fu-kernel.h
34 строки
945 B
Richard Hughes
trivial: Ensure all internal symbols are exported in C ABI
07 авг 2026, 14:27
07 авг 2026, 14:27
78975ad
Код
Авторство
О чём код?
/* * Copyright 2017 Richard Hughes <richard@hughsie.com> * * SPDX-License-Identifier: LGPL-2.1-or-later */ #pragma once #include "fu-path-store.h" G_BEGIN_DECLS gboolean fu_kernel_locked_down(FuPathStore *pstore); gboolean fu_kernel_check_version(const gchar *minimum_kernel, GError **error) G_GNUC_NON_NULL(1); GHashTable * fu_kernel_get_config(FuPathStore *pstore, GError **error); GHashTable * fu_kernel_parse_config(const gchar *buf, gsize bufsz, GError **error); GHashTable * fu_kernel_get_cmdline(GError **error); GHashTable * fu_kernel_parse_cmdline(const gchar *buf, gsize bufsz) G_GNUC_NON_NULL(1); gboolean fu_kernel_check_cmdline_mutable(FuPathStore *pstore, GError **error); gboolean fu_kernel_add_cmdline_arg(FuPathStore *pstore, const gchar *arg, GError **error) G_GNUC_NON_NULL(1, 2); gboolean fu_kernel_remove_cmdline_arg(FuPathStore *pstore, const gchar *arg, GError **error) G_GNUC_NON_NULL(1, 2); G_END_DECLS