25 lines
432 B
C
25 lines
432 B
C
/*
|
|
* params.h
|
|
*
|
|
* (c) 1998-2004 Alexey Vyskubov <alexey@mawhrin.net>
|
|
*
|
|
*/
|
|
|
|
#ifndef PARAMS_H
|
|
#define PARAMS_H
|
|
|
|
#include <WINGs/WUtil.h>
|
|
|
|
#ifdef WMAKER
|
|
#define DEFAULTS_FILE "~/GNUstep/Defaults/FOOkb"
|
|
#else
|
|
#define DEFAULTS_FILE "~/.fookb"
|
|
#endif /* WMAKER */
|
|
|
|
#include <X11/Xlib.h> /* X Window standard header */
|
|
#include <X11/Xresource.h> /* X resource manager stuff */
|
|
|
|
char *read_param(char *);
|
|
|
|
#endif /* PARAMS_H */
|