Mercurial > audlegacy-plugins
view src/song_change/formatter.h @ 3198:83b1a4e5f453
alsa-ng: Keep mixer open even when playback stopped.
author | John Lindgren <john.lindgren@tds.net> |
---|---|
date | Wed, 22 Jul 2009 16:42:16 -0400 |
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