aboutsummaryrefslogtreecommitdiff
path: root/sys/gio/ggetb.x
blob: 790da996c84fc71e48c86432fd15c2f794184384 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# Copyright(c) 1986 Association of Universities for Research in Astronomy Inc.

include	<gio.h>

# GGETB -- Get a boolean device parameter from the graphcap entry for the
# device.  A boolean graphcap query tests if the named parameter exists.
# Boolean queries are permitted for any capability, regardless of its actual
# datatype.

bool procedure ggetb (gp, cap)

pointer	gp			# graphics descriptor
char	cap[ARB]		# name of device capability
bool	ttygetb()

begin
	return (ttygetb (GP_TTY(gp), cap))
end