blob: ed478a2082459cc554eaa4924d6ce416c8af48fc (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
# Copyright(c) 1986 Association of Universities for Research in Astronomy Inc.
include <mach.h>
include "../lib/ids.h"
include "iis.h"
# restore device, image, graphics data
procedure zdev_restore(fd)
int fd # file descriptor to read from
begin
end
procedure zim_restore(fd, frame)
int fd
short frame[ARB] # frame numbers to restore
begin
end
procedure zgr_restore(fd, plane)
int fd
short plane[ARB]
begin
end
|