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

include	<gio.h>

# GGETI -- Get the integer value of an device parameter from the graphcap
# entry for the device.  Zero is returned if the device does not have the
# named parameter.

int procedure ggeti (gp, cap)

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

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