~ubuntu-branches/ubuntu/quantal/gconf/quantal

« back to all changes in this revision

Viewing changes to backends/xml-entry.h

  • Committer: Bazaar Package Importer
  • Author(s): Josselin Mouette
  • Date: 2007-11-01 18:47:26 UTC
  • mto: (7.1.1 lenny) (1.2.1) (76.1.1 oneiric-proposed)
  • mto: This revision was merged to the branch mainline in revision 7.
  • Revision ID: james.westby@ubuntu.com-20071101184726-e3e4cxfcp41tz6ui
Tags: upstream-2.20.1
ImportĀ upstreamĀ versionĀ 2.20.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
#define GCONF_XML_ENTRY_H
22
22
 
23
23
#include <gconf/gconf.h>
24
 
#include <gnome-xml/tree.h>
 
24
#include <libxml/tree.h>
25
25
 
26
26
/* Entry stores all the information about a given key */
27
27
 
42
42
                                      const gchar **locales,
43
43
                                      GError  **err);
44
44
void           entry_set_value       (Entry        *entry,
45
 
                                      GConfValue   *value);
 
45
                                      const GConfValue *value);
46
46
gboolean       entry_unset_value     (Entry        *entry,
47
47
                                      const gchar  *locale);
48
48
GConfMetaInfo* entry_get_metainfo    (Entry        *entry);
62
62
char* my_xmlGetProp(xmlNodePtr node,
63
63
                    const gchar* name);
64
64
 
 
65
void xml_test_entry (void);
 
66
 
65
67
#endif