wmshutdown: Destroy dialog window before shutting down. This is especially useful...
[dockapps.git] / wmmp3 / main.h
blob9908c04a44aa7e0a4b31d4e53340387fafa2913c
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
8 * Header file for main.c
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