view src/vtx/vtx.h @ 1086:cd854e8ced20 trunk

[svn] - vtx: convert to plugin API v2
author nenolod
date Thu, 24 May 2007 23:09:03 -0700
parents 26ff35aa9b2b
children 48e73f07ec9b
line wrap: on
line source

#ifndef VTX_H
#define VTX_H

#ifdef HAVE_CONFIG_H
#include <config.h>
#endif

#include <pthread.h>

#include <stdlib.h>
#include <string.h>
#include <stdio.h>

#include "audacious/plugin.h"

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