view src/xs_stil.h @ 92:2607683bc9eb

Improvements in length- and title handling.
author Matti Hamalainen <ccr@tnsp.org>
date Tue, 18 Nov 2003 18:30:02 +0000
parents debb9584f638
children 086681f70910
line wrap: on
line source

#ifndef XS_STIL_H
#define XS_STIL_H

#ifdef __cplusplus
extern "C" {
#endif

#include "xmms-sid.h"

/*
 * Defines and typedefs
 */
typedef struct {
	
} t_xs_stil_subnode;

typedef struct _t_xs_stil_node {

	t_xs_stil_subnode	subTuneInfo[XS_STIL_MAXENTRY];
	struct _t_xs_stil_node *pPrev, *pNext;
} t_xs_stil_node;


/*
 * Functions
 */
gint	xs_stil_init(void);		/* Initialize STIL subsystem */
void	xs_stil_close(void);		/* Close/shutdown */
gint32	xs_stil_get(gchar *);		/* Get STIL information */


#ifdef __cplusplus
}
#endif
#endif /* XS_STIL_H */