wmhdplop: Change gkhdplop_so_LDFLAGS to gkhdplop_so_LDADD in Makefile
[dockapps.git] / wmmp3 / main.h
blob70404c4dc37eabb4a0be9a4d9a5f4094f2986834
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 * main.h
7 *
8 * Header file for main.c
9 *
10 * $Id: main.h,v 1.4 1999/10/08 22:21:32 pcrosby Exp $
13 #ifndef __MAIN_H__
15 #define __MAIN_H__
17 #include <stdio.h>
18 #include <stdlib.h>
19 #include <string.h>
20 #include <pwd.h>
21 #include <sys/types.h>
22 #include <errno.h>
23 #include <unistd.h>
25 #include "buttons.h"
26 #include "wmgeneral.h"
27 #include "mpg123ctl.h"
28 #include "wmmp3.xpm"
30 #define streq(s1, s2) \
31 (strcmp(s1, s2) == 0)
33 #endif