view libaudacious/formatter.h @ 1802:687b63f7b18d trunk

[svn] Just saw that it's ordered by last name. Of cours, I was to blind to see that and just added myself at the wrong place. oO
author js
date Wed, 04 Oct 2006 21:04:50 -0700
parents cb178e5ad177
children 53a3d5db6b58
line wrap: on
line source

#ifndef XMMS_FORMATTER_H
#define XMMS_FORMATTER_H

#include <glib.h>

typedef struct {
    gchar *values[256];
} Formatter;


G_BEGIN_DECLS

Formatter *xmms_formatter_new(void);
void xmms_formatter_destroy(Formatter * formatter);
void xmms_formatter_associate(Formatter * formatter, guchar id,
                              gchar * value);
void xmms_formatter_dissociate(Formatter * formatter, guchar id);
gchar *xmms_formatter_format(Formatter * formatter, gchar * format);

G_END_DECLS

#endif