appearantly this is working

This commit is contained in:
Nishi 2025-11-24 16:21:56 +09:00
commit e417ff18a0
Signed by: nishi
GPG key ID: 27EF69B208EB9343
5 changed files with 234 additions and 38 deletions

View file

@ -70,8 +70,13 @@ void ui_set_genres(int v);
/* audio.c */
extern pthread_mutex_t audio_mutex;
extern queue_t* queue;
extern int queue_seek;
extern int paused;
void audio_init(void);
void audio_queue(const char* path);
/* id3.c */
unsigned char* id3_findimage(const char* path, size_t* size);
#endif