Mercurial > audlegacy-plugins
view src/psf2/corlett.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 | 62cc6d667119 |
children |
line wrap: on
line source
// // Audio Overload // Emulated music player // // (C) 2000-2008 Richard F. Bannister // // corlett.h #define MAX_UNKNOWN_TAGS 32 typedef struct { char lib[256]; char libaux[8][256]; char inf_title[256]; char inf_copy[256]; char inf_artist[256]; char inf_game[256]; char inf_year[256]; char inf_length[256]; char inf_fade[256]; char inf_refresh[256]; char tag_name[MAX_UNKNOWN_TAGS][256]; char tag_data[MAX_UNKNOWN_TAGS][256]; uint32 *res_section; uint32 res_size; } corlett_t; int corlett_decode(uint8 *input, uint32 input_len, uint8 **output, uint64 *size, corlett_t **c); uint32 psfTimeToMS(char *str);