c3e92fef4c
From https://web.archive.org/web/20140622071149/http://only.mawhrin.net/~alexey/fookb/fookb-3.1.tar.gz
33 lines
667 B
C
33 lines
667 B
C
/*
|
|
* File: opts.h
|
|
*
|
|
* (c) 1998-2004 Alexey Vyskubov <alexey@mawhrin.net>
|
|
*
|
|
*/
|
|
|
|
#ifndef OPTS_H
|
|
#define OPTS_H
|
|
|
|
/* X Window resource management */
|
|
#include <X11/Xlib.h>
|
|
#include <X11/Xresource.h>
|
|
extern XrmDatabase cmdlineDB; /* Database for resources from command
|
|
line */
|
|
|
|
extern XrmDatabase finalDB; /* Database for resources from other
|
|
sources -- app-defaults and X
|
|
Window resources */
|
|
|
|
void ParseOptions(int *argc, register char *argv[]); /* Parse
|
|
command
|
|
line
|
|
options */
|
|
|
|
void MoreOptions(Display *dpy); /* Parse
|
|
app-defaults
|
|
and X
|
|
resources
|
|
database */
|
|
|
|
#endif /* OPTS_H */
|