Mercurial > audlegacy-plugins
comparison src/sexypsf/driver.h @ 12:3da1b8942b8b trunk
[svn] - remove src/Input src/Output src/Effect src/General src/Visualization src/Container
author | nenolod |
---|---|
date | Mon, 18 Sep 2006 03:14:20 -0700 |
parents | src/Input/sexypsf/driver.h@13389e613d67 |
children |
comparison
equal
deleted
inserted
replaced
11:cff1d04026ae | 12:3da1b8942b8b |
---|---|
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); |