view src/xs_length.h @ 660:b0743dc9165d

Change tabs to 4 spaces, everywhere.
author Matti Hamalainen <ccr@tnsp.org>
date Wed, 02 Apr 2008 22:10:05 +0300
parents acaba070cf49
children 4bf845090a25
line wrap: on
line source

#ifndef XS_LENGTH_H
#define XS_LENGTH_H

#include "xmms-sid.h"
#include "xs_md5.h"

#ifdef __cplusplus
extern "C" {
#endif

/* Types
 */
typedef struct _sldb_node_t {
    xs_md5hash_t    md5Hash;    /* 128-bit MD5 hash-digest */
    gint        nlengths;    /* Number of lengths */
    gint        *lengths;    /* Lengths in seconds */
    struct _sldb_node_t *prev, *next;
} sldb_node_t;


typedef struct {
    sldb_node_t    *nodes,
            **pindex;
    size_t        n;
} xs_sldb_t;


/* Functions
 */
gint        xs_sldb_read(xs_sldb_t *, const gchar *);
gint        xs_sldb_index(xs_sldb_t *);
void        xs_sldb_free(xs_sldb_t *);
sldb_node_t *    xs_sldb_get(xs_sldb_t *, const gchar *);

#ifdef __cplusplus
}
#endif
#endif /* XS_LENGTH_H */