/* playlist_basic.h
 * - Simple unscripted playlist
 *
 * $Id: playlist_basic.h,v 1.4 2002/06/29 15:19:18 msmith Exp $
 *
 * Copyright (c) 2001 Michael Smith <msmith@labyrinth.net.au>
 *
 * This program is distributed under the terms of the GNU General
 * Public License, version 2. You may use, modify, and redistribute
 * it under the terms of this license. A copy should be included
 * with this source.
 */

#ifndef __PLAYLIST_BASIC_H__
#define __PLAYLIST_BASIC_H__

typedef struct
{
	char **pl;
	int len;
	int pos;
	char *file; /* Playlist file */
	time_t mtime;
	int random;
	int once;
    int restartafterreread;

} basic_playlist;

int playlist_basic_initialise (module_param_t *params, struct playlist_state *);
int playlist_script_initialise (module_param_t *params, struct playlist_state *);


#endif  /* __PLAYLIST_BASIC_H__ */

