blob: 0e67a1fdb11fb87d51df534b3af87894fc1fd1cc (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# Copyright(c) 1986 Association of Universities for Research in Astronomy Inc.
include <gio.h>
include <gki.h>
include "gtr.h"
# GTR_GTTY -- Get the graphcap descriptor for a stream.
pointer procedure gtr_gtty (stream)
int stream # graphics stream of interest
pointer tr
pointer gtr_init()
errchk gtr_init
begin
tr = gtr_init (stream)
return (TR_TTY(tr))
end
|