aboutsummaryrefslogtreecommitdiff
path: root/pkg/images/tv/display/zclsim.x
blob: 8f3f34b00ce578594cfa8ed098cb787fc4a5194c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# Copyright(c) 1986 Association of Universities for Research in Astronomy Inc.

include	"zdisplay.h"

# ZCLSIM -- Close an image display frame which is addressable as
# a binary file.

procedure zclsim (chan, status)

int	chan[ARB]
int	status
int	device

begin
	device = chan[1] / DEVCODE
	switch (device) {
	case IIS_CHAN:
	    call iiscls (chan, status)
	default:
	    status = ERR
	}
end