comparison src/xs_length.h @ 334:19c89f9ca2cc

Misc commit.
author Matti Hamalainen <ccr@tnsp.org>
date Thu, 22 Sep 2005 02:19:02 +0000
parents 608f31f6c095
children b09d74eb71e6
comparison
equal deleted inserted replaced
333:15c5b231efc9 334:19c89f9ca2cc
12 * Defines and typedefs 12 * Defines and typedefs
13 */ 13 */
14 typedef struct _t_xs_sldb_node { 14 typedef struct _t_xs_sldb_node {
15 t_xs_md5hash md5Hash; /* 128-bit MD5 hash-digest */ 15 t_xs_md5hash md5Hash; /* 128-bit MD5 hash-digest */
16 gint nLengths; /* Number of lengths */ 16 gint nLengths; /* Number of lengths */
17 gint32 sLengths[XS_STIL_MAXENTRY]; 17 gint32 sLengths[XS_STIL_MAXENTRY+1];
18 /* Lengths in seconds */ 18 /* Lengths in seconds */
19 19
20 struct _t_xs_sldb_node *pPrev, *pNext; 20 struct _t_xs_sldb_node *pPrev, *pNext;
21 } t_xs_sldb_node; 21 } t_xs_sldb_node;
22 22