Mercurial > audlegacy-plugins
view src/sexypsf/driver.h @ 3085:ac0af6b39272
Introduce new GIO plugin to buildsystem. stdio is now deprecated.
Thoughts:
- getc()/ungetc() should be moved to VFS core now
author | William Pitcock <nenolod@atheme.org> |
---|---|
date | Wed, 29 Apr 2009 20:58:36 -0500 |
parents | 3da1b8942b8b |
children |
line wrap: on
line source
#include "types.h" typedef struct __PSFTAG { char *key; char *value; struct __PSFTAG *next; } PSFTAG; typedef struct { u32 length; u32 stop; u32 fade; char *title,*artist,*game,*year,*genre,*psfby,*comment,*copyright; PSFTAG *tags; } PSFINFO; int sexypsf_seek(u32 t); void sexypsf_stop(void); void sexypsf_execute(void); PSFINFO *sexypsf_load(char *path); PSFINFO *sexypsf_getpsfinfo(char *path); void sexypsf_freepsfinfo(PSFINFO *info); void sexypsf_update(unsigned char*,long);