Mercurial > audlegacy-plugins
view src/flacng/plugin.h @ 1563:828f45d8e8f8
Move NLS support macros to xs_support.h
author | Matti Hamalainen <ccr@tnsp.org> |
---|---|
date | Mon, 03 Sep 2007 01:23:36 +0300 |
parents | 654aa79e43ef |
children | 5395c85a8724 |
line wrap: on
line source
#ifndef _PLUGIN_H #define _PLUGIN_H void flac_init(void); void flac_aboutbox(void); gboolean flac_is_our_file(gchar* filename); gboolean flac_is_our_fd(gchar* filename, VFSFile* fd); void flac_play_file (InputPlayback* input); void flac_stop(InputPlayback* input); void flac_pause(InputPlayback* input, gshort p); void flac_seek(InputPlayback* input, gint time); void flac_get_song_info(gchar* filename, gchar** title, gint* length); Tuple *flac_get_song_tuple(gchar* filename); #endif