Files
gec-6818-minidesktop/album/album.h
2026-06-16 08:44:45 +08:00

14 lines
234 B
C

#ifndef ALBUM_H
#define ALBUM_H
#define ALBUM_MAX 10
void album_init(const char *paths[], int count);
void album_show(int idx);
void album_prev(void);
void album_next(void);
int album_current(void);
int album_count(void);
#endif