Make AddMouseRegion's index unsigned
[dockapps.git] / wmmp3 / mpg123ctl.h
blob5109115c8424e9c0163cf5d4ad308dc21238eed7
1 /*
2 * wmmp3
3 * Copyright (c)1999 Patrick Crosby <xb@dotfiles.com>.
4 * This software covered by the GPL. See COPYING file for details.
6 * mpg123ctl.h
8 * Header file for mpg123ctl.c
10 * $Id: mpg123ctl.h,v 1.6 1999/10/12 03:03:33 pcrosby Exp $
13 #ifndef __MPG123CTL__
15 #define __MPG123CTL__
17 #include <stdio.h>
18 #include <unistd.h>
19 #include <signal.h>
20 #include <sys/wait.h>
21 #include <string.h>
22 #include <dirent.h>
23 #include <stdlib.h>
24 #include "wmgeneral.h"
25 #include "buttons.h"
26 #include "song_hash.h"
28 int is_playing();
29 void user_play();
30 void stop();
31 void next();
32 void back();
33 void set_mpg123(char *s);
34 void set_mp3ext(char *s);
35 void set_playlistext(char *s);
36 void set_alwaysscroll(char *s);
37 void add_mp3dir(char *s);
38 void add_mp3dirname(char *s);
39 void dir_up(int button_num);
40 void dir_down(int button_num);
41 void turn_on_scroll();
42 void random_toggle(int button_num);
43 void repeat_toggle(int button_num);
45 #endif