comparison src/Input/sexypsf/driver.h @ 0:13389e613d67 trunk

[svn] - initial import of audacious-plugins tree (lots to do)
author nenolod
date Mon, 18 Sep 2006 01:11:49 -0700
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:13389e613d67
1 #include "types.h"
2
3 typedef struct __PSFTAG
4 {
5 char *key;
6 char *value;
7 struct __PSFTAG *next;
8 } PSFTAG;
9
10 typedef struct {
11 u32 length;
12 u32 stop;
13 u32 fade;
14 char *title,*artist,*game,*year,*genre,*psfby,*comment,*copyright;
15 PSFTAG *tags;
16 } PSFINFO;
17
18 int sexypsf_seek(u32 t);
19 void sexypsf_stop(void);
20 void sexypsf_execute(void);
21
22 PSFINFO *sexypsf_load(char *path);
23 PSFINFO *sexypsf_getpsfinfo(char *path);
24 void sexypsf_freepsfinfo(PSFINFO *info);
25
26 void sexypsf_update(unsigned char*,long);