2 * Copyright © 2010 Codethink Limited
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
17 * Author: Ryan Lortie <desrt@desrt.ca>
20 #ifndef __gvdb_format_h__
21 #define __gvdb_format_h__
25 typedef struct { guint16 value
; } guint16_le
;
26 typedef struct { guint32 value
; } guint32_le
;
33 struct gvdb_hash_header
{
34 guint32_le n_bloom_words
;
38 struct gvdb_hash_item
{
39 guint32_le hash_value
;
49 struct gvdb_pointer pointer
;
59 struct gvdb_pointer root
;
62 static inline guint32_le
guint32_to_le (guint32 value
) {
63 guint32_le result
= { GUINT32_TO_LE (value
) };
67 static inline guint32
guint32_from_le (guint32_le value
) {
68 return GUINT32_FROM_LE (value
.value
);
71 static inline guint16_le
guint16_to_le (guint16 value
) {
72 guint16_le result
= { GUINT16_TO_LE (value
) };
76 static inline guint16
guint16_from_le (guint16_le value
) {
77 return GUINT16_FROM_LE (value
.value
);
80 #define GVDB_SIGNATURE0 1918981703
81 #define GVDB_SIGNATURE1 1953390953
82 #define GVDB_SWAPPED_SIGNATURE0 GUINT32_SWAP_LE_BE (GVDB_SIGNATURE0)
83 #define GVDB_SWAPPED_SIGNATURE1 GUINT32_SWAP_LE_BE (GVDB_SIGNATURE1)
85 #endif /* __gvdb_format_h__ */