Mercurial > audlegacy-plugins
view src/vtx/vtx.h @ 3092:1e39f795348c
gio: make sure we return the number of bytes we pulled off the getc() stack.
(This makes wavpack happy, but not libid3tag.)
author | William Pitcock <nenolod@atheme.org> |
---|---|
date | Thu, 30 Apr 2009 07:02:04 -0500 |
parents | 3134a0987162 |
children |
line wrap: on
line source
#ifndef VTX_H #define VTX_H #include <config.h> #include <stdlib.h> #include <string.h> #include <stdio.h> #include <audlegacy/plugin.h> void vtx_init(void); void vtx_about(void); void vtx_config(void); void vtx_file_info(char *filename); extern int vtx_is_our_file(char *filename); extern void vtx_play_file (InputPlayback *playback); extern void vtx_stop (InputPlayback *playback); extern void vtx_seek (InputPlayback *playback, int time); extern void vtx_pause (InputPlayback *playback, short p); extern int vtx_get_time (InputPlayback *playback); extern void vtx_get_song_info (char *filename, char **title, int *length); #endif