/usr/include/gpaste/gpaste-util.h is in libgpaste6-dev 3.22.0-1.
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 | /*
* This file is part of GPaste.
*
* Copyright (c) 2010-2016, Marc-Antoine Perennou <Marc-Antoine@Perennou.com>
*/
#if !defined (__G_PASTE_H_INSIDE__) && !defined (G_PASTE_COMPILATION)
#error "Only <gpaste.h> can be included directly."
#endif
#ifndef __G_PASTE_UTIL_H__
#define __G_PASTE_UTIL_H__
#include <gdk-pixbuf/gdk-pixbuf.h>
#include <gtk/gtk.h>
G_BEGIN_DECLS
gboolean g_paste_util_confirm_dialog (GtkWindow *parent,
const gchar *action,
const gchar *msg);
void g_paste_util_spawn (const gchar *app);
gboolean g_paste_util_spawn_sync (const gchar *app,
GError **error);
void g_paste_util_activate_ui (const gchar *action,
GVariant *arg);
gboolean g_paste_util_activate_ui_sync (const gchar *action,
GVariant *arg,
GError **error);
gchar *g_paste_util_replace (const gchar *text,
const gchar *pattern,
const gchar *substitution);
gchar *g_paste_util_compute_checksum (GdkPixbuf *image);
gboolean g_paste_util_has_applet (void);
gboolean g_paste_util_has_unity (void);
gboolean g_paste_util_has_gnome_shell (void);
void g_paste_util_show_win (GApplication *application);
guint64 *g_paste_util_get_dbus_at_result (GVariant *variant,
guint64 *len);
guint32 *g_paste_util_get_dbus_au_result (GVariant *variant,
guint64 *len);
void g_paste_util_write_pid_file (const gchar *component);
GPid g_paste_util_read_pid_file (const gchar *component);
G_END_DECLS
#endif /*__G_PASTE_UTIL_H__*/
|