mirror of
https://git.proxmox.com/git/fwupd
synced 2025-04-29 16:29:54 +00:00
32 lines
901 B
C
32 lines
901 B
C
/*
|
|
* Copyright (C) 2017 Richard Hughes <richard@hughsie.com>
|
|
*
|
|
* SPDX-License-Identifier: LGPL-2.1+
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <fwupd.h>
|
|
#include <gio/gio.h>
|
|
|
|
gint
|
|
fu_version_compare(const gchar *version_a, const gchar *version_b, FwupdVersionFormat fmt);
|
|
gchar *
|
|
fu_version_from_uint64(guint64 val, FwupdVersionFormat kind);
|
|
gchar *
|
|
fu_version_from_uint32(guint32 val, FwupdVersionFormat kind);
|
|
gchar *
|
|
fu_version_from_uint24(guint32 val, FwupdVersionFormat kind);
|
|
gchar *
|
|
fu_version_from_uint16(guint16 val, FwupdVersionFormat kind);
|
|
gchar *
|
|
fu_version_parse_from_format(const gchar *version, FwupdVersionFormat fmt);
|
|
gchar *
|
|
fu_version_ensure_semver(const gchar *version, FwupdVersionFormat fmt);
|
|
FwupdVersionFormat
|
|
fu_version_guess_format(const gchar *version);
|
|
gboolean
|
|
fu_version_verify_format(const gchar *version,
|
|
FwupdVersionFormat fmt,
|
|
GError **error) G_GNUC_WARN_UNUSED_RESULT;
|