blob: 6b6488d43678194a8712926d8d0fd08dc0923335 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
# Copyright(c) 1986 Association of Universities for Research in Astronomy Inc.
include "../lib/ids.h"
# IDS_CLEAR -- Clear an image frame.
procedure ids_clear (dummy)
int dummy # not used at present
include "../lib/ids.com"
begin
if (i_kt == NULL)
return
call zclear(Mems[IDS_FRAME(i_kt)], Mems[IDS_BITPL(i_kt)], i_image)
end
|