view src/xs_sidplay2.h @ 509:81756f412b43

Changes based on patch from Heikki 'shd' Orsila: Fix a crash on 64-bit big-endian platforms due to inproper mixing of guint and size_t types; Use bsearch() instead of my own implementation of binary search in xs_length.c and xs_stil.c; Remove useless(?) use of feof().
author Matti Hamalainen <ccr@tnsp.org>
date Sun, 28 Jan 2007 15:09:04 +0000
parents 9dafc55c4270
children fa95d942f226
line wrap: on
line source

#ifndef _XS_SIDPLAY2_H
#define _XS_SIDPLAY2_H

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

#ifdef __cplusplus
extern "C" {
#endif

gboolean	xs_sidplay2_isourfile(t_xs_file *);
void		xs_sidplay2_close(t_xs_status *);
gboolean	xs_sidplay2_init(t_xs_status *);
gboolean	xs_sidplay2_initsong(t_xs_status *);
guint		xs_sidplay2_fillbuffer(t_xs_status *, gchar *, guint);
gboolean	xs_sidplay2_load(t_xs_status *, gchar *);
void		xs_sidplay2_delete(t_xs_status *);
t_xs_tuneinfo*	xs_sidplay2_getinfo(gchar *);
gboolean	xs_sidplay2_updateinfo(t_xs_status *);

#ifdef __cplusplus
}
#endif
#endif /* _XS_SIDPLAY2_H */