[go: up one dir, main page]

File: opts.h

package info (click to toggle)
fookb 3.0-3.1
  • links: PTS
  • area: main
  • in suites: stretch
  • size: 372 kB
  • ctags: 46
  • sloc: ansic: 597; makefile: 88; sh: 44
file content (32 lines) | stat: -rw-r--r-- 659 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
/*
 * File: opts.h
 *
 * (c) 1998-2002 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(void);		/* Parse
				   app-defaults
				   and X
				   resources
				   database */

#endif				/* OPTS_H */