File: XResource.h

package info (click to toggle)
fvwm3 1.0.6a%2Bds-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 10,408 kB
  • sloc: ansic: 141,349; perl: 4,891; sh: 4,568; makefile: 785; yacc: 688; lex: 187; sed: 11
file content (18 lines) | stat: -rw-r--r-- 570 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef FVWMLIB_XRESOURCE_H
#define FVWMLIB_XRESOURCE_H
#include "fvwm_x11.h"

/*
 * Wrappers around Xrm routines (XResources.c)
 */
void MergeXResources(Display *dpy, XrmDatabase *pdb, Bool override);
void MergeCmdLineResources(
	XrmDatabase *pdb, XrmOptionDescList opts, int num_opts, char *name,
	int *pargc, char **argv, Bool fNoDefaults);
Bool MergeConfigLineResource(
	XrmDatabase *pdb, char *line, char *prefix, char *bindstr);
Bool GetResourceString(
	XrmDatabase db, const char *resource, const char *prefix,
	XrmValue *xval);

#endif /* FVWMLIB_XRESOURCE_H */