~elementary-os/ubuntu-package-imports/desktop-file-utils-xenial

« back to all changes in this revision

Viewing changes to src/keyfileutils.h

  • Committer: RabbitBot
  • Date: 2016-01-17 16:50:38 UTC
  • Revision ID: rabbitbot@elementary.io-20160117165038-3yu4qhcpf1rjfh01
Initial import, version 0.22-1ubuntu3

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* keyfileutils.h: useful functions for GKeyFile
 
2
 * vim: set ts=2 sw=2 et: */
 
3
 
 
4
/*
 
5
 * Copyright (C) 2007 Vincent Untz <vuntz@gnome.org>
 
6
 *
 
7
 * This program is free software; you can redistribute it and/or
 
8
 * modify it under the terms of the GNU General Public License
 
9
 * as published by the Free Software Foundation; either version 2
 
10
 * of the License, or (at your option) any later version.
 
11
 *
 
12
 * This program is distributed in the hope that it will be useful,
 
13
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
14
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
15
 * GNU General Public License for more details.
 
16
 *
 
17
 * You should have received a copy of the GNU General Public License
 
18
 * along with this program; if not, write to the Free Software
 
19
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301,
 
20
 * USA.
 
21
 */
 
22
 
 
23
#include <glib.h>
 
24
 
 
25
#define GROUP_DESKTOP_ENTRY "Desktop Entry"
 
26
 
 
27
gboolean dfu_key_file_rename_group (GKeyFile   *keyfile,
 
28
                                    const char *oldgroup,
 
29
                                    const char *newgroup);
 
30
 
 
31
void     dfu_key_file_drop_locale_strings (GKeyFile   *keyfile,
 
32
                                           const char *group,
 
33
                                           const char *key);
 
34
 
 
35
gboolean dfu_key_file_copy_key     (GKeyFile   *keyfile,
 
36
                                    const char *fromgroup,
 
37
                                    const char *fromkey,
 
38
                                    const char *togroup,
 
39
                                    const char *tokey);
 
40
 
 
41
void     dfu_key_file_merge_list   (GKeyFile   *keyfile,
 
42
                                    const char *group,
 
43
                                    const char *key,
 
44
                                    const char *to_merge);
 
45
 
 
46
void     dfu_key_file_remove_list  (GKeyFile   *keyfile,
 
47
                                    const char *group,
 
48
                                    const char *key,
 
49
                                    const char *to_remove);
 
50
 
 
51
gboolean dfu_key_file_to_path      (GKeyFile     *keyfile,
 
52
                                    const char   *path,
 
53
                                    GError      **error);