/usr/include/gnome-software/gs-utils.h is in gnome-software-dev 3.28.1-0ubuntu4.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 | /* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*-
*
* Copyright (C) 2013-2016 Richard Hughes <richard@hughsie.com>
* Copyright (C) 2018 Kalev Lember <klember@redhat.com>
*
* Licensed under the GNU General Public License Version 2
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#ifndef __GS_UTILS_H
#define __GS_UTILS_H
#include <gio/gdesktopappinfo.h>
#include <gtk/gtk.h>
#include "gs-app.h"
G_BEGIN_DECLS
/**
* GsUtilsCacheFlags:
* @GS_UTILS_CACHE_FLAG_NONE: No flags set
* @GS_UTILS_CACHE_FLAG_WRITEABLE: A writable directory is required
*
* The cache flags.
**/
typedef enum {
GS_UTILS_CACHE_FLAG_NONE = 0,
GS_UTILS_CACHE_FLAG_WRITEABLE = 1 << 0,
GS_UTILS_CACHE_FLAG_USE_HASH = 1 << 1,
GS_UTILS_CACHE_FLAG_ENSURE_EMPTY = 1 << 2,
/*< private >*/
GS_UTILS_CACHE_FLAG_LAST
} GsUtilsCacheFlags;
guint gs_utils_get_file_age (GFile *file);
gchar *gs_utils_get_content_type (GFile *file,
GCancellable *cancellable,
GError **error);
gboolean gs_utils_symlink (const gchar *target,
const gchar *linkpath,
GError **error);
gboolean gs_utils_unlink (const gchar *filename,
GError **error);
gboolean gs_mkdir_parent (const gchar *path,
GError **error);
gchar *gs_utils_get_cache_filename (const gchar *kind,
const gchar *resource,
GsUtilsCacheFlags flags,
GError **error);
gchar *gs_utils_get_user_hash (GError **error);
GPermission *gs_utils_get_permission (const gchar *id,
GCancellable *cancellable,
GError **error);
gboolean gs_utils_strv_fnmatch (gchar **strv,
const gchar *str);
GDesktopAppInfo *gs_utils_get_desktop_app_info (const gchar *id);
gboolean gs_utils_rmtree (const gchar *directory,
GError **error);
gint gs_utils_get_wilson_rating (guint64 star1,
guint64 star2,
guint64 star3,
guint64 star4,
guint64 star5);
void gs_utils_error_add_unique_id (GError **error,
GsApp *app);
void gs_utils_error_strip_unique_id (GError *error);
gboolean gs_utils_error_convert_gio (GError **perror);
gboolean gs_utils_error_convert_gresolver (GError **perror);
gboolean gs_utils_error_convert_gdbus (GError **perror);
gboolean gs_utils_error_convert_gdk_pixbuf(GError **perror);
gboolean gs_utils_error_convert_json_glib (GError **perror);
gboolean gs_utils_error_convert_appstream (GError **perror);
gboolean gs_utils_is_low_resolution (GtkWidget *toplevel);
gchar *gs_utils_get_url_scheme (const gchar *url);
gchar *gs_utils_get_url_path (const gchar *url);
gchar *gs_utils_get_url_query_param (const gchar *url,
const gchar *name);
const gchar *gs_user_agent (void);
void gs_utils_append_key_value (GString *str,
gsize align_len,
const gchar *key,
const gchar *value);
guint gs_utils_get_memory_total (void);
gboolean gs_utils_parse_evr (const gchar *evr,
gchar **out_epoch,
gchar **out_version,
gchar **out_release);
G_END_DECLS
#endif /* __GS_UTILS_H */
/* vim: set noexpandtab: */
|