comparison src/xs_length.h @ 457:693baa150eea

Cosmetics
author Matti Hamalainen <ccr@tnsp.org>
date Wed, 24 Jan 2007 22:01:02 +0000
parents f997b79a7251
children c67a7f2fd586
comparison
equal deleted inserted replaced
456:d2ce8af54248 457:693baa150eea
6 6
7 #ifdef __cplusplus 7 #ifdef __cplusplus
8 extern "C" { 8 extern "C" {
9 #endif 9 #endif
10 10
11 /* 11 /* Types
12 * Defines and typedefs
13 */ 12 */
14 typedef struct _t_xs_sldb_node { 13 typedef struct _t_xs_sldb_node {
15 t_xs_md5hash md5Hash; /* 128-bit MD5 hash-digest */ 14 t_xs_md5hash md5Hash; /* 128-bit MD5 hash-digest */
16 gint nLengths; /* Number of lengths */ 15 gint nLengths; /* Number of lengths */
17 gint *sLengths; /* Lengths in seconds */ 16 gint *sLengths; /* Lengths in seconds */
24 **ppIndex; 23 **ppIndex;
25 gint n; 24 gint n;
26 } t_xs_sldb; 25 } t_xs_sldb;
27 26
28 27
29 /* 28 /* Functions
30 * Functions
31 */ 29 */
32 gint xs_sldb_read(t_xs_sldb *, const gchar *); 30 gint xs_sldb_read(t_xs_sldb *, const gchar *);
33 gint xs_sldb_index(t_xs_sldb *); 31 gint xs_sldb_index(t_xs_sldb *);
34 void xs_sldb_free(t_xs_sldb *); 32 void xs_sldb_free(t_xs_sldb *);
35 t_xs_sldb_node * xs_sldb_get(t_xs_sldb *, const gchar *); 33 t_xs_sldb_node * xs_sldb_get(t_xs_sldb *, const gchar *);