Mercurial > audlegacy-plugins
view src/song_change/formatter.h @ 3095:c5fcdbfaaf1e
Actually drop this include as it would never have worked, this was shadowing a system header or not including anything at all.
author | Tony Vroon <chainsaw@gentoo.org> |
---|---|
date | Thu, 30 Apr 2009 14:16:43 +0100 |
parents | da77e1d2ca40 |
children |
line wrap: on
line source
#ifndef FORMATTER_H #define FORMATTER_H #include <glib.h> typedef struct { gchar *values[256]; } Formatter; Formatter *formatter_new(void); void formatter_destroy(Formatter * formatter); void formatter_associate(Formatter * formatter, const guchar id, const gchar * value); void formatter_dissociate(Formatter * formatter, const guchar id); gchar *formatter_format(Formatter * formatter, gchar * format); #endif