~ubuntu-branches/ubuntu/oneiric/gconf/oneiric-proposed

« back to all changes in this revision

Viewing changes to backends/val-encode.h

  • Committer: Bazaar Package Importer
  • Author(s): Takuo KITAME
  • Date: 2002-03-17 01:51:39 UTC
  • Revision ID: james.westby@ubuntu.com-20020317015139-z4f8fdg1hoe049g0
Tags: upstream-1.0.9
ImportĀ upstreamĀ versionĀ 1.0.9

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* 
 
2
 * GConf BerkeleyDB back-end
 
3
 *
 
4
 * Copyright (C) 2000 Sun Microsystems Inc
 
5
 * Contributed to the GConf project.
 
6
 *
 
7
 * This library is free software; you can redistribute it and/or
 
8
 * modify it under the terms of the GNU Library General Public
 
9
 * License as published by the Free Software Foundation; either
 
10
 * version 2 of the License, or (at your option) any later version.
 
11
 *
 
12
 * This library 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 GNU
 
15
 * Library General Public License for more details.
 
16
 *
 
17
 * You should have received a copy of the GNU Library General Public
 
18
 * License along with this library; if not, write to the
 
19
 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
 
20
 * Boston, MA 02111-1307, USA.
 
21
 */
 
22
 
 
23
#ifndef GCONF_VAL_ENCODE_H
 
24
 
 
25
/* Functions to size, serialize and de-serialize a GConfValue, which
 
26
 * is stored in the database as an encoded string.
 
27
 */
 
28
 
 
29
/* All values are stored in the database as strings; bdb_serialize_value()
 
30
 * encodes a GConfValue as a string, bdb_restore_value() decodes a
 
31
 * serialized string back to a value
 
32
 */
 
33
extern char *bdb_serialize_value (GConfValue * val, size_t * lenp);
 
34
 
 
35
extern GConfValue *bdb_restore_value (const char *srz);
 
36
 
 
37
extern void _gconf_check_free (char *buf);
 
38
 
 
39
#endif /* GCONF_VAL_ENCODE_H */