diff options
| author | Daniel Stenberg <daniel@haxx.se> | 2002-06-07 13:09:17 +0000 |
|---|---|---|
| committer | Daniel Stenberg <daniel@haxx.se> | 2002-06-07 13:09:17 +0000 |
| commit | a1ca3b41b2f70e16e6344052e5169e480a7dfd24 (patch) | |
| tree | aead7d17f1d10f7ac7064f3ee17b21cc218e4d67 | |
| parent | 16ff7be475cc07a697419f9f370bef96329d2738 (diff) | |
| download | rockbox-a1ca3b41b2f70e16e6344052e5169e480a7dfd24.zip rockbox-a1ca3b41b2f70e16e6344052e5169e480a7dfd24.tar.gz rockbox-a1ca3b41b2f70e16e6344052e5169e480a7dfd24.tar.bz2 rockbox-a1ca3b41b2f70e16e6344052e5169e480a7dfd24.tar.xz | |
removed unused protos, added missing
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@910 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | apps/playlist.h | 24 |
1 files changed, 2 insertions, 22 deletions
diff --git a/apps/playlist.h b/apps/playlist.h index 2271403..e02c0c5 100644 --- a/apps/playlist.h +++ b/apps/playlist.h @@ -33,29 +33,9 @@ typedef struct } playlist_info_t; void play_list(char *dir, char *file); - -void read_entire_file( char *buf, const char *filename ); -void load_playlist( playlist_info_t *playlist, const char *filename ); -void extract_playlist_indices( char *buf, playlist_info_t *playlist ); -void display_current_playlist( playlist_info_t *playlist ); -void get_indices_as_string( char *string, playlist_info_t *playlist ); +char* playlist_next(int type); +void randomise_playlist( playlist_info_t *playlist, unsigned int seed ); void empty_playlist( playlist_info_t *playlist ); void add_indices_to_playlist( playlist_info_t *playlist ); -void extend_indices( playlist_info_t *playlist, int new_index ); -void randomise_playlist( playlist_info_t *playlist, unsigned int seed ); -int is_unused_random_in_list( int number, int *original_list, int count ); - -/**********/ - - - - - - -int create_playlist( void ); -/*int add_to_playlist( track_t *track );*/ -int remove_from_playlist( int index ); -int set_playlist_position( void ); -/*track_t * get_previous_entry_in_playlist( void );*/ #endif /* __PLAYLIST_H__ */ |